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

{
    "meta": {
        "count": 22659,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=17",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=15"
    },
    "data": [
        {
            "id": "espoo_le:agpigw4hcm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384820,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-01T12:32:39.416950Z",
                    "last_modified_time": "2026-06-01T12:32:39.416962Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/fcac27cf-46f8-413f-9f6b-f1ddd3a75e67.jpg",
                    "name": "",
                    "cropping": "256,0,1280,1024",
                    "photographer_name": "",
                    "alt_text": "Kart Game",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384820/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-06-01T12:33:31.917647Z",
            "last_modified_time": "2026-06-01T12:33:31.917662Z",
            "date_published": null,
            "start_time": "2026-06-16T10:00:00Z",
            "end_time": "2026-06-16T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tiistaina 16.6 klo. 13:00",
                "sv": "Tisdagen den 16 juni kl.13.00",
                "en": "Tuesday the 16th of June at 13:00"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Sellon kirjaston Mario Kart Turnaus",
                "sv": "Mario Kart-turnering i Sellobiblioteket",
                "en": "Mario Kart Tournament at Sello Library"
            },
            "description": {
                "fi": "<p>Tiistaina 16. kesäkuuta Sellon kirjaston Lastenmaassa järjestetään Mario kart -turnaus kello 13:00. Rekisteröityminen turnaukseen alkaa perjantaina 12. kesäkuuta ja päättyy turnauksen alkaessa. Turnaus on suunnattau lapsille ja nuorille, mutta kaikki ovat lämpimästi tervetulleita!</p>",
                "sv": "<p>Tisdagen den 16 juni kl.13.00 ordnas en Mario Kart-turnering i Lastenmaa på Sellobiblioteket. Anmälan till turneringen öppnas fredagen den 12 juni och pågår fram till turneringens start. Turneringen riktar sig främst till barn och ungdomar, men alla är välkomna att delta!</p>",
                "en": "<p>On the 16th of June in Sello Library’s Lastenmaa there will be a Mario Kart Tournament at 13:00. Registration for the tournament will begin on Friday the 12th of June, and will be open until the start of the Tournament. The tournament is mainly aimed at children and youth, but everyone is welcome to participate!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpigw4hcm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69122",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684825/",
                        "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684825/",
                        "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684825/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384804,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T12:13:34.443904Z",
                    "last_modified_time": "2026-06-01T12:13:34.443926Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789948.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384804/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T12:13:34.335716Z",
            "last_modified_time": "2026-06-01T12:13:34.576919Z",
            "date_published": null,
            "start_time": "2026-09-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CA846CE65AEB12C4CDB580C81E7B08E0/Agit-Cirk_RapuRequiem",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CA846CE65AEB12C4CDB580C81E7B08E0/Agit-Cirk_RapuRequiem",
                "en": "http://www.kanneltalo.fi/en/events/event/CA846CE65AEB12C4CDB580C81E7B08E0/Agit-Cirk_RapuRequiem"
            },
            "name": {
                "fi": "Agit-Cirk: RapuRequiem",
                "sv": "Agit-Cirk: RapuRequiem",
                "en": "Agit-Cirk: RapuRequiem"
            },
            "description": {
                "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68512",
            "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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384803,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T12:13:30.743514Z",
                    "last_modified_time": "2026-06-01T12:13:30.743545Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790092.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384803/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T12:13:30.607157Z",
            "last_modified_time": "2026-06-01T12:13:30.936335Z",
            "date_published": null,
            "start_time": "2026-08-07T06:00:00Z",
            "end_time": "2026-08-29T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Rinta-Hoiska on työskennellyt yhteiskunnallisten aiheiden parissa lähes 20 vuoden ajan. Näyttelyssä on esillä vanhoja ja uusia valokuva- ja videoteoksia."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon",
                "en": "http://www.caisa.fi/en/events/event/8C1B1D1737BCC328A3D394F41E9C5324/Jussi_Rinta-Hoiska_Lukosta_valoon"
            },
            "name": {
                "fi": "Jussi Rinta-Hoiska: Lukosta valoon",
                "sv": "Jussi Rinta-Hoiska: Lukosta valoon",
                "en": "Jussi Rinta-Hoiska: Lukosta valoon"
            },
            "description": {
                "fi": "<p>Jussi Rinta-Hoiska on työskennellyt yhteiskunnallisten aiheiden parissa lähes 20 vuoden ajan. Näyttelyssä on esillä vanhoja ja uusia valokuva- ja videoteoksia.</p><p><i>”Ensimmäinen taidevalokuvani Lukosta valoon valmistui vuonna 2006. Tästä on kulunut lähes 20 vuotta.</p><p>Näyttelyn teokset kertovat nuoren tytön matkasta. Alussa tyttö ei tiedä, mihin suuntaan mennä. Häneltä puuttuu tietoa, ja hän tuntee olevansa ulkopuolinen. Lopulta tyttö löytää avaimen ja pääsee vapaaksi suljetusta tilasta.</p><p>Matkallaan tyttö tutkii yhteiskuntaa ja itseään. Hän kulkee pimeästä valoon, oppii ymmärtämään omaa elämäänsä ja löytää itsevarmuutta kielen kautta. Lopulta hän kasvaa vahvemmaksi ja jatkaa eteenpäin.</i></p><p>Näyttelyyn järjestetään opastus suomalaisella viittomakielellä lauantaina 22.08.2026 klo 13.00–14.00.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68512/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:0165596d-a00b-469a-8baf-1618b41fb45e",
            "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/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                }
            ],
            "created_time": "2026-06-01T11:21:48.344183Z",
            "last_modified_time": "2026-06-01T11:21:48.344226Z",
            "date_published": "2026-06-01T11:12:15Z",
            "start_time": "2026-06-14T05:00:00Z",
            "end_time": "2026-06-14T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tässä tapahtuman kuvaus yleiset-välilehdellä."
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "1.6. pistotestaaminen"
            },
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus&nbsp;</p></div>"
            },
            "location_extra_info": {
                "fi": "Annansalo"
            },
            "provider": {
                "fi": "Annantalo"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0165596d-a00b-469a-8baf-1618b41fb45e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69121",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/",
                        "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/",
                        "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684824/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384801,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T11:13:55.497408Z",
                    "last_modified_time": "2026-06-01T11:13:55.497423Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789947.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384801/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T11:13:55.395144Z",
            "last_modified_time": "2026-06-01T11:13:55.620957Z",
            "date_published": null,
            "start_time": "2026-09-09T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem",
                "en": "http://www.kanneltalo.fi/en/events/event/1FB20522A30CCAECFEE0BB9DD6AE333D/Agit-Cirk_RapuRequiem"
            },
            "name": {
                "fi": "Agit-Cirk: RapuRequiem",
                "sv": "Agit-Cirk: RapuRequiem",
                "en": "Agit-Cirk: RapuRequiem"
            },
            "description": {
                "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68497",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/",
                        "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/",
                        "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684823/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384800,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T11:13:55.023883Z",
                    "last_modified_time": "2026-06-01T11:13:55.023899Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789946.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384800/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T11:13:54.937137Z",
            "last_modified_time": "2026-06-01T11:13:55.170177Z",
            "date_published": null,
            "start_time": "2026-09-08T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem",
                "en": "http://www.kanneltalo.fi/en/events/event/5A769305EB868A0D35ABB8EDA71F5761/Agit-Cirk_RapuRequiem"
            },
            "name": {
                "fi": "Agit-Cirk: RapuRequiem",
                "sv": "Agit-Cirk: RapuRequiem",
                "en": "Agit-Cirk: RapuRequiem"
            },
            "description": {
                "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68497/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69119",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/",
                        "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/",
                        "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684822/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384799,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T11:13:54.128863Z",
                    "last_modified_time": "2026-06-01T11:13:54.128877Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789944.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384799/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T11:13:54.041790Z",
            "last_modified_time": "2026-06-01T11:13:54.268223Z",
            "date_published": null,
            "start_time": "2026-08-29T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem",
                "en": "http://www.kanneltalo.fi/en/events/event/97AF705031C9082325E6A043BA6EFBA0/Agit-Cirk_RapuRequiem"
            },
            "name": {
                "fi": "Agit-Cirk: RapuRequiem",
                "sv": "Agit-Cirk: RapuRequiem",
                "en": "Agit-Cirk: RapuRequiem"
            },
            "description": {
                "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68496",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    },
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/",
                        "sv": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/",
                        "en": "https://www.lippu.fi/event/agit-cirk-agit-cirk-rapurequiem-kanneltalo-21684821/"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384798,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T11:13:53.625111Z",
                    "last_modified_time": "2026-06-01T11:13:53.625125Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789942.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384798/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T11:13:53.498589Z",
            "last_modified_time": "2026-06-01T11:13:53.810657Z",
            "date_published": null,
            "start_time": "2026-08-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem",
                "en": "http://www.kanneltalo.fi/en/events/event/44F3939BF48017A10AE888068D8370F6/Agit-Cirk_RapuRequiem"
            },
            "name": {
                "fi": "Agit-Cirk: RapuRequiem",
                "sv": "Agit-Cirk: RapuRequiem",
                "en": "Agit-Cirk: RapuRequiem"
            },
            "description": {
                "fi": "<p>Dystooppinen matka kohti kadonnutta kulttuuria. RapuRequiem on puheteatteria ja nykysirkusta yhdistävä esitys.</p><p>Absurdissa, runollisessa ja fyysisessä teoksessa sukelletaan dystooppisen scifin avulla nykyajan ja nykyihmisen analyysiin. Mitä jos lähes kaikki tuhoutuisi ja jäljelle jäävä länsimainen kulttuurihistoria olisi yhden kännykän ja muistisairaan esitystaiteilijaryhmän varassa?</p><p>Katastrofista selviytyneet taiteilijat muistavat vain palasia romahdusta edeltäneeltä ajalta. Yksi niistä on kaikkialla vaikuttanut sosiaalinen media, toinen entistä hullumpien johtajien fanaattinen ja absurdi puhetulva ja kolmas ihmisten piittaamattomuus lisääntyvästä ekologisesta ja inhimillisestä tuhosta. Yksityisiä ja yleisiä muistoja leimaa toisaalta materiaalinen runsaus, toisaalta jäytävä yksinäisyys, kasvava epätasa-arvo, globaalin solidaarisuuden puute ja ydinasepelko.</p><p>Ryhmän suuri tehtävä on säilyttää ne rippeet, joita suomalaisen taiteen historiasta on yhä jäljellä. Päämääränä on pohjoisen huhuttu paratiisi, jossa ilma on yhä siedettävän viileää ja ravintoa riittää kaikille. Siellä suomalaisen kulttuurin voisi herättää uudelleen henkiin, vaikka kollektiivinen muistinmenetys asettaa haasteita heidän pyhälle etsinnälleen.<br> <br>Tuotanto: Agit-Cirk ja Kanneltalo<br>Esiintyjät: Jenni Lehtinen, Youssef Alkhatib, Ulla Raitio, Sasu Peistola<br>Käsikirjoitus ja Ohjaus: Jussi Moila<br>Valosuunnittelu: June Horton-White<br>Äänisuunnittelu: Petteri Rajanti<br>Pukusuunnittelu: Kaisa Kemikoski<br>Valokuvat: Johanna Julia Portraits<br>Alkuperäinen konsepti ja suunnittelu: Sasu Peistola, Jenni Lehtinen, Ulla Raitio, Jari Virman, Henry Hanikka, Juha Tuisku<br>Tukijat: Jenny ja Antti Wihurin Rahasto, Taide ja Kulttuurivirasto (Taike), Suomen Kulttuurirahasto, Cirko - Uuden Sirkuksen keskus, Sirkussali</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68496/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68267",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1682701,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-20T11:14:04.020162Z",
                    "last_modified_time": "2026-03-20T11:14:04.020177Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786122.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1682701/?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-03-20T11:14:03.875581Z",
            "last_modified_time": "2026-06-01T11:13:42.332148Z",
            "date_published": null,
            "start_time": "2026-06-06T07:00:00Z",
            "end_time": "2026-06-06T11:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!",
                "sv": "Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!",
                "en": "The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai_Rokkasoppa_Riemukas_perhemuskari_kirjaston_lukukeidas_ja_tyopajoja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF826880E5BB479091D11E88120EA497/Barnens_lordag_Rokkasoppa_glatt_familjemusiklekis_bibliotekets_lasoas_och_verkstader",
                "en": "http://www.malmitalo.fi/en/events/event/CF826880E5BB479091D11E88120EA497/Children_s_Saturday_Rokkasoppa_a_joyful_family_music_playschool_a_reading_oasis_in_the_library_and_workshops"
            },
            "name": {
                "fi": "Lasten lauantai: Rokkasoppa, Riemukas perhemuskari, kirjaston lukukeidas ja työpajoja – Malmin tapahtumakesä 2026",
                "sv": "Barnens lördag: Rokkasoppa, glatt familjemusiklekis, bibliotekets läsoas och verkstäder – Malms evenemangssommar 2026",
                "en": "Children’s Saturday: Rokkasoppa, a joyful family music playschool, a reading oasis in the library and workshops – Malmi Summer of Events 2026"
            },
            "description": {
                "fi": "<p>Ihastuttava lasten lauantai rokkaa, muskaroi ja kuljettaa kohti kivoja perhehetkiä lukukeitaan ja työpajojen myötä. Nyt koko perhe Malmille!</p><p>Malmin tapahtumakesän lasten lauantai tarjoaa koko perheelle iloa ja riemua! Päivän aikana pääsee lukemaan, musisoimaan, askartelemaan ja nauttimaan lasten omasta rokkimeiningistä.</p><p><b>Päivän ohjelma</p><p>klo 10.00–16.00 Kirjaston lukukeidas</b><br>Kirjasto pystyttää lukukeitaan Malmitalon sisäänkäynnin läheisyyteen. Ota kirja mukaan ja tule lukemaan. <br>Paikka: Malmitalon rappuset</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>klo 12.00–16.00 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille</b><br>Kesätyöntekijät toteuttavat kaikille avointa hyvän mielen toimintaa. Tule mukaan leikkimään ja viihtymään. <br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pukinmäen taidekoulu: Klovni Dattarataa</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Pohjois-Helsingin kuvataidekoulun pinssityöpaja'</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 12.00–14.00 Yksin hanke: Kollaasitaidetta ja tikkariperhosia</b><br>Paikka: Ala-Malmin tori</p><p><b>klo 13.00–13.30 Riemukas perhemuskari</b><br><i>”Pyöri kuin pyörre – veden pinnalla! Leiju kuin pilvi – taivaan kannella!”</i><br>Riemukkaassa perhemuskarissa lauletaan, leikitään ja musisoidaan yhdessä kesäisissä tunnelmissa. Muskarin ohjaa musiikin maisteri ja lastenmuusikko Henna-Maija Kuki.<br>Paikka: Konttilava, Ala-Malmin tori</p><p><b>klo 14.00–14.45 Rokkasoppa</b><br>Eskari-ikäinen Rokkasoppa on muksurockbändi, jonka laulut kertovat mauista, hajuista, tuntemuksista ja fiiliksistä rokkitvistillä, joka saa myös aikuisten peput heilumaan tahdissa. \"Ruuassa ja Rokissa parasta on se, että saa tykätä just siitä, mistä tykkää. Kaikkea pitää kuitenkin maistaa.\" <br>Paikka: Konttilava, Ala-Malmin tori</p><p>Tapahtumiin on vapaa pääsy!</p>",
                "sv": "<p>Under barnens härliga lördag får du rocka, musikleka och ta del av trevliga familjestunder med läsoas och verkstäder. Ta med hela familjen till Malm!</p><p>Barnens lördag under Malms evenemangssommar bjuder på glädje och skoj för hela familjen! Under dagen kan du läsa, musicera, pyssla och njuta av rockstämning för barn.</p><p><b>Dagens program</p><p>kl. 10.00–16.00<br>Bibliotekets läsoas</b><br>Biblioteket ordnar en läsoas nära ingången till Malms kulturhus. Ta med en bok och kom och läs.<br>Plats: Malms kulturhus trappa</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>kl. 12.00–16.00<br>Spel och lekar för den yngsta, som planerats av unga sommarjobbare vid Malms ungdomsarbetsenhet</b><br>Sommarjobbarna ordnar feel good-verksamhet som är öppen för alla. Kom med och lek och ha roligt.<br>Plats: Nedre Malms torg</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027, Paikka: Ala-Malmin tori</p><p><b>kl. 12.00–14.00 Pukinmäen taidekoulut: Clownen Dattarataa</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Pohjois-Helsingin kuvataidekoulus pinsverkstad</b><br>Plats: Nedre Malms torg</p><p><b>kl. 12.00–14.00 Yksin-projektet: Collagekonst och slickepinnsfjärilar</b><br>Plats: Nedre Malms torg</p><p><b>kl. 13.00–13.30<br>Glatt familjemusiklekis</b><br><i>”Snurra som en virvel – på vattenytan! Sväva som ett moln – på himlen!”</i><br>I det glada familjemusiklekiset får vi sjunga, leka och musicera tillsammans i sommaren. Programmet leds av musikmagistern och barnmusikern Henna-Maija Kuki.<br>Plats: Containerscenen, Nedre Malms torg</p><p><b>kl. 14.00–14.45<br>Rokkasoppa</b><br>Rokkasoppa är ett barnrockband som nu nått förskoleåldern. Deras låtar handlar om smaker, dofter, känslor och stämningar med en rockig twist som även får de vuxnas rumpor att svänga i takt. ”Det bästa med mat och rock är att man får gilla det som man gillar. Men man måste smaka på allt.”<br>Plats: Containerscenen, Nedre Malms torg</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>The delightful Children’s Saturday will feature rocking music, a music playschool and fun family moments with a reading oasis and workshops. Bring the whole family to Malmi!</p><p>As part of the Malmi Summer of Events, Children’s Saturday will provide joy and fun for the whole family! During the day, you can read, play music, do arts and crafts and enjoy rocking music for children.</p><p><b>The day’s programme</p><p>10.00–16.00<br>Reading oasis in the library</b><br>The library will set up a reading oasis near the entrance to the Malmitalo. Bring a book and come read with us.<br>Place: Malmitalo stairs</p><p><b> klo 11.00-15.00 Lasten uimataidon edistäminen </b><br>Tule keskustelemaan lasten uimataidosta samalla kun samalla kun perheen pienimmät voivat käydä pulahtamassa pallomereen.<br>Mukana KASKO, Fimu ry ja Monaliiku ry.<br>Apulaispormestari Shawn Huff vierailee tapahtumassa klo 12.30-13.30.</p><p><b>12.00–16.00<br>Games and play activities for the youngest members of the family, created by the Malmi Youth Work Unit’s young summer workers</b><br>Summer workers will provide enjoyable activities open to all. Join us for fun and games!<br>Place: Ala-Malmi Square</p><p><b>klo 12.00-15.00 Vehreä ja viihtyisä Ala-Malmin tori kaikille kaupunkilaisille 2027, Paikka: Ala-Malmin tori</p><p><b>12.00–14.00<br>Pukinmäki Art School: Clown Dattarataa</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>Pin-making workshop by Helsinki Upper Secondary School of Visual Arts</b><br>Place: Ala-Malmi Square</p><p><b>12.00–14.00<br>The Yksin (‘Alone’) project: Collage art and lollipop butterflies</b><br>Place: Ala-Malmi Square</p><p><b>13.00–13.30<br>Joyful family music playschool</b><br><i>“Spin like a whirlpool – on the surface of the water! Float like a cloud – up in the sky!\"</i><br>This joyful family music playschool will involve singing, play and making music together in a summery atmosphere. The music playschool will be led by Master of Music and children’s musician Henna-Maija Kuki.<br>Place: Container stage, Ala-Ala-Malmi Square</p><p><b>14.00–14.45<br>Rokkasoppa</b><br>Having reached preschool age, Rokkasoppa are a children’s rock band whose songs are about tastes, smells, sensations and feelings with a rock twist that will have even the adults shaking their butts. “The best thing about food and rock is that you’re free to like what you like. But you do have to taste everything.”<br>Place: Container stage, Ala-Ala-Malmi Square</p><p>Entry to the events is free of charge!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68267/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpif3fgye",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384802,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T11:09:32.063358Z",
                    "last_modified_time": "2026-06-01T11:09:32.063370Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5eed3459-46f8-4dba-bb6e-3e95af0ec7e5.jpg",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Matti Wallenius kitara ja sovitukset, Henrikki Häsänen perkussiot ja Ritva Koskensuu laulu",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384802/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T11:10:53.188018Z",
            "last_modified_time": "2026-06-01T11:10:53.188029Z",
            "date_published": null,
            "start_time": "2026-10-14T12:00:00Z",
            "end_time": "2026-10-14T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Triokokoonpano: Matti Wallenius kitara ja sovitukset, Henrikki Häsänen perkussiot ja Ritva Koskensuu laulu",
                "sv": "Trio: Matti Wallenius – gitarr och arrangemang, Henrikki Häsänen – slagverk och Ritva Koskensuu – sång\n\n",
                "en": "Trio lineup: Matti Wallenius on guitar and arrangements, Henrikki Häsänen on percussion, and Ritva Koskensuu on vocals"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kaj Chydeniuksen lauluja näyttelijä Ritva Koskensuun runoihin",
                "sv": "Sånger av Kaj Chydenius till dikter av skådespelerskan Ritva Koskensuu",
                "en": "Songs by Kaj Chydenius set to poems by actress Ritva Koskensuu"
            },
            "description": {
                "fi": "<p>Laulut ovat hetkiä ajassa. Havaintoja, tunteita, tunnelmia, ajan kuvaa ja ajatuksen virtaa. Toisen ihmisen ja luonnon merkitys korostuvat tässä vaativassa ajassamme.</p><p>Triokokoonpano: Matti Wallenius kitara ja sovitukset, Henrikki Häsänen perkussiot ja Ritva Koskensuu laulu</p>",
                "sv": "<p>Sångerna är ögonblick i tiden. Iakttagelser, känslor, stämningar, en bild av tiden och tankarnas flöde. Betydelsen av andra människor och naturen framhävs i vår krävande tid.</p><p>Trio: Matti Wallenius – gitarr och arrangemang, Henrikki Häsänen – slagverk och Ritva Koskensuu – sång</p><p><br></p>",
                "en": "<p>Songs are moments in time. Observations, emotions, moods, snapshots of time, and a flow of thoughts. The importance of other people and nature is highlighted in these challenging times.</p><p>Trio lineup: Matti Wallenius on guitar and arrangements, Henrikki Häsänen on percussion, and Ritva Koskensuu on vocals</p>"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpif3fgye/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpifns2rm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agob2cwdz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsooq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnspkm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsqee/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsq5y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsrwa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnssoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsthi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsuba/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsu2y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsvum/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnswom/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsxli/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsyeu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsy6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnszym/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2384795,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T09:47:43.155385Z",
                    "last_modified_time": "2026-06-01T09:47:43.155398Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/20b4ddf5-8e3c-402a-99c4-b68fc1ec6a8a.png",
                    "name": "",
                    "cropping": "232,0,815,582",
                    "photographer_name": "",
                    "alt_text": "Vanhuksia jumppaamassa. Venyttelevät käsiä tuolilla istuen.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384795/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:ago62xjtq4/?format=api"
                }
            ],
            "created_time": "2026-06-01T09:59:11.554145Z",
            "last_modified_time": "2026-06-01T10:17:44.882318Z",
            "date_published": null,
            "start_time": "2026-08-31T09:00:00Z",
            "end_time": "2026-12-07T10:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuolijumppaa kirjastolla maanantaisin 31.8.-11.12.2026 klo 12:00-12:45. Tervetuloa!",
                "sv": "Stolgymnastik på biblioteket måndagar 31 Aug –11 Dec 2026 kl. 12.00–12.45. Välkommen!",
                "en": "Chair exercises at the library on Mondays, Aug 31–Dec 11. 2026, from 12:00 to 12:45 p.m. Welcome!"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Seniorien tuolijumppa Ison Omenan kirjastossa",
                "sv": "Stolgympa för seniorer på Iso Omena bibliotek",
                "en": "Chair exercise for seniors at the Iso Omena Library"
            },
            "description": {
                "fi": "<p>Espoon kaupungin liikunta- ja urheiluyksikkö järjestää tuolijumppaa kirjastolla maanantaisin 31.8..-11.12.2026 klo 12:00-12:45 / Ison Omenan kirjasto, Palvelutori 3 krs.</p><p>Monipuolista sovellettua jumppaa pääasiassa tuolilla istuen. Harjoituksia voidaan tehdä myös seisten tuolin tukea hyödyntäen. Tunti sisältää liikkuvuutta ylläpitäviä, lihaksia vahvistavia ja tasapainoa haastavia liikkeitä. Ryhmä on suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Ryhmään voi osallistua myös liikkumisen apuvälineen kanssa.&nbsp;</p><p>Ei ennakkoilmoittautumista. Voit tulla mukaan, kun sinulle sopii</p><p><br></p><p>Jumpat myös keskiviikkoisin kello 10:00-10:45</p><p><br></p><p>Tervetuloa!&nbsp;</p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Esbo stads idrotts- och fritidsavdelning anordnar stolgymnastik på biblioteket på måndagar den 31.8. - 11.12. 12:00-12:45</p><p><br></p><p>Ochså på Onsdagar 10:00-10:45</p><p>Välkommen!&nbsp;</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>The City of Espoo’s Sports and Recreation Unit is hosting chair exercises at the library on Mondays from Aug 31 to December 11. 2026, from 12:00 p.m. to 12:45 p.m.&nbsp;</p><p>Welcome!&nbsp;</p><p>Also on Wednesdays 10:00-10:45</p><p>#HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Stage",
                "sv": "Stage",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifns2rm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69052",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2201334,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T09:14:34.126764Z",
                    "last_modified_time": "2026-05-19T09:14:34.126779Z",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792478.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201334/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-19T09:14:34.014398Z",
            "last_modified_time": "2026-06-01T10:13:46.864259Z",
            "date_published": null,
            "start_time": "2026-08-27T11:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Suojellaan Itämerta ja kerätään roskia räpin voimalla!",
                "sv": "Låt oss skydda Östersjön och plocka skräp med hjälp av rap!",
                "en": "Let's protect the Baltic Sea and collect litter with the power of rap!"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/B1F29BCD9391305CC4211707F900AA9F/MCMUSARIT_Suojellaan_Itamerta_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/B1F29BCD9391305CC4211707F900AA9F/MCMUSARIT_Lat_oss_skydda_Ostersjon_",
                "en": "http://www.espanlava.fi/en/events/event/B1F29BCD9391305CC4211707F900AA9F/MCMUSARIT_Suojellaan_Itamerta_"
            },
            "name": {
                "fi": "MCMUSARIT: Suojellaan Itämerta! – Itämeripäivä Espan lavalla",
                "sv": "MCMUSARIT: Låt oss skydda Östersjön! – Östersjödagen på Esplanadestraden",
                "en": "MCMUSARIT: Suojellaan Itämerta! – Baltic Sea Day on Espa Stage"
            },
            "description": {
                "fi": "<p>Suojellaan Itämerta ja kerätään roskia räpin voimalla!</p><p>Ylästön koulun räppiryhmä MCMUSARIT sai alkunsa, kun oppilaat tutustuivat koulussa Itämereen. Meren pahoinvointi ja saastuminen saivat oppilaat huolestumaan, ja he päättivät tehdä biisin Itämerelle.</p><p>”Are You Ready - Pelastetaan Itämeri!” -musavideo on pyörinyt YouTubessa ahkerasti ja saanut huomiota tiedotusvälineissä sekä somessa. MCMUSARIT ovat vakuuttuneet, että puhtaamman luonnon puolesta kannattaa myös lasten pitää ääntä ja toimia! Oppilaat ovatkin keränneet roskia yhdessä ja tehneet siitä uuden biisin.</p><p>MCMUSARIT toivovat, että heidän biisinsä ja musavideonsa auttaisivat ihmisiä ymmärtämään, että luonto ja Itämeri tarvitsevat apua! MCMUSARIT lisäksi suosittelevat, että kannattaa säännöllisesti poimia roska tai pari. Roskien kerääminen on helppoa ja siitä tulee hyvä fiilis! Tästä syntyi uusi biisi, ”Roskapäivä, paras päivä”.</p>",
                "sv": "<p>Låt oss skydda Östersjön och plocka skräp med hjälp av rap!</p><p>MCMUSARIT, en rapgrupp från Ylästön koulu, grundades då eleverna lärde sig om Östersjön i skolan. Eleverna blev oroade för sjöns illamående och föroreningarna i den och beslutade att göra en låt för Östersjön.</p><p>Musikvideon ”Are You Ready – Pelastetaan Itämeri!” har tittats aktivt på YouTube och fått uppmärksamhet i medierna och sociala medier. MCMUSARIT är övertygade om att det också lönar sig för barn att tala om och agera för en renare natur! Eleverna har samlat ihop skräp tillsammans och gjort en ny låt av det.</p><p>MCMUSARIT hoppas att deras låtar och musikvideor ska hjälpa människor att förstå att naturen och Östersjön behöver hjälp! MCMUSARIT rekommenderar också att man regelbundet plockar upp en bit skräp eller två. Det är lätt att plocka upp skräp och det ger en härlig känsla! Detta gav upphov till en ny låt, ”Roskapäivä, paras päivä”.</p>",
                "en": "<p>Let's protect the Baltic Sea and collect litter with the power of rap!</p><p>MCMUSARIT, a rap group from Ylästö School, was born when the pupils learned about the Baltic Sea at school. Concerned about the deterioration and pollution of the sea, the pupils decided to write a song for the Baltic Sea.</p><p>The Are You Ready – Pelastetaan Itämeri! music video has been making the rounds on YouTube and attracting media and social media attention. MCMUSARIT are convinced that it is also worthwhile for children to make their voices heard and take action for a cleaner nature! The students have collected rubbish together and made a new song out of it.</p><p>MCMUSARIT hope that their songs and music videos will help people understand that nature and the Baltic Sea need help! MCMUSARIT also recommend that you regularly pick up a piece of litter or two. It's easy to collect rubbish and it will make you feel good! This led to a new song, Roskapäivä, paras päivä.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69052/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68261",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1823577,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-17T09:13:36.186298Z",
                    "last_modified_time": "2026-04-17T09:13:36.186320Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1823577/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-04-17T09:13:36.063417Z",
            "last_modified_time": "2026-06-01T10:13:40.093959Z",
            "date_published": null,
            "start_time": "2026-06-19",
            "end_time": "2026-08-15",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.",
                "sv": "Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.",
                "en": "Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas."
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Lahella_ja_katkossa_nara_och_dolt_",
                "en": "http://www.annantalo.fi/en/events/event/D25BFDF5A577C1762C20817A5AFC30D7/Rosamai_Kirjokangas_Near_and_Hidden"
            },
            "name": {
                "fi": "Rosamai Kirjokangas: Lähellä ja kätkössä – Taidenäyttely kahvila Naperossa",
                "sv": "Rosamai Kirjokangas: Lähellä ja kätkössä (nära och dolt) – Konstutställning på kafé Napero",
                "en": "Rosamai Kirjokangas: Near and Hidden – Art exhibition at Café Napero"
            },
            "description": {
                "fi": "<p>Hiljaiset arjen hetket, pienet suojapaikat ja eläinolennot kohtaavat Rosamai Kirjokankaan näyttelyssä.</p><p>Esillä on vesiväri-, öljypastelli-, tussi- ja akryylitöitä.</p><p>Näyttelyn avajaiset järjestetään Kahvila Naperossa 26.6. klo 15–17 - Tervetuloa!</p><p>Vapaa pääsy</p>",
                "sv": "<p>Lugna vardagsögonblick, små skyddade platser och djurgestalter möts i Rosamai Kirjokangas utställning.</p><p>I utställningen ingår verk i akvarell, oljepastell, tusch och akryl.</p><p>Vernissage ordnas på kafé Napero 26.6 kl. 15–17 – Välkommen!</p><p>Fritt inträde</p>",
                "en": "<p>Quiet everyday moments, small shelters and animal creatures come together in this exhibition by Rosamai Kirjokangas.</p><p>The exhibition will feature watercolour, oil pastel, marker and acrylic works.</p><p>The opening of the exhibition will be held at Café Napero on 26 June at 15.00–17.00 – hope to see you there!</p><p>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68261/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpifnsn6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384796,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T10:03:50.241555Z",
                    "last_modified_time": "2026-06-01T10:03:50.241566Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0d1dcffa-c40f-474d-be9c-1e9c6df883a5.jpg",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Teppo Hovi ja kirjan kansikuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384796/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T10:03:57.038378Z",
            "last_modified_time": "2026-06-01T10:03:57.038393Z",
            "date_published": null,
            "start_time": "2026-08-18T15:00:00Z",
            "end_time": "2026-08-18T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rikosromaani Enkelit jotka katosivat on Hovin esikoiskirja, joka avaa Kasper Wik -sarjan. ",
                "sv": "Kriminalromanen ”Änglarna som försvann” är Hovs debutroman och den första boken i Kasper Wik-serien.  Evengemang är på finska.",
                "en": "The crime novel *The Angels Who Disappeared* is Hovi’s debut novel, which kicks off the Kasper Wik series. Event is in Finnish."
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Kirjailija Teppo Hovi",
                "sv": "Författare Teppo Hovi",
                "en": "Author Teppo Hovi"
            },
            "description": {
                "fi": "<p>Teppo Hovilla on yli 15 vuoden kokemus tv-sisällöistä ja fiktiosarjojen kehittämisestä, käsikirjoittamisesta ja tuottamisesta. Hän on ollut mukana tuotannoissa kuten Modernit miehet, Etsijät, Rakkaat lapset ja Kullannuput. Rikosromaani Enkelit jotka katosivat on Hovin esikoiskirja, joka avaa Kasper Wik -sarjan. Hovi asuu Helsingissä.</p><p><br></p><p>Enkelit jotka katosivat aloittaa Kasper Wik -sarjan, joka tuo rikoskirjallisuuden parrasvaloihin uuden kiinnostavan päähenkilön. Julkisuuden kiroista kärsivästä tubettajasta kehittyy omaa polkuaan kulkeva, rikollisia paljastava videojournalisti. Jännittävä ja koukuttava rikosromaani osoittaa, kuinka ammattirikollisuus hyödyntää globaaleja kriisejä ja uhkakuvia.</p>",
                "sv": "<p>Kriminalromanen ”Änglarna som försvann” är Hovs debutroman och den första boken i Kasper Wik-serien.&nbsp;Evengemang är på finska.</p>",
                "en": "<p>The crime novel *The Angels Who Disappeared* is Hovi’s debut novel, which kicks off the Kasper Wik series. Event is in Finnish.</p>"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifnsn6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpifns3km",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384797,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-01T09:32:13.952559Z",
                    "last_modified_time": "2026-06-01T09:32:13.952573Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/5c63a162-b88c-49cb-a84c-d6657a75a929.png",
                    "name": "",
                    "cropping": "26,0,826,800",
                    "photographer_name": "",
                    "alt_text": "InterLab ry: Elämää sivujen välissä - kirjaveistoksia ja kollaaseja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T09:51:04.916883Z",
            "last_modified_time": "2026-06-01T09:51:04.916898Z",
            "date_published": "2026-06-01T09:13:00Z",
            "start_time": "2026-06-28T07:00:00Z",
            "end_time": "2026-07-17T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "InterLab ry:n kirjaveistosten ja kollaasien näyttely",
                "sv": "InterLab f.d.:s utställning av bokskulpturer och collage",
                "en": "An exhibition of book sculptures and collages by InterLab ry"
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Elämä sivujen välissä (kirjaveistoksia ja kollaaseja)",
                "sv": "Livet mellan sidorna (bokskulpturer och collage)",
                "en": "Life Between the Pages (book sculptures and collages)"
            },
            "description": {
                "fi": "<p>Tässä näyttelyssä esillä olevat kirjaveistokset on toteutettu osallistujien toimesta osana espoolaisen yhdistyksen InterLab ry:n hanketta <em>Vanhakin on kaunista</em>. Teokset on valmistettu kirjoista, jotka ovat olleet hävitysuhan alla. Niille on annettu uusi elämä taiteen kautta.</p><p>Näyttely <em>Elämä sivujen välissä</em> tuo esiin erityisesti kirjaveistoksen ja kollaasin ilmaisumuotoja. Teoksissa kirja on sekä tekstin kantaja, että materiaali, muisto ja lähtökohta uudelle tarinalle.</p><p>Hankkeen tavoitteena on edistää kierrätystä, ekologista ajattelua ja kestävää luovuutta sekä vahvistaa muistojen ja esineiden merkitystä osana yhteistä kulttuuriperintöä. Vanhoista kirjoista syntyneet teokset muistuttavat siitä, että myös poisheitettäväksi tarkoitetuissa materiaaleissa piilee arvoa, tarinoita ja kauneutta.</p><p>InterLab on taiteellisen ja innovatiivisen toiminnan edistävä espoolainen yhdistys, joka on perustettu vuonna 2017. Yhdistyksen tavoitteena on luoda taiteellisia projekteja, jotka keskittyvät luovaan toimintaan ja nykytaiteeseen. Monet yhdistyksen projektit tähtäävät kollaasin, teatterin ja virtuaalitodellisuuden luovaan yhdistämiseen. Tiimi kattaa laajan kirjon ammattilaisia eri taiteen aloilta, mukaan lukien teatteri, valokuvaus, elokuva, taidemaalaus, musiikki ja tanssi.</p><p>Hanketta Vanhakin on kaunista tukee Espoon kaupunki / KulttuuriEspoo.</p><p>Näyttely on nähtävissä kirjaston aukioloaikoina. Tervetuloa!</p>",
                "sv": "<p>De bokskulpturer som visas i denna utställning har skapats av deltagarna som en del av projektet <em>”Vanhakin on kaunista” (Även det gamla är vackert)</em>, som drivs av föreningen InterLab ry i Espoo. Verken är tillverkade av böcker som hotats av kassering. Genom konsten har de fått nytt liv.</p><p>Utställningen <em>”Elämä sivujen välissä” (Livet mellan sidorna)</em> lyfter särskilt fram uttrycksformerna bokskulptur och collage. I verken är boken både bärare av text och material, minne och utgångspunkt för en ny berättelse.</p><p>Projektets mål är att främja återvinning, ekologiskt tänkande och hållbar kreativitet samt att stärka minnenas och föremålens betydelse som en del av vårt gemensamma kulturarv. Verken som skapats av gamla böcker påminner om att även material som är avsett att kastas bort rymmer värde, berättelser och skönhet.</p><p>InterLab är en förening i Espoo som främjar konstnärlig och innovativ verksamhet och som grundades 2017. Föreningens mål är att skapa konstnärliga projekt som fokuserar på kreativ verksamhet och samtidskonst. Många av föreningens projekt syftar till att kreativt kombinera collage, teater och virtuell verklighet. Teamet består av ett brett spektrum av yrkesverksamma inom olika konstområden, inklusive teater, fotografi, film, måleri, musik och dans.</p><p>Projektet <em>”Vanhakin on kaunista”</em> stöds av Espoo stad / KulturEsbo.</p><p>Utställningen kan ses under bibliotekets öppettider. Välkommen!</p>",
                "en": "<p>The book sculptures on display in this exhibition were created by participants as part of the project “<em>Even Old Things Are Beautiful”</em> organized by the Espoo-based association InterLab ry. The works were made from books that were at risk of being discarded. Through art, they have been given a new lease on life.</p><p>The exhibition <em>“Life Between the Pages”</em> highlights, in particular, the expressive forms of book sculptures and collages. In these works, the book serves as both a carrier of text and a material, a memory, and a starting point for a new story.</p><p>The project aims to promote recycling, ecological thinking, and sustainable creativity, as well as to reinforce the significance of memories and objects as part of our shared cultural heritage. The works created from old books serve as a reminder that even materials intended for disposal hold value, stories, and beauty.</p><p>InterLab is an Espoo-based association founded in 2017 that promotes artistic and innovative activities. The association’s goal is to create artistic projects focused on creative activities and contemporary art. Many of the association’s projects aim to creatively combine collage, theater, and virtual reality. The team includes a wide range of professionals from various artistic fields, including theater, photography, film, painting, music, and dance.</p><p>The project <em>“Even Old Things Are Beautiful”</em> is supported by the City of Espoo / CultureEspoo.</p><p>The exhibition is open during library hours. Welcome!</p>"
            },
            "location_extra_info": {
                "fi": "Vitriinigalleria (kirjaston ylempi kerros)",
                "sv": "Glassmontern & dess vägggalleri (bibliotekets övre våning)",
                "en": "Showcase Gallery (the upper floor of the library)"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpifns3km/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kultus:agpie6i7tm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:12/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:14/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:15/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:24/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:6/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:9/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8368/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "description": {
                        "fi": "",
                        "sv": "",
                        "en": ""
                    },
                    "info_url": null
                }
            ],
            "data_source": "kultus",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384792,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-01T09:15:48.600961Z",
                    "last_modified_time": "2026-06-01T09:17:16.431542Z",
                    "url": "https://linkedevents.api.test.hel.ninja/media/images/a_street-tunis_by_emily_sargent-public_domain_13urPMK.jpg",
                    "name": "a_street-tunis_by_emily_sargent-public_domain.jpg",
                    "cropping": "0,130,540,670",
                    "photographer_name": "Unknown",
                    "alt_text": "Street in Tunis, Public Domain",
                    "data_source": "kultus",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384792/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:40/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:55/?format=api"
                }
            ],
            "created_time": "2026-06-01T09:17:16.639494Z",
            "last_modified_time": "2026-06-01T09:18:23.443355Z",
            "date_published": null,
            "start_time": "2026-06-02T13:16:00Z",
            "end_time": "2026-06-03T12:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2026-06-01T12:19:00+03:00",
            "enrolment_end_time": "2026-06-03T12:12:00+03:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Testitapahtuma PT-453:n testaamista varten #5",
                "sv": "",
                "en": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "https://example.org/testitapahtuma5/",
                "sv": "",
                "en": ""
            },
            "name": {
                "fi": "Testitapahtuma PT-453:n testaamista varten #5",
                "sv": "",
                "en": ""
            },
            "description": {
                "fi": "<p>Testitapahtuma PT-453:n testaamista varten #5</p>\n",
                "sv": "",
                "en": ""
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpie6i7tm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpie7wpwm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7weim/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wfx4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7whay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7widm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wjhi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wki4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wlmm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wmou/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wnra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wouy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2384793,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T08:48:20.669067Z",
                    "last_modified_time": "2026-06-01T08:48:20.669078Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8a20647d-b37f-403c-8668-114338e18b56.png",
                    "name": "",
                    "cropping": "0,0,1080,1080",
                    "photographer_name": "",
                    "alt_text": "Mustalla pohjalla hämyinen kuja jossa nainen kävelee katulamppujen valossa. Teksti: Dekkariklubi syksy 2026",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384793/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T08:59:17.279066Z",
            "last_modified_time": "2026-06-01T08:59:17.279082Z",
            "date_published": null,
            "start_time": "2026-08-06T12:00:00Z",
            "end_time": "2026-12-10T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Keskustelua dekkareista joka toinen torstai. Tapahtuma on suomenkielinen. ",
                "sv": "Diskussion om deckare varannan torsdag.\nEvenemanget är på finska.",
                "en": "Discussion about crime fiction every other Thursday.\nThe event is in Finnish."
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Dekkariklubi syyskausi 2026",
                "sv": "Deckarklubben, på Finska",
                "en": "Crime Fiction Club, in Finnish"
            },
            "description": {
                "fi": "<p>1. Tapaaminen to 6.8. Klo 15-17. Dekkari: Anu Patrakka: Ihailija, 2025 (271s.)&nbsp;“Etsivä Nelson Monteiro-sarjan 3. osa vie lukijan kiehtovalle matkalle Lissabonin fado ravintoloihin. Rikokset ulottuvat kauas Neilikkavallankumouksen aikaan”.</p><p>&nbsp;</p><p>2.&nbsp;To 20.8. Klo 15-17. Dekkari: Barbara Nadel: Arabeski, 2011 (335s.)</p><p>“Nadel tarjoaa juurevaa ihmiskuvausta ja vahvaa paikallisväriä Turkin yhteiskunnasta ja monikerroksellisesta kulttuurista. Tässä Mehmet Suleyman ratkoo arabeskilaulajan vaimon murhaa”.</p><p>\t&nbsp;</p><p>3. To 3.9. Klo 15-17. Dekkari: Johan Theorin: Hämärän hetki, 2008 (429s.)</p><p>“Kirjailijan esikoisteos. Tapahtuu Öölannin saarella Ruotsissa. Päähenkilö on yli 80 v. Gerlof Davidson, eläköitynyt merikapteeni, joka jatkaa 20v jälkeen pojanpoikansa etsintöjä pojan äidin Julian kanssa, kun löytyy uusi johtolanka.” “kirja on lukuelämys, joka jää mieleen”.</p><p>\t&nbsp;</p><p>4. To 17.9. Klo 15-17. Dekkari: Peter James: Kuolleen miehen kasvot, 2025 (416s.+karttoja) “Rikosetsivä Roy Grace tutkii voiko kuollut mies olla tappaja? Jamesin kirjat ovat nopeatempoisia, täynnä odottamattomia juonenkäänteitä, uhkaavia henkilöhahmoja ja tarkkoja kuvauksia nykyaikaisesta poliisityöstä”.</p><p>\t&nbsp;</p><p>5. To 1.10. Klo 15-17. Dekkari: Donna Leon: Hetken huumaa, 2023 (319s.)</p><p>&nbsp;“Komisario Guido Brunettin tutkimukset, nro 30, Venetsiassa”.</p><p>&nbsp;</p><p>6. To 15.10. Klo 15-17. Dekkari: Aamos Honka: Punainen verkko, 2025 (489s.)&nbsp;“Tiedustelumaailman sisäpiiriläisen trilleri vie hybridi operaatioiden salattuun ytimeen”.</p><p>&nbsp;</p><p>7. To 29.10. Klo 15-17. Dekkari: Fred Vargas: Varjojen tallaajat, 2025 (478s.)</p><p>&nbsp;“Komisario Adamsbergin tutkimuksia, 10 osa. Adamsberg tutkii rikoksia bretagnelaiskylässä Ranskassa”. “Kirjailija Vargas on myös arkeologi ja historioitsija”.</p><p>&nbsp;</p><p>8. To 12.11. Klo 15-17. Dekkari: Laura Andersson: Kuolema Kulosaaressa, 2022 (415s.)&nbsp;“Lili Loimola yksityisetsivänä. Hyvän mielen dekkarisarjan avaus, taustana sodanjälkeinen Helsinki 1940-luvulla.”</p><p>&nbsp;</p><p>9. To 26.11. Klo 15-17. Dekkari: Sofie Sarenbrant: Häpeänurkka, 2021 (445s.&nbsp;“Emma Sköld-sarjan 7. Osa. Romaani on kuin huima vuoristorata-ajelu, jonka ei soisi ikinä loppuvan”.</p><p>&nbsp;</p><p>10. To 10.12. Klo 15-17. Dekkari: Joël Dicker: Huoneen 622 arvoitus, 2021 (648s.)&nbsp;“Murhamysteeri juonikoukkujen mestarilta! Arvoitus palatsimaisessa hotellissa Alppien katveessa Sveitsissä”.</p><p>&nbsp;Dekkariklubissa puhutaan osallistujien itse vapaasti valitsemista ja lukemista dekkareista.&nbsp;</p>",
                "sv": "<p>I Deckarklubben diskuterar deltagarna de deckare som de själva fritt har valt och läst. Se boklistan på de finskspråkiga sidorna.</p>",
                "en": "<p>In the Crime Fiction Club, participants discuss crime novels they have freely chosen and read themselves.See the book list on the Finnish‑language pages.</p>"
            },
            "location_extra_info": {
                "fi": "Kari",
                "sv": "Kari",
                "en": "Kari"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wpwm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpie7wqxy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15309/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384794,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-01T08:26:08.068718Z",
                    "last_modified_time": "2026-06-01T08:26:08.068729Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/18affeeb-d3c9-4989-81bd-554620440fb0.jpg",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Tekoälyllä tuotettu kuva Laaksolahden kirjastosta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384794/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T08:26:15.890726Z",
            "last_modified_time": "2026-06-01T08:26:15.890742Z",
            "date_published": null,
            "start_time": "2026-06-10T15:00:00Z",
            "end_time": "2026-06-10T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa Laaksolahden kirjastoon vielä ennen kuin toiminta nykyisissä tiloissa päättyy."
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Jäähyväiset kirjastotalolle"
            },
            "description": {
                "fi": "<p>Tervetuloa Laaksolahden kirjastoon vielä ennen kuin toiminta nykyisissä tiloissa päättyy. Keskiviikkona 10.6. klo 18 -19 tapaamme muita kirjaston käyttäjiä, muistelemme menneitä ja keskustelemme tulevasta.</p><p><br></p><p>Anssi Sajama kaupunginkirjastosta on paikalla keskustelemassa kirjaston väliaikaisten tilojen tilanteesta ja tulevasta Jupperin koulun, päiväkodin ja kirjaston uudisrakennuksesta.</p><p><br></p><p>Kahvitarjoilu.</p><p><br></p><p>Tilaisuuden järjestää Laaksolahden kirjaston ystävät</p>"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Laaksolahden kirjaston ystävät "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpie7wqxy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpiery36m",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15344/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryuya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryv5a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpierywy4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryxv4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryyqu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpieryzlm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery2ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery3c4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150687,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-04-19T07:43:38.834481Z",
                    "last_modified_time": "2024-04-19T07:43:38.834499Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/freia_23.jpg",
                    "name": "",
                    "cropping": "74,0,266,191",
                    "photographer_name": "",
                    "alt_text": "Lukukoira Freia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150687/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-01T07:44:21.615633Z",
            "last_modified_time": "2026-06-01T07:44:21.615650Z",
            "date_published": null,
            "start_time": "2026-08-22T08:00:00Z",
            "end_time": "2026-11-28T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle. ",
                "sv": "Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare. ",
                "en": "Come and meet the reading dog and read a book of your choice to a patient listener. "
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Lukukoira Freia",
                "sv": "Läshund Freia",
                "en": "Reading dog Freia"
            },
            "description": {
                "fi": "<p>Tule tapaamaan lukukoiraa ja lukemaan valitsemaasi kirjaa kärsivälliselle kuuntelijalle.</p><p>Freia on tavattavissa lauantaisin:</p><p>lauantai 22.8. klo 11-12</p><p>lauantai 5.9. klo 11-12</p><p>lauantai 19.9. klo 11-12</p><p>lauantai 3.10 klo 11-12</p><p>lauantai 24.10. klo 11-12</p><p>lauantai 7.11. klo 11-12</p><p>lauantai 21.11. klo 11-12</p><p>lauantai 5.12. klo 11-12</p>",
                "sv": "<p>Kom och träffa läshunden och läs din valda bok för en tålmodig lyssnare.</p><p> 22.8. klo 11-12</p><p>5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p>5.12. klo 11-12</p>",
                "en": "<p>Come and meet the reading dog and read a book of your choice to a patient listener.</p><p> 22.8. klo 11-12</p><p> 5.9. klo 11-12</p><p> 19.9. klo 11-12</p><p> 3.10 klo 11-12</p><p> 24.10. klo 11-12</p><p> 7.11. klo 11-12</p><p> 21.11. klo 11-12</p><p> 5.12. klo 11-12</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpiery36m/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhtmay",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "description": null,
                    "info_url": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824133,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-08-06T10:18:16.043447Z",
                    "last_modified_time": "2025-08-06T10:18:16.043462Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/9a937414-952a-49b1-972d-5373ca284de9.jpg",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Ihmisiä rekrytointitapahtumassa.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824133/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:aggo3dhzjq/?format=api"
                }
            ],
            "created_time": "2026-04-02T10:43:00.617177Z",
            "last_modified_time": "2026-06-01T07:35:36.816390Z",
            "date_published": null,
            "start_time": "2026-06-04T09:00:00Z",
            "end_time": "2026-06-04T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Etsitkö töitä? Tule tapaamaan työnantajia perinteiseen rekrytointitapahtumaan.",
                "sv": "Söker du arbete? Kom och träffa arbetsgivare på traditionella rekryteringsevenemang.",
                "en": "Looking for a job? Meet employers at the traditional recruitment event."
            },
            "provider_contact_info": null,
            "info_url": null,
            "name": {
                "fi": "Työnantajatreffit - Henkilöstöala",
                "sv": "Työnantajatreffit - Personalbranschen",
                "en": "Työnantajatreffit recruitment event - Human resources companies"
            },
            "description": {
                "fi": "<p>Tapahtuma on maksuton ja avoin kaikille työnhakijoille. Mukana on useita henkilöstöalan yrityksiä, jotka rekrytoivat osaajia juuri nyt. Lämpimästi tervetuloa Sellon kirjastoon tapaamaan työnantajia!</p><p>Mukana rekrytoimassa mm:</p><p>JWD Palvelut, Kaveriontti, Keystaff, LUVN perhehoito, Pääkaupunkiseudun 4H -yhdistys, PolarPro, Poolia, Teampa Henkilöstöpalvelut, Espoon kaupunki.</p><p>Lisäksi koulutus- ja työnhaun neuvontaa tarjolla mm:</p><p>Omnia, TTS Työtehoseura, Spring House, Työvoimakoulutukset ja korttikoulutukset (Työllisyyspalvelut, Espoon kaupunki).</p><p>#SinunTyösiPuolella #HelloEspoo</p>",
                "sv": "<p>Evenemanget är gratis och öppet för alla arbetssökande.Det finns flera bemanningsföretag som rekryterar experter just nu. Varmt välkomna alla arbetssökande till Sellobiblioteket och träffa arbetsgivare!</p><p>Med i rekryteringen:</p><p>JWD Palvelut, Kaveriontti, Keystaff, LUVN familjevård, Pääkaupunkiseudun 4H -yhdistys, PolarPro, Poolia, Teampa Henkilöstöpalvelut, Espoon stad.</p><p>Dessutom erbjuds jobbsökar- och utbildningsvägledning: </p><p>Omnia, TTS Työtehoseura, Spring House, arbetskraftsutbildning, kort- och passutbildningar (Sysselsättningstjänster, Esbo Stad).</p><p>#FörDittArbete #HelloEspoo</p>",
                "en": "<p>The event is free and open to all job seekers. There are several human resources companies involved that are recruiting experts right now. You are warmly welcome to join us to Sello Library and meet the employers!</p><p>Employers:</p><p>JWD Palvelut, Kaveriontti, Keystaff, LUVN Family care, Pääkaupunkiseudun 4H -yhdistys, PolarPro, Poolia, Teampa Henkilöstöpalvelut, Espoon City.</p><p>In addition, job search and education counselling are available:</p><p>Omnia, TTS Työtehoseura, Spring House, Labour market training and  card / licence training (Employment services, Espoon kaupunki).</p><p>#YourWorkIsOurWork #HelloEspoo</p>"
            },
            "location_extra_info": {
                "fi": "Sellon kirjaston aula",
                "sv": "Sellobibliotekets lobby",
                "en": "Sello Library lobby"
            },
            "provider": {
                "fi": "Espoon työllisyyspalvelut",
                "sv": "Esbo sysselsättningtjänster",
                "en": "Espoo Employment Services"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhtmay/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}