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

{
    "meta": {
        "count": 35262,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=86",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=84"
    },
    "data": [
        {
            "id": "kulke:69257",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702289/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384978,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T10:13:51.038594Z",
                    "last_modified_time": "2026-06-05T10:13:51.038609Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791969.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384978/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T10:13:50.907707Z",
            "last_modified_time": "2026-06-05T10:13:51.192605Z",
            "date_published": null,
            "start_time": "2026-11-01T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "sv": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "en": "Old Forest Echoes – Ikimetsän kaiku: Immersive Nature Concert – Caisa 30 Club"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.",
                "en": "Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "en": "http://www.caisa.fi/en/events/event/8376C1D627E9F010009A7F12E757C791/Old_Forest_Echoes_Ikimetsan_kaiku_Immersive_Nature_Concert"
            },
            "description": {
                "fi": "<p>Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.</p><p>Se on kansainvälisesti arvostetun multi-instrumentalisti <b>Barbora Xun</b> (Barbora Šilhánová) visio. Xu teki taiteellista tutkimustyötä näissä metsissä neljän kuukauden ajan, ja nyt hän tuo luonnosta inspiraationsa saaneen musiikkinsa kaupunkilaisyleisölle, immersiivessä sisätilakokemuksessa. Suomalaisten ikimetsien tunnelma saapuu kaupunkiin kanteleen, kiinalaisen sitran ja laulun ympärille rakentuvassa konsertissa, jota täydentävät video ja metsän äänet.</p><p>Esitys tapahtuu ympäristötaiteilija <b>Tommi Laineen</b> luonnonmateriaaleista rakentamassa sisämetsäinstallaatiossa. <b>Mikko Haapojan</b> äänimaisemainstallaatio yhdistää Barboran metsässä viettämän ajan kenttänauhoituksia ja kuvaaja <b>Ville Tantun</b> kuvaamaa videomateriaalia.</p><p><b>Työryhmä:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: ohjaus, luontomusiikkitaiteilija <br><b>Mikko H. Haapoja</b>: äänimaisemainstallaatio ja ääniteknikko <br><b>Ville Tanttu</b>: videoprojektio <br><b>Tommi Laine</b>: ympäristötaiteilija, sisämetsäinstallaatio <br><b>Milla Aalto</b>: metsäasiantuntija   <br><b>Carly Markkanen</b>: tuottaja</p><p>Teosta on tukenut Koneen säätiö yhteistyössä Luontoliiton kanssa.</p><p><b>Luento ja työpajat</b></p><p>60-minuuttista konserttia täydentää lauantaina 31. lokakuuta esitykseen liittyvä luento Suomen aarniometsistä, jonka pitää Luontoliiton metsäasiantuntija <b>Milla Aalto</b>. Sunnuntaina 1. marraskuuta järjestetään eri kohderyhmille suunnattuja musiikkityöpajoja, mukaan lukien pidempi sessio aikuisille ja lyhyempi työpaja lapsiperheille.</p><p>Työpajoissa esityksen teemoja syvennetään samassa immersiivisessä ympäristössä. 45 tai 90 minuutin mittaisissa sessioissa tutkimme, kuuntelemme ja tulemme osaksi aarniometsien tunnelmaa ohjattujen aistimatkojen kautta.</p><p>Työpajat pidetään suomeksi ja englanniksi.</p><p><b>Sunnuntai 1. marraskuuta</b><br><i>– Ikimetsän kaiku perhetyöpaja –</i><br><b>13.00</b> | Perhetyöpaja kaikenikäisille: leikkisiä ja mukaansatempaavia metsästä inspiraationsa saaneita musiikkitoimintoja. Osallistuminen vapaaehtoista. <br><i>– Ikimetsän kaiku konsertti – Caisa 30 Club –</i><br><b>14.00</b> | Johdanto ja konsertti: Old Forest Echoes – Ikimetsän kaiku<br><i>– Ikimetsän kaiku työpaja –</i><br><b>15.15</b> | Työpaja kaikille: johdanto ikimetsiin ja opastettu aistimatka. Osallistuminen vapaaehtoista.</p>",
                "en": "<p>Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland.</p><p>It is the vision of internationally acclaimed multi-instrumentalist <b>Barbora Xu</b> (Barbora Šilhánová), who, after four months of artistic research in these forests, now brings her nature-inspired music to urban audiences as an immersive indoor experience. With kantele, Chinese zither and voice at its core, accompanied by video and sounds of the woods, the concert brings the atmosphere of Finnish old-growth forests into the city.</p><p>The performance takes place within an indoor forest installation made from natural materials by environmental artist <b>Tommi Laine</b>. A soundscape installation by <b>Mikko Haapoja</b> combines field recordings from Barbora’s time in the forest with footage captured by cinematographer <b>Ville Tanttu</b>.</p><p><b>Working group:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: director, nature music artist <br><b>Mikko H. Haapoja</b>: soundscape installation and sound technician <br><b>Ville Tanttu</b>: video projections <br><b>Tommi Laine</b>: environmental artist, indoors forest installation <br><b>Milla Aalto</b>: forests expert   <br><b>Carly Markkanen</b>: producer  <br> <br>Supported by Kone Foundation in collaboration with Luontoliitto.</p><p><b>Talk and workshops</b></p><p>The 60-minute concert is complemented on Saturday 31 October by a pre-performance talk on Finnish old-growth forests by forests expert <b>Milla Aalto </b>of Luontoliitto (The Finnish Nature Association). On Sunday 1 November, music workshops for different audiences, including a longer session for adults and a shorter workshop for families with children, are held.</p><p>In the workshops, the themes of the performance are expanded upon within the same immersive setting. During the 45 or 90-minute sessions, we will explore, listen, and connect with the atmosphere of old-growth forests through a guided sensory journey.</p><p>The workshops are instructed in Finnish and English.</p><p><b>Sunday 1 November</b><br><i>– Old Forest Echoes: Family workshop –</i><br><b>13.00</b> | Family workshop for all ages: playful and engaging forest-inspired musical activities. Participation optional. <br><i>– Old Forest Echoes Concert – Caisa 30 Club –</i><br><b>14.00</b> | Introduction and concert: Old Forest Echoes – Ikimetsän kaiku<br><i>– Old Forest Echoes: Worshop for general audiences –</i><br><b>15.15</b> | Workshop for general audiences: introduction to old-growth forests and a guided sensory journey. Participation optional.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69257/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69256",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/",
                        "sv": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/",
                        "en": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702288/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 7 €",
                        "sv": "15 € / 7 €",
                        "en": "15 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384977,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T10:13:50.515960Z",
                    "last_modified_time": "2026-06-05T10:13:50.515973Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791966.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384977/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T10:13:50.350075Z",
            "last_modified_time": "2026-06-05T10:13:50.726213Z",
            "date_published": null,
            "start_time": "2026-10-31T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "sv": "Old Forest Echoes – Ikimetsän kaiku: immersiivinen luontokonsertti – Caisa 30 Club",
                "en": "Old Forest Echoes – Ikimetsän kaiku: Immersive Nature Concert – Caisa 30 Club"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.",
                "en": "Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "sv": "http://www.caisa.fi/sv/evenemang/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_immersiivinen_luontokonsertti",
                "en": "http://www.caisa.fi/en/events/event/4315416BF35517CB764A83C690F786FD/Old_Forest_Echoes_Ikimetsan_kaiku_Immersive_Nature_Concert"
            },
            "description": {
                "fi": "<p>Old Forest Echoes – Ikimetsän kaiku on konserttikokemus, joka kasvaa halusta suojella Suomen ikimetsiä.</p><p>Se on kansainvälisesti arvostetun multi-instrumentalisti <b>Barbora Xun</b> (Barbora Šilhánová) visio. Xu teki taiteellista tutkimustyötä näissä metsissä neljän kuukauden ajan, ja nyt hän tuo luonnosta inspiraationsa saaneen musiikkinsa kaupunkilaisyleisölle, immersiivessä sisätilakokemuksessa. Suomalaisten ikimetsien tunnelma saapuu kaupunkiin kanteleen, kiinalaisen sitran ja laulun ympärille rakentuvassa konsertissa, jota täydentävät video ja metsän äänet.</p><p>Esitys tapahtuu ympäristötaiteilija <b>Tommi Laineen</b> luonnonmateriaaleista rakentamassa sisämetsäinstallaatiossa. <b>Mikko Haapojan</b> äänimaisemainstallaatio yhdistää Barboran metsässä viettämän ajan kenttänauhoituksia ja kuvaaja <b>Ville Tantun</b> kuvaamaa videomateriaalia.</p><p><b>Työryhmä:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: ohjaus, luontomusiikkitaiteilija <br><b>Mikko H. Haapoja</b>: äänimaisemainstallaatio ja ääniteknikko <br><b>Ville Tanttu</b>: videoprojektio <br><b>Tommi Laine</b>: ympäristötaiteilija, sisämetsäinstallaatio <br><b>Milla Aalto</b>: metsäasiantuntija   <br><b>Carly Markkanen</b>: tuottaja</p><p>Teosta on tukenut Koneen säätiö yhteistyössä Luontoliiton kanssa.</p><p><b>Luento ja työpajat</b></p><p>60-minuuttista konserttia täydentää lauantaina 31. lokakuuta esitykseen liittyvä luento Suomen aarniometsistä, jonka pitää Luontoliiton metsäasiantuntija <b>Milla Aalto</b>. Sunnuntaina 1. marraskuuta järjestetään eri kohderyhmille suunnattuja musiikkityöpajoja, mukaan lukien pidempi sessio aikuisille ja lyhyempi työpaja lapsiperheille.</p><p>Työpajoissa esityksen teemoja syvennetään samassa immersiivisessä ympäristössä. 45 tai 90 minuutin mittaisissa sessioissa tutkimme, kuuntelemme ja tulemme osaksi aarniometsien tunnelmaa ohjattujen aistimatkojen kautta.</p><p>Työpajat pidetään suomeksi ja englanniksi.</p><p><b>Lauantai 31. lokakuuta  </b><br><i>– Ikimetsän kaiku konsertti – Caisa 30 Club –</i><br><b>18.30</b> | Johdanto ikimetsiin: Luontoliiton metsäasiantuntija Milla Aallon luento<br><b>19.00</b> | Johdanto ja konsertti: Old Forest Echoes – Ikimetsän kaiku</p>",
                "en": "<p>Old Forest Echoes – Ikimetsän kaiku is a concert experience grown from a desire to protect the old-growth forests of Finland.</p><p>It is the vision of internationally acclaimed multi-instrumentalist <b>Barbora Xu</b> (Barbora Šilhánová), who, after four months of artistic research in these forests, now brings her nature-inspired music to urban audiences as an immersive indoor experience. With kantele, Chinese zither and voice at its core, accompanied by video and sounds of the woods, the concert brings the atmosphere of Finnish old-growth forests into the city.</p><p>The performance takes place within an indoor forest installation made from natural materials by environmental artist <b>Tommi Laine</b>. A soundscape installation by <b>Mikko Haapoja</b> combines field recordings from Barbora’s time in the forest with footage captured by cinematographer <b>Ville Tanttu</b>.</p><p><b>Working group:</b><br><b>Barbora Xu/Barbora Šilhánová</b>: director, nature music artist <br><b>Mikko H. Haapoja</b>: soundscape installation and sound technician <br><b>Ville Tanttu</b>: video projections <br><b>Tommi Laine</b>: environmental artist, indoors forest installation <br><b>Milla Aalto</b>: forests expert   <br><b>Carly Markkanen</b>: producer  <br> <br>Supported by Kone Foundation in collaboration with Luontoliitto.</p><p><b>Talk and workshops</b></p><p>The 60-minute concert is complemented on Saturday 31 October by a pre-performance talk on Finnish old-growth forests by forests expert <b>Milla Aalto </b>of Luontoliitto (The Finnish Nature Association). On Sunday 1 November, music workshops for different audiences, including a longer session for adults and a shorter workshop for families with children, are held.</p><p>In the workshops, the themes of the performance are expanded upon within the same immersive setting. During the 45 or 90-minute sessions, we will explore, listen, and connect with the atmosphere of old-growth forests through a guided sensory journey.</p><p>The workshops are instructed in Finnish and English.</p><p><b>Saturday 31 October  </b><br><i>– Old Forest Echoes Concert – Caisa 30 Club –</i><br><b>18.30</b> | Introduction to old-growth forests: talk by Milla Aalto, forests specialist, Luontoliitto<br><b>19.00</b> | Introduction and concert: Old Forest Echoes – Ikimetsän kaiku</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46044/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "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:p1235/?format=api"
                }
            ],
            "created_time": "2026-06-05T09:09:23.772488Z",
            "last_modified_time": "2026-06-05T09:09:23.772508Z",
            "date_published": "2026-06-05T08:58:58Z",
            "start_time": "2026-06-05T09:08:00Z",
            "end_time": "2026-06-05T11:08:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "testi: #2770 tapahtuman julkaisun epäonnistuminen - sähköpostin sisältö"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:c38c36eb-45b7-4fa9-a924-447b1d706d23/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68636",
            "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:31/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384970,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:10.883897Z",
                    "last_modified_time": "2026-06-05T07:14:10.883914Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791327.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384970/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:10.768262Z",
            "last_modified_time": "2026-06-05T07:14:11.037001Z",
            "date_published": null,
            "start_time": "2026-12-08T16:00:00Z",
            "end_time": "2026-12-08T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/14B30DD74891205FDFEA36907D01D609/Big_band_-jamit"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68635",
            "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:31/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384967,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:06.764136Z",
                    "last_modified_time": "2026-06-05T07:14:06.764157Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791325.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384967/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:06.617965Z",
            "last_modified_time": "2026-06-05T07:14:06.930584Z",
            "date_published": null,
            "start_time": "2026-11-03T16:00:00Z",
            "end_time": "2026-11-03T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/668A9FF6B5E2D55BD5620FBE2FB42EBB/Big_band_-jamit"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68635/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68634",
            "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:31/?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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384966,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T07:14:04.079096Z",
                    "last_modified_time": "2026-06-05T07:14:04.079114Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791322.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384966/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-05T07:14:03.936749Z",
            "last_modified_time": "2026-06-05T07:14:04.270514Z",
            "date_published": null,
            "start_time": "2026-10-06T15:00:00Z",
            "end_time": "2026-10-06T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Big band -jamit",
                "sv": "Big band -jamit",
                "en": "Big band -jamit"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit",
                "en": "http://www.malmitalo.fi/en/events/event/051A195F3BC19B510CA06D91827C5A90/Big_band_-jamit"
            },
            "description": {
                "fi": "<p>Sointi Jazz Orchestran järjestämät big band -jamit saavat jatkoa!</p><p>Ilmaiset big band -jamit syyskaudella 2026:<br>ti 6.10. klo 18–20<br>ti 3.11. klo 18–20<br>Ti 8.12. klo 18–20</p><p>House bandien lyhyiden esitysten jälkeen kaikki saksofonisti, trumpetistit, pasunistit, komppisoittajat ja laulajat ovat tervetulleita mukaan musisoimaan! Paikan päältä löytyvät rumpusetti, piano, basso- ja kitaravahvistin, nuottitelineet sekä nuotit. Tuothan muut tarvitsemasi soittimet ja rumpukapulat mukanasi.<br> <br>Jameihin on valikoitu ohjelmistoksi mukavaa ja eri tasoisille soittajille soveltuvaa materiaalia - soitettavat kappaleet valitaan jameissa paikalle saapuvien soittajien mukaan!<br> <br>Kappaleiden nuotteja on mahdollista saada myös pyydettäessä etukäteen nähtäväksi. Laita tästä pyyntö osoitteeseen: info@sointijazzorchestra.com<br> <br>Tule ja ota kaverisikin mukaan musisoimaan yhdessä! Voit saapua paikalle myös vain kuuntelemaan ja nauttimaan big band -musiikista.<br> <br>Kesto: 2 t<br>Vapaa pääsy!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68634/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68329",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384761,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-26T12:13:40.125259Z",
                    "last_modified_time": "2026-05-26T12:13:40.125281Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787441.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384761/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-05-26T12:13:40.014897Z",
            "last_modified_time": "2026-06-05T07:13:57.311746Z",
            "date_published": null,
            "start_time": "2026-08-27T15:30:00Z",
            "end_time": "2026-08-27T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Illallinen Malminkartanonaukiolla",
                "sv": "Illallinen Malminkartanonaukiolla",
                "en": "Illallinen Malminkartanonaukiolla"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla",
                "en": "http://www.kanneltalo.fi/en/events/event/94ED5524E9E1D6FCD7F7DF4CAF06B9BB/Illallinen_Malminkartanonaukiolla"
            },
            "description": {
                "fi": "<p>Nautitaan yhdessä illallinen Malminkartanonaukiolla! Tuo omat eväät, me tarjoamme pöydät.</p><p>Malminkartanonaukiolla illallistetaan taas yhdessä torstaina 27.8.! Me tarjoamme pöydät ja penkit, tuo mukanasi ruokaa, juomaa, astiat, aterimet ja hyvää mieltä. Ruokailun lomassa illallistajia viihdyttää Michael Bleu yhtyeineen!</p><p>Michael Bleu on monessa erivärisessä liemessä uitettu artisti ja tuottaja. Hänen erityispelialuettaan on 60 -ja 70-lukulainen amerikkasoul, joka kuitenkin tässä tapauksessa esitetään suomenkielellä. Bleu hämmentää ja yllättää tuotantonsa moni-ilmeisyydellä sekoitellen eri ainesosia aivan niin kuin huvittaa.<br>Illallinen alkaa klo 18.30 ja päättyy kello 21 aikoihin.</p><p>Osallistuminen on ilmaista, mutta vaatii ennakkoilmoittautumisen. <br>Ilmoittaudu mukaan illalliselle: https://forms.gle/W92fQ55aEkeZpqci9</p><p>Mikäli joku ilmoittamistasi ihmisistä ei pääsekään osallistumaan illalliselle, ilmoitathan siitä osoitteeseen ella@helsinkiurbanart.com<br>Tapahtuma-alue on esteetön. WC-tilat löytyvät aukion ympäristöstä Malmgård-ravintolasta.</p><p>Tapahtuman järjestää Helsinki Urban Art ry yhteistyössä Kanneltalon kanssa.</p><p>///<br>Come and join us for dinner on Malminkartanonaukio on Thursday, August 27! Bring your own food, drinks and dishes with a happy spirit, we provide the tables and benches. Entertainment alongside dinner will be provided by Michael Bleu and his band!<br>Michael Bleu is an artist and producer who has been immersed in many different genres. His special area of ​​expertise is 60s and 70s American soul, which in this case is presented in Finnish. Bleu confuses and surprises with the diversity of his production, mixing different ingredients just as he pleases.</p><p>Dinner starts at 6.30 pm and ends at around 9 pm. Participation is free but registration in advance is required. <br>Registration for the dinner: https://forms.gle/W92fQ55aEkeZpqci9</p><p>If any of the people you have registered are unable to attend the dinner, please let us know at ella@helsinkiurbanart.com<br>The event area is accessible. Bathrooms can be found by the square in Malmgård restaurants’ facilities.</p><p>The event is hosted by Helsinki Urban Art ry in collaboration with Kanneltalo.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68329/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6dfc4936-1ec4-4d4f-9d51-1d661e7d943d",
            "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/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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: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:p23886/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": {
                        "fi": "Hintatietojen kuvaus suomeksi"
                    },
                    "price": {
                        "fi": "10"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384959,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-05T06:27:07.428526Z",
                    "last_modified_time": "2026-06-05T06:27:07.428558Z",
                    "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/ec480b40-da1d-f111-8341-6045bddd6dee",
                    "name": "Kuvateksti",
                    "cropping": "",
                    "photographer_name": "Kuvaajan nimi",
                    "alt_text": "Kuvan Alt-teksti",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384959/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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: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:p23886/?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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api"
                }
            ],
            "created_time": "2026-06-05T06:27:10.114057Z",
            "last_modified_time": "2026-06-05T06:27:10.114104Z",
            "date_published": "2026-06-05T06:17:59Z",
            "start_time": "2026-07-03T05:00:00Z",
            "end_time": "2026-07-03T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 15,
            "audience_max_age": 55,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 100,
            "enrolment_start_time": "2026-06-05T08:00:00+03:00",
            "enrolment_end_time": "2026-07-01T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] LinkedEvents Testailua 5.6.2026 v2.0"
            },
            "location_extra_info": {
                "fi": "Tapahtumapaikan lisätiedot suomeksi"
            },
            "provider": {
                "fi": "Tapahtuman järjestäjä suomeksi"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus suomeksi"
            },
            "info_url": null,
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus suomeksi<br>&nbsp;</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6dfc4936-1ec4-4d4f-9d51-1d661e7d943d/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6c992a40-7936-4423-9221-fb2a73807733",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?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:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cd8eb2d6-1e44-456e-9e12-42f18d4a6b38/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://yt.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://ig.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_whatsapp",
                    "link": "https://wa.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_facebook",
                    "link": "https://face.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_snapchat",
                    "link": "https://sc.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_reddit",
                    "link": "https://reddid.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tumblr",
                    "link": "https://tumblr.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://x.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tiktok",
                    "link": "https://tt.com",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG_-_Staging_Testing3205405590",
                        "sv": "https://tapahtumat.hel.se",
                        "en": "https://tapahtumat.hel.eng",
                        "ru": "https://tapahtumat.hel.ru",
                        "zh_hans": "https://tapahtumat.hel.chi",
                        "ar": "https://tapahtumat.hel.ara"
                    },
                    "description": {
                        "fi": "Additional price information in Finnish",
                        "sv": "Additional price information in Swedish",
                        "en": "Additional price information in English",
                        "ru": "Additional price information in Russian",
                        "zh_hans": "Additional price information in Chinese",
                        "ar": "Additional price information in Arabic"
                    },
                    "price": {
                        "fi": "15",
                        "sv": "15",
                        "en": "15",
                        "ru": "15",
                        "zh_hans": "15",
                        "ar": "15"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384956,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T14:40:49.462863Z",
                    "last_modified_time": "2026-06-04T14:40:49.462877Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17",
                    "name": "Caption",
                    "cropping": "",
                    "photographer_name": "Image credit",
                    "alt_text": "Image alt text",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384956/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Name of video",
                    "url": "https://video.url.com",
                    "alt_text": "Video alt text"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?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:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "created_time": "2026-06-04T14:40:50.369307Z",
            "last_modified_time": "2026-06-04T14:40:50.369345Z",
            "date_published": "2026-06-04T14:39:21Z",
            "start_time": "2026-09-30T09:19:00Z",
            "end_time": "2026-09-30T11:19:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 12,
            "audience_max_age": 55,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 15,
            "enrolment_start_time": "2026-09-01T08:00:00+03:00",
            "enrolment_end_time": "2026-09-27T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] - Staging Testing 4.6.2026",
                "sv": "Event title in Swedish",
                "en": "Event title in English",
                "ru": "Event title in Russian",
                "zh_hans": "Event title in Chinese",
                "ar": "Event title in Arabic"
            },
            "location_extra_info": {
                "fi": "Venue location information in Finnish",
                "sv": "Venue location information in Swedish",
                "en": "Venue location information in English",
                "ru": "Venue location information in Russian",
                "zh_hans": "Venue location information in Chinese",
                "ar": "Venue location information in Arabic"
            },
            "provider": {
                "fi": "Event organizer in Finnish",
                "sv": "Event organizer in Swedish",
                "en": "Event organizer in English",
                "ru": "Event organizer in Russian",
                "zh_hans": "Event organizer in Chinese",
                "ar": "Event organizer in Arabic"
            },
            "short_description": {
                "fi": "Short description in Finnish (up to 160 characters)",
                "sv": "Short description in Swedish (up to 160 characters)",
                "en": "Short description in English (up to 160 characters)",
                "ru": "Short description in Russian (up to 160 characters)",
                "zh_hans": "Short description in Chinese (up to 160 characters)",
                "ar": "Short description in Arabic (up to 160 characters)"
            },
            "info_url": {
                "fi": "https://tapahtumat.hel.fi",
                "sv": "https://tapahtumat.hel.se",
                "en": "https://tapahtumat.hel.eng",
                "ru": "https://tapahtumat.hel.ru",
                "zh_hans": "https://tapahtumat.hel.chi",
                "ar": "https://tapahtumat.hel.ara"
            },
            "description": {
                "fi": "<div><p>[TLDG] - Staging Testing 4.6.2026</p></div>",
                "sv": "<div><p>Event description in Swedish<br>&nbsp;</p></div>",
                "en": "<div><p>Event description in English<br>&nbsp;</p></div>",
                "ru": "<div><p>Event description in Russian<br>&nbsp;</p></div>",
                "zh_hans": "<div><p>Event description in Chinese<br>&nbsp;</p></div>",
                "ar": "<div><p>Event description in Arabic<br>&nbsp;</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6c992a40-7936-4423-9221-fb2a73807733/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:8553c3b7-3328-f111-8341-000d3a6746a9",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?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:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cd8eb2d6-1e44-456e-9e12-42f18d4a6b38/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [
                {
                    "name": "extlink_youtube",
                    "link": "https://yt.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_instagram",
                    "link": "https://ig.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_whatsapp",
                    "link": "https://wa.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_facebook",
                    "link": "https://face.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_snapchat",
                    "link": "https://sc.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_reddit",
                    "link": "https://reddid.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tumblr",
                    "link": "https://tumblr.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_twitter",
                    "link": "https://x.com",
                    "language": "fi"
                },
                {
                    "name": "extlink_tiktok",
                    "link": "https://tt.com",
                    "language": "fi"
                }
            ],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=TLDG__Staging_Testing14812337710",
                        "sv": "https://tapahtumat.hel.se",
                        "en": "https://tapahtumat.hel.eng",
                        "ru": "https://tapahtumat.hel.ru",
                        "zh_hans": "https://tapahtumat.hel.chi",
                        "ar": "https://tapahtumat.hel.ara"
                    },
                    "description": {
                        "fi": "Additional price information in Finnish",
                        "sv": "Additional price information in Swedish",
                        "en": "Additional price information in English",
                        "ru": "Additional price information in Russian",
                        "zh_hans": "Additional price information in Chinese",
                        "ar": "Additional price information in Arabic"
                    },
                    "price": {
                        "fi": "15",
                        "sv": "15",
                        "en": "15",
                        "ru": "15",
                        "zh_hans": "15",
                        "ar": "15"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 2384955,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T14:39:39.391265Z",
                    "last_modified_time": "2026-06-04T14:39:39.391296Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/398f83e9-b2ee-ef11-9341-6045bde0ef17",
                    "name": "Caption",
                    "cropping": "",
                    "photographer_name": "Image credit",
                    "alt_text": "Image alt text",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384955/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [
                {
                    "name": "Name of video",
                    "url": "https://video.url.com",
                    "alt_text": "Video alt text"
                }
            ],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ar/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/en/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/et/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/so/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/sv/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/tr/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/zh_hans/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10595/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:kulttuuri/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/matko:teatteri/?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:p12297/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13050/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p143/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p23886/?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:p2445/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25261/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3670/?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:p556/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7642/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7969/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9270/?format=api"
                }
            ],
            "created_time": "2026-03-25T10:21:13.435012Z",
            "last_modified_time": "2026-06-04T14:39:42.232991Z",
            "date_published": "2026-03-25T10:16:50Z",
            "start_time": "2026-09-30T09:19:00Z",
            "end_time": "2026-09-30T11:19:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 12,
            "audience_max_age": 55,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 150,
            "minimum_attendee_capacity": 15,
            "enrolment_start_time": "2026-09-01T08:00:00+03:00",
            "enrolment_end_time": "2026-09-27T08:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "[TLDG] - Staging Testing",
                "sv": "Event title in Swedish",
                "en": "Event title in English",
                "ru": "Event title in Russian",
                "zh_hans": "Event title in Chinese",
                "ar": "Event title in Arabic"
            },
            "location_extra_info": {
                "fi": "Venue location information in Finnish",
                "sv": "Venue location information in Swedish",
                "en": "Venue location information in English",
                "ru": "Venue location information in Russian",
                "zh_hans": "Venue location information in Chinese",
                "ar": "Venue location information in Arabic"
            },
            "provider": {
                "fi": "Event organizer in Finnish",
                "sv": "Event organizer in Swedish",
                "en": "Event organizer in English",
                "ru": "Event organizer in Russian",
                "zh_hans": "Event organizer in Chinese",
                "ar": "Event organizer in Arabic"
            },
            "short_description": {
                "fi": "Short description in Finnish (up to 160 characters)",
                "sv": "Short description in Swedish (up to 160 characters)",
                "en": "Short description in English (up to 160 characters)",
                "ru": "Short description in Russian (up to 160 characters)",
                "zh_hans": "Short description in Chinese (up to 160 characters)",
                "ar": "Short description in Arabic (up to 160 characters)"
            },
            "info_url": {
                "fi": "https://tapahtumat.hel.fi",
                "sv": "https://tapahtumat.hel.se",
                "en": "https://tapahtumat.hel.eng",
                "ru": "https://tapahtumat.hel.ru",
                "zh_hans": "https://tapahtumat.hel.chi",
                "ar": "https://tapahtumat.hel.ara"
            },
            "description": {
                "fi": "<div><p>Event description in Finnish</p></div>",
                "sv": "<div><p>Event description in Swedish<br>&nbsp;</p></div>",
                "en": "<div><p>Event description in English<br>&nbsp;</p></div>",
                "ru": "<div><p>Event description in Russian<br>&nbsp;</p></div>",
                "zh_hans": "<div><p>Event description in Chinese<br>&nbsp;</p></div>",
                "ar": "<div><p>Event description in Arabic<br>&nbsp;</p></div>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:8553c3b7-3328-f111-8341-000d3a6746a9/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpjftxnui",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-28T16:42:17.396704Z",
                    "last_modified_time": "2025-12-18T11:11:36.169680Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/976b1358-e3d1-4193-bfb1-8fea495e3ce4.png",
                    "name": "",
                    "cropping": "94,0,468,375",
                    "photographer_name": "",
                    "alt_text": "kuva päiväkirjan sivusta jota on koristeltu piirtäen kukkia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:26:19.504955Z",
            "last_modified_time": "2026-06-04T12:26:19.504971Z",
            "date_published": null,
            "start_time": "2025-09-11T14:00:00Z",
            "end_time": "2026-08-26T12:22:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "VITRIININÄYTTELY: Art Journal - Taidepäiväkirjatyöpaja"
            },
            "location_extra_info": {
                "fi": "Vitriini"
            },
            "provider": null,
            "short_description": {
                "fi": "Näyttelyssä taidepäiväkirjatyöpajan tuotoksia"
            },
            "info_url": null,
            "description": {
                "fi": "TAIDENÄYTTELYSSÄ Art Journal - Taidepäiväkirjatyöpajan osallistujien taidetta<p><strong> Entressen kirjasto Vitriini Estradilla</strong></p><p>Näyttelyssä esillä työpajan osallistujien taidetta ja päiväkirjan sivuja. Ryhmä jatkuu taas syksyllä, jos kiinnostuit taidemuodosta; lämpimästi tervetuloa osallistumaan.</p><p><br></p><p>Taidepäiväkirjatyöpajassa työstetään taidepäiväkirjaa kuvan ja tekstin kautta. Taidepäiväkirjoissa hyödynnetään paljon kierrätysmateriaaleja. Materiaalit, myös päiväkirjapohjan, saat kirjastosta. Tai ota omat materiaalit mukaan.&nbsp;</p><p>Tämä tapahtumasarja on osa kirjaston ohjelmaa ja toteutettu asiakkaiden toiveiden pohjalta – tule kokemaan uusia tapoja aistia kirjallisuutta.</p><p><br></p><p>Järjestäjä: Kirjasto</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjftxnui/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69101",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/gaala-podcast/"
                    },
                    "description": null,
                    "price": {
                        "fi": "35 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-02T07:14:28.583181Z",
                    "last_modified_time": "2026-06-02T07:14:28.583195Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793269.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-02T07:14:28.478639Z",
            "last_modified_time": "2026-06-04T12:13:58.249433Z",
            "date_published": null,
            "start_time": "2026-11-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Gaala Liveshow (lisäkeikka)"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "All Day Entertainment Oy"
            },
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/764B8A75C339D42F77526485CF8DF5F6/Gaala_Liveshow_lisakeikka_"
            },
            "description": {
                "fi": "<p>Gaala Liveshow saa lisäesityksen suuren kysynnän vuoksi! Huippusuosittu Gaala-podcast nousee Savoy-teatterin näyttämölle koko illan liveshow’lla, joka juhlistaa elämää ja ystävyyttä! Päivässä loppuunmyyneen show’n tähtinä säkenöivät rakastetut ystävykset Hennariikka Laaksola, Thelma Siberg ja Valtteri Lehtinen. Illan aikana kuullaan hersyvimmät keskustelut kiusallisista tilanteista tunteikkaimpiin hetkiin. Tyylilleen uskollisesti Gaala jakaa palkintoja mitä yllättävimmissä kategorioissa, ja saattaapa joku yleisön joukostakin päätyä pystin saajaksi!</p><p>Kunniavieraana lavalle nousee Gaala-podcastin arvoisa alkuperäisjäsen – Amelie Blauberg!</p><p>Tervetuloa nauttimaan illasta, rakas kutsuvieras! Elämä on Gaala!</p><p>Gaala on Podimon kuunnelluimpiin ohjelmiin lukeutuva lifestylepodcast, joka on jo vuosien ajan viihdyttänyt kuulijoitaan juhlistaen arjen glamouria.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 45 min, sisältää väliajan</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69244",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://rockcamp.myclub.fi/flow/courses/10799310",
                        "sv": "https://rockcamp.myclub.fi/flow/courses/10799310",
                        "en": "https://rockcamp.myclub.fi/flow/courses/10799310"
                    },
                    "description": null,
                    "price": {
                        "fi": "25€",
                        "sv": "25€",
                        "en": "25€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384953,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T12:13:54.652582Z",
                    "last_modified_time": "2026-06-04T12:13:54.652597Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793483.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384953/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:13:54.514947Z",
            "last_modified_time": "2026-06-04T12:13:54.849676Z",
            "date_published": null,
            "start_time": "2026-09-25T14:00:00Z",
            "end_time": "2026-09-25T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Rock Camp – Musiikkileiri 13–29-v. nuorille",
                "sv": "Rock Camp",
                "en": "Rock Camp"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4162B184831D41D1334129262A00F3A3/Rock_Camp",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4162B184831D41D1334129262A00F3A3/Rock_Camp",
                "en": "http://www.malmitalo.fi/en/events/event/4162B184831D41D1334129262A00F3A3/Rock_Camp"
            },
            "description": {
                "fi": "<p>Oletko 13–29-vuotias ja kiinnostunut musiikista? Tule mukaan syksyn Rock Camp -päiväleirille Helsingin Malmitalolle 25.–27.9.2026!</p><p>Leiri järjestetään yhteistyössä Helsingin kaupungin ja Rock Camp Ry:n kanssa. Leirin aikana tapaat uusia kavereita, joita yhdistää sama intohimo musiikkiin, opit uutta ja pääset soittamaan bändissä kokeneiden valmentajien johdolla. Ei väliä, oletko vasta aloittamassa soittamista vai jo kokenut, meidän leirillä kaikki saavat loistaa!</p><p>Osallistumismaksu: 25 €<br><a href=\"https://rockcamp.myclub.fi/flow/courses/10799310\"><u>Ilmoittaudu leirille tämän linkin kautta 11.9. mennessä</u></a>. Mukaan mahtuu 20 osallistujaa.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69243",
            "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: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: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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/",
                        "sv": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/",
                        "en": "https://www.lippu.fi//artist/tuulajapirkko/tuula-ja-pirkko-meil-on-aina-toro-4151910/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384951,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T12:13:53.193699Z",
                    "last_modified_time": "2026-06-04T12:13:53.193717Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793566.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384951/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T12:13:53.071607Z",
            "last_modified_time": "2026-06-04T12:13:53.342967Z",
            "date_published": null,
            "start_time": "2026-09-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tuula ja Pirkko: Meil on aina Toro",
                "sv": "Tuula ja Pirkko: Meil on aina Toro",
                "en": "Tuula ja Pirkko: Meil on aina Toro"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro",
                "en": "http://www.kanneltalo.fi/en/events/event/F02EF3752FAEF588EA2F481E1FC08982/Tuula_ja_Pirkko_Meil_on_aina_Toro"
            },
            "description": {
                "fi": "<p>Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta.</p><p>He eivät oikeastaan juuri pidä toisistaan, mutta jostain tuntemattomasta syystä he ovat viettäneet koko elämänsä hyvin tiiviisti yhdessä. Toisin kuin vanhuksista ehkä yleensä luullaan, ikä ei ole jalostanut heitä seesteiseen suuntaan. Päinvastoin. Tuula rakastaa Cindy Crawfordia ja turvavälejä, Pirkko ei anna arvoa lastenlastensa savitöille eikä piirustuksille, eikä hän edelleenkään osaa leipoa. Tuula ja Pirkko on jätetty hankalan luonteensa vuoksi koronakaranteenin rauhaan jo hyvän aikaa sitten, ja siksi heillä on kaikki maailman aika elellä elämäänsä juuri niin kuin he itse lystäävät.</p><p>Erinäisten sattumien jälkeen Tuula ja Pirkko päättävät karistaa pölyt matkalaukuistaan, suunnata maalliset tomumajansa Finavian lippuluukulle, maksaa lentoveronsa kenties viimeisen kerran ja suunnistaa kohti Fuengirolan aurinkoista costaa. Eikä aikaakaan, kun Toron varjossa käydään tähänastisen elämän ehkä tärkeimmät keskustelut. Tällä matkalla saavat kyytiä niin Tuulan ja Pirkon tyttärien luutuneet asenteet äitejään kohtaan, kuin patriarkaattinen machokulttuurikin. Löytyykö Fugen rannalta romanssi, ökyjahti vai Sean Conneryn rintakarva?</p><p>Esitys on kunnianosoitus hömelöydelle, elämänilolle, vapaalle tahdolle, tajunnanvirralle, omaehtoisuudelle, tyhmille jutuille, unelmille, ihmisyydelle, ihmisen lajityypilliselle tarpeelle valloittaa tuntemattomia alueita sekä itsemääräämisoikeuden tärkeydelle.</p><p>Käsikirjoitus, ohjaus ja kaikki roolit: Ria Kataja ja Minna Kivelä<br>Valosuunnittelu: Niina Sivén<br>Äänisuunnitelu: Esko Paavola</p><p>Tuula ja Pirkko nähtiin ensimmäisen kerran Pentti Järvisen käsikirjoittamassa esityksessä Punkkuelämää, johon he saapuivat Rian ja Minnan ideoimina ensi-illan jälkeen. Sen jälkeen Tuula ja Pirkko ovat tehneet myös 9-osaisen komediasarjan ”Kahden markan mummot – todella karmeeta-show”.</p><p>Kesto: noin 2,5 t sis. väliajan.<br>Ikäsuositus 15 v.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69243/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68463",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1816477,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-14T11:25:38.950309Z",
                    "last_modified_time": "2026-04-14T11:25:38.950324Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786177.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816477/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-14T11:25:38.715015Z",
            "last_modified_time": "2026-06-04T12:13:47.693404Z",
            "date_published": null,
            "start_time": "2026-08-20T13:00:00Z",
            "end_time": "2026-08-20T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Taiteiden yö: Lala Salama, Juhlat ja työpajoja – Malmin tapahtumakesä 2026",
                "sv": "Konstens natt: Lala Salama, Juhlat och verkstäder – Malms evenemangssommar 2026",
                "en": "The Night of the Arts: Lala Salama, Juhlat and workshops – Malmi Summer of Events 2026"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!",
                "sv": "Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!",
                "en": "The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Taiteiden_yo_Lala_Salama_Juhlat_ja_tyopajoja",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/Konstens_natt_Lala_Salama_Juhlat_och_verkstader",
                "en": "http://www.malmitalo.fi/en/events/event/7FB4C1FEBDB4D8C8D205003F9D5BB374/The_Night_of_the_Arts_Lala_Salama_Juhlat_and_workshops"
            },
            "description": {
                "fi": "<p>Taiteiden yössä painetaan kangaskasseja, juhlitaan indiepopin tahdissa ja koetaan illan huipentava rock jyräys Lala Salaman kanssa!</p><p><b>Aikataulu</b><br><b>Torstai 20.8. Taiteiden yö: Lala Salama, Juhlat ja työpajoja</b>\t<br>16.00–18.00 Yksin hanke: Kangaskassien painatusta <br>16.00–19.00 Työväenopisto: Hippiäisestä muurahaisten poluille - maalaa elonkirjoa kasviväreillä!<br>16.00–19.00 Työväenopisto: Heijastintyöpaja<br>16.00–17.00 Työväenopisto: Kesän muistoja -yhteislaulut<br>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Päivän ohjelma<br>klo 16.00–18.00 Yksin hanke: Kangaskassien painatusta</b><br>Taiteiden yössä pääsee painamaan omia kangaskasseja rennossa ja luovassa työpajassa. Tule tekemään ja viihtymään!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>klo 17.00–18.00 Juhlat</b><br>Suomen kiinnostavimpiin indieyhtyeisiin lukeutuva Juhlat ammentaa melodiseen kitarapopiinsa 2000 luvun alun radiohiteistä, skandinaavisesta melankoliasta ja amerikkalaisesta aikuisrockista.<br>Vuonna 2025 julkaistu toinen albumi Yöllä taivas kaatuu keräsi ylistäviä arvioita ja toi yhtyeelle Indie Awards  ehdokkuuksia. Yhtye on nähty muun muassa Provinssissa, Ruisrockissa ja Tavastialla.</p><p><b>klo 19.00–20.00 Lala Salama</b><br>Lala Salama on dynaaminen rock trio, jonka ilmaisussa yhdistyvät anteeksipyytelemätön herkkyys ja jyrähtelevä särö. Kansainvälistä kulttimainetta kerännyt yhtye tunnetaan intensiivisistä keikoistaan ja vahvasta yhteydestä yleisöön.</p><p>Kokoonpano:<br>Rosa Jules – kitara, laulu<br>Aliisa Keränen – rummut, taustalaulut<br>Elli Holmström – basso, taustalaulut</p><p>Tapahtumiin on vapaa pääsy!</p>",
                "sv": "<p>Under Konstens natt trycker man tygkassar, firar i takt till indiepop och upplever kvällens kulminering med rockdundret Lala Salama!</p><p><b>Tidtabell</b><br>16.00–18.00 Yksin-projekt: Tryck på tygkasse<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja<br>17.00-18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Dagens program<br>klo 16.00–18.00 Yksin-projektet: Tryck på tygkasse</b><br>Under Konstens natt kan man trycka egna tygkassar i en lättsam och kreativ verkstad. Kom med och tillverka och trivas!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>kl. 17.00–18.00 Juhlat</b><br>Juhlat, som är en av Finlands intressantaste indiegrupper, inhämtar inspiration från 2000-talets radiohits, skandinavisk melankoni och amerikansk vuxenrock till sin melodiska gitarrpop.<br>Deras andra album, Yöllä taivas kaatuu, som släpptes 2025, fick strålande recensioner och gav bandet Indie Awards-nomineringar. Bandet har bland annat setts på Provinssirock, Ruisrock och Tavastia.</p><p><b>kl. 19.00–20.00 Lala Salama</b><br>Lala Salama är en dynamisk rocktrio vars uttryck kombinerar en oförställd känslighet med en dundrande skärpa. Bandet med internationellt kultrykte är känt för sina intensiva spelningar och för sin starka kontakt med publiken.</p><p>Sammansättning:<br>Rosa Jules – gitarr, sång<br>Aliisa Keränen – trummor, bakgrundssång<br>Elli Holmström - bas, körsång</p><p>Evenemangen har fritt inträde!</p>",
                "en": "<p>The Night of the Arts will be a night of printing tote bags, partying to indie pop and a rockin' good time with Lala Salama!</p><p><b>Schedule</b><br>16.00–18.00 Yksin (‘Alone’) project: Printing tote bags<br>16-17 Työväenopisto: Kesän muistoja -yhteislaulut<br>16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla <br>16-19 Työväenopisto: Heijastintyöpaja</p><p>17.00–18.00\tJuhlat<br>19.00–20.00\tLala Salama</p><p><b>Programme of the day<br>16.00–18.00 Yksin project: Printing tote bags</b><br>The Night of the Arts lets you print your own tote bags in a relaxed and creative workshop. Get creative and have fun!</p><p>klo 16-19 Työväenopisto: Maalauksia kahvilla ja mustikalla<br> <br>Klo 16-19 Työväenopisto: Heijastintyöpaja<br> <br>Klo 16-17 Työväenopisto: Kesän muistoja -yhteislaulut</p><p><b>17.00–18.00 Juhlat</b><br>Juhlat, one of Finland's most interesting indie bands, draws inspiration for its melodic guitar pop from early 21st century radio hits, Scandinavian melancholy and American grown-up rock.<br>Their second album, Yöllä taivas kaatuu, was released in 2025, garnering rave reviews and even earning the band Indie Awards nominations. The band has performed in festivals such as Provinssi and Ruisrock and at Tavastia.</p><p><b>19.00–20.00 Lala Salama</b><br>Lala Salama is a dynamic rock trio whose expression combines unapologetic vulnerability with harsher edges. The band, which has built up an international cult following, is known for its intense live performances and strong connection with the audience.</p><p>Line-up:<br>Rosa Jules – guitar, vocals<br>Aliisa Keränen – drums, backing vocals<br>Elli Holmström – bass, backing vocals</p><p>Entry to the events is free of charge!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68463/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpd6vh4b4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2201331,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-19T08:05:52.260454Z",
                    "last_modified_time": "2026-05-19T08:05:52.260467Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/4b7f190c-20a6-46af-b1f9-a8376cd63cd0.png",
                    "name": "",
                    "cropping": "336,0,1200,864",
                    "photographer_name": "Sanna Korkelainen",
                    "alt_text": "vinyylileikkurin materiaalirullia ja kangaskasseja, pride sateenkaari",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2201331/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-19T08:13:04.740100Z",
            "last_modified_time": "2026-06-04T11:09:30.815005Z",
            "date_published": null,
            "start_time": "2026-06-11T13:00:00Z",
            "end_time": "2026-06-11T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kangaskassipaja",
                "sv": "Tygpåseverkstad",
                "en": "Tote bag workshop"
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Verkstad",
                "en": "Maker Space"
            },
            "provider": {
                "fi": "Kirjasto",
                "sv": "Biblioteket",
                "en": "Library"
            },
            "short_description": {
                "fi": "tule tuunaamaan pride teemainen kangaskassi",
                "sv": "Kom och dekorera en tygkasse med Pride-tema",
                "en": "Come design a Pride-themed tote bag"
            },
            "info_url": {
                "fi": "https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride",
                "sv": "https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride",
                "en": "https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride"
            },
            "description": {
                "fi": "Kangaskassipaja<p><strong>To 11.6.2026 klo 16-18 | Entressen kirjaston paja</strong></p><p><strong>Tote-ally Proud - Ylpeydellä Kannettu</strong></p><p>Haluatko tulla tuunaamaan omia vaatteitasi tai kulkuelippua? Teemme pajassa vinyylileikkurilla värikkäitä silitettäviä kuvioita kankaalle. 50 ensimmäiselle kangaskassi kirjastolta.</p><p>Pajassa voi tehdä myös tarroja! </p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p>",
                "sv": "Tygkasseverkstad&nbsp;<p><strong>Torsdag 11 juni 2026 kl. 16–18 | Verkstaden på Entressen-biblioteket</strong></p><p><strong>Tote-ally Proud – Bär med stolthet</strong></p><p>Vill du komma och piffa upp dina egnakläder eller din flagga? I verkstaden skapar vi färgglada, strykbara mönster på tyg med hjälp av en vinylskärare. De 50 första får en tygkasse från biblioteket.</p><p>I verkstaden kan man också göra klistermärken!&nbsp;</p><p>Esbo stad är i år partner till Helsingfors Pride inom ramen för Working with Pride. Läs mer om programmet för Pride-månaden i Esbos bibliotek och hela Esbo stad på Esbo stads Pride-sida <a href=\"https://www.espoo.fi/sv/staden-och-beslutsfattandet/esbo-stad-x-helsinki-pride\">Esbo stad x Helsingfors Pride | Esbo stad&nbsp;</a></p>",
                "en": "Tote Bag Workshop&nbsp;<p><strong>Thu, June 11, 2026, 4:00–6:00 p.m. | Entresse Library Workshop</strong></p><p><strong>Tote-ally Proud – Carried with Pride</strong></p><p>Would you like to come and customize your own clothes or flags? In this workshop, we’ll use a vinyl cutter to create colorful iron-on designs on fabric. The first 50 participants will receive a tote bag from the library.</p><p>You can also make stickers at the workshop!&nbsp;</p><p>This year, the City of Espoo is a “Working with Pride” partner of Helsinki Pride. Read more about the Pride Month program for Espoo libraries and the entire City of Espoo on the City of Espoo’s Pride page: <a href=\"https://www.espoo.fi/en/city-and-decision-making/city-espoo-x-helsinki-pride\">City of Espoo x Helsinki Pride | City of Espoo&nbsp;</a></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpd6vh4b4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpgslee6y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-05-27T10:20:41.415348Z",
                    "last_modified_time": "2026-05-27T10:20:41.415366Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/051f5a6b-ba74-4875-8540-b97ae1ee9ab4.png",
                    "name": "",
                    "cropping": "1036,0,3111,2074",
                    "photographer_name": "Canva",
                    "alt_text": "piirroskuvat hamsteri, siili, sammakko katsoo yhdessä elokuvaa syöden poppareita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-27T10:21:25.621777Z",
            "last_modified_time": "2026-06-04T11:08:02.340980Z",
            "date_published": null,
            "start_time": "2026-06-05T14:30:00Z",
            "end_time": "2026-06-05T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Queer-kino leffailta (K-7)"
            },
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "provider": null,
            "short_description": {
                "fi": "Tule mukaan katsomaan leffaa kirjastolle!"
            },
            "info_url": null,
            "description": {
                "fi": "Queer-kino leffailta (K-7)<p>Perjantaina 5.6. Entressen kirjaston sinisessä huoneessa klo 17.30-19.30</p><p>Tule mukaan katsomaan leffaa kirjastolle!</p><p><br></p><p>Espoon kaupunki on tänä vuonna Helsinki Priden Working with Pride -kumppani. Lue lisää Espoon kirjastojen sekä koko Espoon kaupungin Pride-kuukauden ohjelmasta Espoon kaupungin Pride-sivulta <a href=\"https://www.espoo.fi/fi/kaupunki-ja-paatoksenteko/espoon-kaupunki-x-helsinki-pride\">Espoon kaupunki x Helsinki Pride | Espoon kaupunki&nbsp;</a></p><p><br></p><p>Tapahtuman järjestää kirjasto</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpgslee6y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpjeyby7i",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 2384948,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-06-03T07:18:06.469218Z",
                    "last_modified_time": "2026-06-03T07:18:06.469231Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/43f9d634-4a3d-4e30-bd32-51adf8c5a3be.jfif",
                    "name": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "cropping": "46,0,229,183",
                    "photographer_name": "",
                    "alt_text": "Ilmaisia Kuvia : lelu, hauska, pelit, viihde, gesellschaftsspiel,",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-06-04T10:50:17.954509Z",
            "last_modified_time": "2026-06-04T10:56:25.666973Z",
            "date_published": null,
            "start_time": "2026-06-10T10:00:00Z",
            "end_time": "2026-06-10T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lautapelikerho"
            },
            "location_extra_info": {
                "fi": "Lasten osasto"
            },
            "provider": null,
            "short_description": {
                "fi": "Tapahtuma on tarkoitettu alakoululaisille."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tapahtuma on tarkoitettu alakoululaisille. Se pidetään Lastenosastossa. Vapaa pääsy.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpjeyby7i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69223",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/we-jazz-presents-bill-frisell-trio-us-4171788/"
                    },
                    "description": null,
                    "price": {
                        "fi": "59-79 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T09:13:54.963613Z",
                    "last_modified_time": "2026-06-04T09:13:54.963629Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793529.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-04T09:13:54.600072Z",
            "last_modified_time": "2026-06-04T09:13:55.156883Z",
            "date_published": null,
            "start_time": "2027-02-16",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "We Jazz presents: BILL FRISELL TRIO (US)"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "We Jazz Oy"
            },
            "short_description": {
                "fi": "Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4F8661641CE7F07C4F551F5AA5B40563/We_Jazz_presents_BILL_FRISELL_TRIO_US_"
            },
            "description": {
                "fi": "<p>Rakastettu Bill Frisell Trio palaa Suomeen helmikuussa 2027</p><p><b>Legendaarinen amerikkalaiskitaristi Bill Frisell palaa Suomeen 16.2.2027 ja esiintyy Helsingin Savoy-teatterissa triokokoonpanonsa kanssa. Edellisellä kerralla Helsingin-konserttinsa loppuunmyynyt Bill Frisell Trio tuo kitaristin yhteen basisti Thomas Morganin ja rumpali Rudy Roystonin kanssa, ja kolmikon pitkään hioutunut yhtyessoitto on konserttitilanteessa maagista kuultavaa.</b></p><p>Maailman arvostetuimpiin jazz-yhtyeisiin lukeutuva <b>Bill Frisell Trio</b> palaa Helsinkiin ja esiintyy tiistaina 16.2. Savoy-teatterissa. Kitaristi <b>Bill Frisellin</b>, basisti <b>Thomas Morganin</b> ja rumpali <b>Rudy Roystonin</b> muodostama kokoonpano on tunnettu taianomaisen intensiivisistä konserteistaan, jossa musiikki soljuu ajatuksen lailla jo pitkään yhdessä musisoineen kokoonpanon kuljettaessa tarinaa. Vuonna 2020 julkaistu albumi <i>Valentine</i> (Blue Note Records) on trion mestariteos, ja livenä musiikki löytää saa vielä uusia tasoja. Bill Frisell Trio myi edellisen Helsingin-keikkansa loppuun keväällä 2025, jonka jälkeen yhtyeen paluuta on odotettu innokkaaasti. Tänä vuonna 75-vuotisjuhlakonserttiensa myötä laajasti esiintynyt tyylikkään kitarismin mestari on uransa vedossa ja odotettavissa onkin jopa hurjat odotuksen ylittävä talvinen tiistai-ilta Savoyssa.</p><p>Bill Frisell Trion Helsingin-esiintymisen järjestäjänä toimii helsinkiläinen We Jazz, joka on hiljattain laajentanut toimintaansa levymerkkinsä, lehtensä ja festivaalituotantojensa ohella aktiiviseksi keikkajärjestäjäksi. We Jazz Agency järjestää keikkoja jatkossa säännöllisesti esitellen artisteja, joiden musiikkiin se uskoo. Erityisesti Helsingin keikkatarjonnan piristäminen ympärivuotisesti on We Jazzin fokuksessa.</p><p><i>“With Valentine, Frisell, Royston and Morgan revel in the tight but loose interplay that is a hallmark of the best groups, plying a course as deeply lyrical as it is adventurous. Feels like the beginning of a great adventure.”</i> — AllAboutJazz</p><p><i>\"Kitaristi Bill Frisell soittaa melkein mitä tahansa, mutta kuulostaa silti aina itseltään.\"</i> – Helsingin Sanomat</p><p>Ovet klo 18.00. Showtime vahvistuu myöhemmin.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69223/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69220",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/",
                        "sv": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/",
                        "en": "https://www.lippu.fi/event/will-funk-for-food-a-fistful-of-funk-kanneltalo-21697155/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 € / 15 €",
                        "sv": "24,80 € / 20 € / 15 €",
                        "en": "24,80 € / 20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2384943,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-04T08:13:51.288141Z",
                    "last_modified_time": "2026-06-04T08:13:51.288155Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793522.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384943/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-06-04T08:13:51.178755Z",
            "last_modified_time": "2026-06-04T08:13:51.453857Z",
            "date_published": null,
            "start_time": "2026-10-24T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Will Funk For Food: A Fistful of Funk",
                "sv": "Will Funk For Food: A Fistful of Funk",
                "en": "Will Funk For Food: A Fistful of Funk"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.",
                "en": "One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk",
                "en": "http://www.kanneltalo.fi/en/events/event/6114EEBE6655621C6C513B53F58CFDDB/Will_Funk_For_Food_A_Fistful_of_Funk"
            },
            "description": {
                "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Kanneltaloon suuren suosion saaneen Suomen ensimmäisen locking-katutanssiteoksen.</p><p><i>A Fistful of Funk</i> on katutanssia, absurdia teatteria ja livemusiikkia yhdistelevä englanninkielinen esitys, joka käsittelee ystävyyttä, sukupuoliroolien ja maskuliinisuuden teemoja leikin, huumorin ja virtuoosimaisen katutanssin avulla.</p><p>Teoksessa viisi yksinäistä cowboyta lähtee yhdessä eeppiselle matkalle halki aavikon. Matkalla 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.</p><p>Katutanssityyli <i>locking</i> toimii <i>A Fistful of Funk</i> -teoksen punaisena lankana, josta lähdetään kutomaan yhteyksiä tanssiteatterin ja klovnerian maailmaan. Tästä sopasta syntyy hurmaavan päätön seikkailu, jossa kunkin esiintyjän omintakeisuus ja ainutlaatuisuus ruokkii toisiaan.</p><p>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät pysähdykset, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: <i>characteriin</i> eli tanssijan ominaislaatuun. Western-tyylilajia käytetään ponnahduslautana keskusteluille ystävyyden ja veljeyden teemoista, sekä leikkisästä kilpailusta katutanssikulttuurille ominaisten kaksintaistelujen, eli battlejen muodossa.</p><p>Will Funk For Food on vuonna 2008 perustettu, yksi Suomen kansainvälisesti menestyneimmistä katutanssiryhmistä, joka on erikoistunut locking-tanssityyliin. WFFF tekee tanssilajiaan tunnetuksi Suomessa, ja pyrkii toiminnallaan vakiinnuttamaan katutanssia osaksi suomalaista kulttuuritarjontaa sekä tuomaan iloa ja riemua kaikenikäisille. Tanssiryhmän suurimpia meriittejä ovat kolminkertainen peräkkäinen SM-kulta, sekä esityksiä niin Japanissa, Ranskassa kuin Itämeren takana Ruotsissa. <br> <br>Lavalla nähdään Will Funk For Foodin jäsenistä Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg ja Sami Pajari sekä äänisuunnittelija-muusikko Sebastian Kurtén ja rumpali Elias Ojutkangas.</p><p>Esityskieli: englanti<br>Kesto: 75 min</p>",
                "en": "<p>One of the most prestigious street dance groups in Finland, Will Funk For Food (WFFF), brings to Kanneltalo Finland’s first full-length performance based on the street dance style locking.</p><p>The work is inspired by the hypermasculinity and toxic machismo of western films and the genre's cavalcade of characters. A Fistful of Funk revolves around locking from which it begins to weave connections to the world of contemporary dance theatre.</p><p>The performance dives head-first into one of the main elements of locking dance: character. Ultimately, character is the distinctive feature that separates dancers from each other and contributes to the uniqueness of their individual styles.</p><p>The group seeks to dismantle the masculinity familiar from westerns and explore what masculinity and masculine encounters can be instead. In addition to exploring the themes of friendship and brotherhood, the performance uses the western setting as a platform for playful street dance duels, known as battles in street dance culture.</p><p>Locking, which was originally danced to funk music, was created by African Americans living on the West Coast of the United States in the 1970s. Locking is characterised by precise, sharp pauses and acrobatic tricks, combined with the grooving 'party steps' of the West Coast social dances.</p><p>In addition to locking, the performance utilises the movement language of contemporary dance, physical theatre, and clown techniques. The aim is to create an adventurous, narrative stage where each performer’s originality and uniqueness feed each other.</p><p>Will Funk For Food, founded in 2008, is one of the most internationally successful street dance groups in Finland specialised in locking. WFFF is making locking known in Finland and aims to establish street dance as part of the Finnish cultural scene and bring joy to all ages. The dance group has won three consecutive Finnish Championships and performed internationally in Japan, France, and Sweden.</p><p>The stage will feature Will Funk For Food's Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg and Sami Pajari, as well as sound designer and musician Sebastian Kurtén, and drummer Elias Ojutkangas.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69220/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}