Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19729,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=8",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=6"
    },
    "data": [
        {
            "id": "kulke:67126",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/"
                    },
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491016,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:30.829322Z",
                    "last_modified_time": "2025-10-06T08:14:30.829336Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777291.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491016/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:30.743992Z",
            "last_modified_time": "2025-10-06T08:14:30.939982Z",
            "date_published": null,
            "start_time": "2025-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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "en": "http://www.malmitalo.fi/en/events/event/E226FE68A492369452D8E4DC049879A5/Kino_Helios_Kylla_isa_osaa_Lapissa_S_"
            },
            "description": {
                "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "en": "Kino Helios: Kyllä isä osaa Lapissa (S)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67126/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67125",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491015,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:30.527351Z",
                    "last_modified_time": "2025-10-06T08:14:30.527364Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777290.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491015/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:30.440270Z",
            "last_modified_time": "2025-10-06T08:14:30.647401Z",
            "date_published": null,
            "start_time": "2025-10-24T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt",
                "en": "http://www.malmitalo.fi/en/events/event/D472FC278FA613361FC649A9FC86DCC9/Kino_Helios_After_the_Hunt"
            },
            "description": {
                "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: After the Hunt",
                "sv": "Kino Helios: After the Hunt",
                "en": "Kino Helios: After the Hunt"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67125/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67123",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-after-the-hunt-3997573/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:13:36.046990Z",
                    "last_modified_time": "2025-10-06T07:13:36.047005Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777327.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:35.965360Z",
            "last_modified_time": "2025-10-06T08:14:29.701605Z",
            "date_published": null,
            "start_time": "2025-10-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt",
                "en": "http://www.malmitalo.fi/en/events/event/47265D965843462B4BE0852C6317FA10/Kino_Helios_After_the_Hunt"
            },
            "description": {
                "fi": "<p>Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama.</p><p>Elokuva kertoo yliopistoprofessorista (Julia Roberts), joka joutuu vaikeaan tilanteeseen, kun eräs hänen tähtiluokan opiskelijoistaan (Ayo Edebiri) esittää syytöksen yhtä hänen kollegaansa (Andrew Garfield) kohtaan. Samalla hänen menneisyytensä synkkä salaisuus uhkaa paljastua. After The Hunt on Nora Garrettin käsikirjoittama.</p><p>Ikäraja: ei tiedossa<br>Kesto: 139 min<br>Ensi-ilta: 17.10.2025<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "short_description": {
                "fi": "Visionäärisen elokuvaohjaajan Luca Guadagninon ohjaama After The Hunt on vangitseva psykologinen draama."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: After the Hunt",
                "sv": "Kino Helios: After the Hunt",
                "en": "Kino Helios: After the Hunt"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67122",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-sentimental-value-3997571/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-sentimental-value-3997571/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491014,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:29.313242Z",
                    "last_modified_time": "2025-10-06T08:14:29.313254Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777326.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491014/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:35.593552Z",
            "last_modified_time": "2025-10-06T08:14:29.450779Z",
            "date_published": null,
            "start_time": "2025-10-22T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_",
                "en": "http://www.malmitalo.fi/en/events/event/4FF3F560B646B4D1E3016153E82F3F24/Kino_Helios_Sentimental_value_12_"
            },
            "description": {
                "fi": "<p>Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan.</p><p>Gustav tarjoaa Noralle, teatterinäyttelijälle, roolin elokuvasta, jonka hän toivoo palauttavan hänen uransa kukoistukseen. Kun Nora kieltäytyy, hän saa tietää, että rooli on annettu nuorelle ja innokkaalle Hollywood-tähdelle. Pian sisarusten täytyy selvittää vaikeaa suhdettaan isäänsä ja tulla toimeen amerikkalaisen tähden kanssa, joka sotkeutuu heidän monimutkaisiin perhekuvioihinsa.</p><p>Cannes Grand Prix voittaja Sentimental value -elokuvan on ohjannut Joachim Trier. Pääsosissa Renate Reinsve, Inga Ibsdotter Lilleaas, Stellan Skarsgård ja Elle Fanning.</p><p>Ikäraja: 12<br>Kesto: 135 min<br>Ensi-ilta: 17.10.2025<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Siskokset Nora ja Agnes tapaavat pitkän tauon jälkeen isänsä Gustavin, karismaattisen mutta etäisen entisen elokuvaohjaajan."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Sentimental value (12)",
                "sv": "Kino Helios: Sentimental value (12)",
                "en": "Kino Helios: Sentimental value (12)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66772",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-klubi-illat-vuotalossa-vuotalo-20347688/"
                    },
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1270783,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T09:12:50.049717Z",
                    "last_modified_time": "2025-07-16T09:12:50.049731Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774924.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270783/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-16T09:12:49.992233Z",
            "last_modified_time": "2025-10-06T08:14:28.852824Z",
            "date_published": null,
            "start_time": "2025-10-18T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/45490EEF0DCD18849F191ECA5B9D21BE/Klubi-ilta_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/45490EEF0DCD18849F191ECA5B9D21BE/Klubbkvall_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo",
                "en": "http://www.vuotalo.fi/en/events/event/45490EEF0DCD18849F191ECA5B9D21BE/Club_night_Tomi_Salesvuo_East_Funk_Attack_feat_Sami_Pitkamo"
            },
            "description": {
                "fi": "<p>Rock-Funk juhlaa Vuotalossa!</p><p>Vuotalon klubi-illassa kuullaan tällä kertaa ainutlaatuinen kattaus räjähtävän rytmikästä live-musiikkia!</p><p>Rumpali Tomi Salesvuon East Funk Attack on neljä omaa albumia julkaissut funk-paahtimo Helsingistä. Periksiantamattoman juureva rock-henkinen iskuryhmä on soittanut niin kotimaan kuin ulkomaidenkin klubeilla ja tehnyt keikkoja niin konserttisaleissa kuin kotimaamme festareillakin. Bändin tuorein albumi Rhythm Manifesto IV julkaistiin keväällä 2025.</p><p>Vuotalossa East Funk Attackin kanssa lavalle nousee musiikin monitoimimies, laulaja Sami Pitkämö! Ystävysten ilta irti -teeman keikat saivat mainion suosion pari vuotta sitten niin klubeilla kuin festivaaleillakin eri puolilla Suomea ja teema saa nyt jatkoa!</p><p>Laulaja-kitaristi Sami Pitkämön suuri yleisö tuntee mm. Tanssii Tähtien kanssa TV-ohjelmasta. Sami ja Tomi ovat valinneet erityiseen keikkaohjelmistoon jälleen omia sekä lainakappaleita teemalla ”pelkkää parasta musaa!”. Keikalla kuullaankin Salesvuon East Funk Attack -yhtyeen uuden tuotannon ja Pitkämön sävellysten lisäksi tuttuja hittejä tuhdilla funk-poljennolla yhteisvoimin!</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17:30.</p><p>Kesto: n. 2 t sis. väliajan</p>",
                "sv": "<p>Rock-Funk-fest på Nordhuset!</p><p>Nordhusets klubbkväll kommer den här gången att bjuda på ett unikt urval av explosiv livemusik!</p><p>Trummisen Tomi Salesvuos East Funk Attack är en funkgrupp från Helsingfors som har släppt fyra egna album. Det obevekligt rotade rockbandet har spelat på klubbar i Finland och utomlands, och även uppträtt i konsertsalar och på inhemska festivaler. Bandets senaste album, Rhythm Manifesto IV, släpptes våren 2025.</p><p>På Nordhuset kommer East Funk Attack att få sällskap på scenen av musikens mångsysslare, sångaren Sami Pitkämö! Konserterna på temat ”vänskapens kvällar” var mycket populära för ett par år sedan på klubbar och festivaler runt om i Finland, och nu fortsätter temat!</p><p>Sångaren och gitarristen Sami Pitkämö är känd för den breda allmänheten från TV-programmet Tanssii tähtien kanssa. Sami och Tomi har återigen valt ut egna och inlånade låtar till en speciell konsertrepertoar med temat \"bara den bästa musiken!\". Förutom den nya produktionen av Salesvuos East Funk Attack-band och Pitkämös kompositioner kommer showen också att innehålla välkända hits med en funky kick!</p><p>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 2 timmar inklusive paus</p>",
                "en": "<p>Rock-Funk festivities at Vuotalo!</p><p>This time, the club night at Vuotalo will feature a unique selection of explosively rhythmic live music!</p><p>Drummer Tomi Salesvuo’s East Funk Attack is a funk outfit from Helsinki that has released four albums. The relentlessly rootsy and rocking band has played clubs in Finland and abroad and performed in concert halls and at festivals in Finland. The band’s latest album, Rhythm Manifesto IV, was released in the spring of 2025.</p><p>At Vuotalo, East Funk Attack will be joined on stage by musical all-rounder, singer Sami Pitkämö! The band’s Ystävysten ilta irti (‘Friends’ Night Out’) concert theme was very popular a couple of years ago at clubs and festivals all over Finland, and now that theme will continue!</p><p>Singer and guitarist Sami Pitkämö is known to the general public from the Finnish version of the TV show Dancing with the Stars, among other things. Sami and Tomi have again picked songs of their own as well as covers for this special concert programme, the theme being ‘only the best music!’ In addition to new tunes by Salesvuo’s East Funk Attack band and compositions by Pitkämö, the show will also feature well-known hits performed together with a hefty amount of funk!</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 2 h, incl. intermission</p>"
            },
            "short_description": {
                "fi": "Rock-Funk juhlaa Vuotalossa!",
                "sv": "Rock-Funk-fest på Nordhuset!",
                "en": "Rock-Funk festivities at Vuotalo!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Klubi-ilta: Tomi Salesvuo East Funk Attack feat. Sami Pitkämö",
                "sv": "Klubbkväll:Tomi Salesvuo East Funk Attack feat. Sami Pitkämö",
                "en": "Club night:Tomi Salesvuo East Funk Attack feat. Sami Pitkämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66772/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67131",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-cancel-3997566/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/"
                    },
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491013,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:28.258064Z",
                    "last_modified_time": "2025-10-06T08:14:28.258077Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777288.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491013/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:28.165273Z",
            "last_modified_time": "2025-10-06T08:14:28.381583Z",
            "date_published": null,
            "start_time": "2025-10-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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/458F8F9C92B6BF2B03206FF7F96D565A/Kino_Helios_Cancel_7_"
            },
            "description": {
                "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Cancel (7) – Kino Helios",
                "sv": "Kino Helios: Cancel (7) – Kino Helios",
                "en": "Kino Helios: Cancel (7) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67131/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67121",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-kyllae-isae-osaa-lapissa-3997568/"
                    },
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491012,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:27.228796Z",
                    "last_modified_time": "2025-10-06T08:14:27.228814Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777324.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491012/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:34.087225Z",
            "last_modified_time": "2025-10-06T08:14:27.346896Z",
            "date_published": null,
            "start_time": "2025-10-15T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_",
                "en": "http://www.malmitalo.fi/en/events/event/0849C77AEC0CBFFB51F3DD8C0CEAB339/Kino_Helios_Kylla_isa_osaa_Lapissa_S_"
            },
            "description": {
                "fi": "<p>Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa.</p><p>Menestyselokuvan jatko-osassa isä ja äiti pakenevat jouluvalmisteluja Lappiin, mutta rauha on tipotiessään, kun lapset seuraavat perässä. Kun Jussin uusi tyttöystävä Viktoria paljastuu miljonäärin ainoaksi lapseksi, isä tekee kaikkensa, että perhe tekisi mahdollisimman hyvän vaikutuksen uuteen miniäehdokkaaseen. Kun yllätykset seuraavat toisiaan, isän on laitettava kaikki ”osaamisensa” peliin.</p><p>Ikäraja: S<br>Kesto: 85 min<br>Ensi-ilta: 15.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Kyllä isä osaa Lapissa jatkaa suomalaisten rakastaman perheen elokuvaseikkailuja tällä kertaa Lapissa."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "sv": "Kino Helios: Kyllä isä osaa Lapissa (S)",
                "en": "Kino Helios: Kyllä isä osaa Lapissa (S)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67124",
            "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:29/?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/yso:p16919/?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/kino-helios/kino-helios-cancel-3997566/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-cancel-3997566/"
                    },
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T08:14:26.747055Z",
                    "last_modified_time": "2025-10-06T08:14:26.747068Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777323.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T08:14:26.633105Z",
            "last_modified_time": "2025-10-06T08:14:26.889939Z",
            "date_published": null,
            "start_time": "2025-10-15T12:00:00Z",
            "end_time": "2025-10-15T13:25:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_",
                "en": "http://www.malmitalo.fi/en/events/event/9C86DAE6B72FB391C3546C1A446C7812/Kino_Helios_Cancel_7_"
            },
            "description": {
                "fi": "<p>Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja.</p><p>Puhelimessa on äärimmäisen arkaa sisältöä, joka julki tullessaan johtaisi poikien cäncelöintiin. Pahimmillaan se tuhoaisi heidän jättimäisen suosionsa ja uransa sekä vesittäisi ennennäkemättömän suuren yhteistyödiilin. Kilpajuoksu puhelimen löytämiseksi alkaa, eikä yllättäviltä käänteiltä vältytä. Puhelin on saatava takaisin hinnalla millä hyvänsä. Kriittisen tilanteen keskellä kolmikon on myös punnittava, kumpi on tärkeämpää, ystävyys vai suosio?</p><p>Ikäraja: 7<br>Kesto: 85 min<br>Ensi-ilta: 08.10.2025<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "short_description": {
                "fi": "Santtu joutuu puhelinvarkauden uhriksi, mistä käynnistyy värikäs tapahtumasarja."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Cancel (7) – Kino Helios",
                "sv": "Kino Helios: Cancel (7) – Kino Helios",
                "en": "Kino Helios: Cancel (7) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67124/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66067",
            "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": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/",
                        "en": "https://www.lippu.fi/event/malmitalo-malmijazz-edward-vesala-80-vuotisjuhlakonsertti-malmitalo-20185685/"
                    },
                    "price": {
                        "fi": "20€ / 15 €",
                        "sv": "20€ / 15 €",
                        "en": "20€ / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154483,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T08:13:45.364808Z",
                    "last_modified_time": "2025-07-01T08:13:45.364824Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771401.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154483/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T08:13:45.258066Z",
            "last_modified_time": "2025-10-06T08:14:24.677770Z",
            "date_published": null,
            "start_time": "2025-10-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalan_80-vuotisjuhlakonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/14603469D9CA96FF262801B02452CC19/Edward_Vesalas_80-arsjubileumskonsert",
                "en": "http://www.malmitalo.fi/en/events/event/14603469D9CA96FF262801B02452CC19/Edward_Vesala_s_80th_Anniversary_Concert"
            },
            "description": {
                "fi": "<p>Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.</p><p>Juhlapäivän kunniaksi Sound & Fury toteuttaa juhlakonserttikiertueen, jossa soi Vesalan musiikki. Tämä konsertti tarjoaa ainutlaatuisen tilaisuuden kokea Vesalan sävellykset ja musiikillinen jatkumo livenä alkuperäisten Sound & Fury -yhtyeen jäsenten (ml. Tapani Rinteen) sekä nuorempien muusikoiden esittämänä, jotka jatkavat hänen perintöään.</p><p>Vesalan musiikki, joka yhdistää ainutlaatuisella tavalla jazzia, rockia, klassista, kansanmusiikkia ja improvisaatiota. Se on edelleen yksi Suomen musiikkihistorian ja eurooppalaisen jazzin kulmakivistä, mutta valitettavasti hänen teoksiaan kuulee elävänä nykyisin harvoin – varsinkaan hänen tärkeimmän yhtyeensä Sound & Furyn esittämänä.</p><p><b>Konsertin rakenne ja esiintyjät:</b></p><p><b>1. Osa:</b><br>Tapani Rinne soolona<br>Sound & Fury -yhtyeen jäseniä pienkokoonpanoissa (Vesalan musiikkia)</p><p><b>Väliaika 20 min</b></p><p><b>2. osa:</b><br>Sound & Fury -yhtye kokonaisuudessaan (Vesalan musiikkia Iro Haarlan sovituksina).</p><p><b>Konsertissa esiintyvät muusikot: </b><br>Jorma Tapio (puupuhaltimet)<br>Pepa Päivinen (puupuhaltimet)<br>Tane Kannisto (puupuhaltimet)<br>Eero Savela (trumpetti)<br>Jukka Orma (kitara)<br>Eero Tikkanen (kontrabasso)<br>Ilmari Heikinheimo (rummut, lyömäsoittimet)<br>Tapani Rinne (soolo) feat. Aleksi Myllykoski (livesampling)</p><p>Kesto: 2 t, sis. 20 min väliajan</p>",
                "sv": "<p>I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.</p><p>Till jubileets ära genomför Sound & Fury en festkonsertturné med musik av Vesala. Denna konsert ger en unik möjlighet att uppleva Vesalas kompositioner och musikaliska kontinuitet live med de ursprungliga bandmedlemmarna i Sound & Fury (inkl. Tapani Rinteen) och yngre musiker som för hans arv vidare.</p><p>Vesalas musik kombinerar jazz, rock, klassisk musik, folkmusik och improvisation på ett unikt sätt. Den är fortfarande en av hörnstenarna i Finlands musikhistoria och europeisk jazz, men tyvärr hörs hans verk sällan live nuförtiden – speciellt framförd av hans viktigaste band Sound & Fury.</p><p><b>Konsertens struktur och artister:</b></p><p><b>Del 1:</b><br>Tapani Rinne solo<br>Sound & Furys medlemmar i små sammansättningar (Vesalas musik)</p><p><b>Paus 20 minuter<b/></p><p><b>Del 2:</b><br>Sound & Fury i sin helhet (musik av Vesala arrangerad av Iro Haarla).</p><p><b>Musiker som uppträder i konserten:</b><br>Jorma Tapio (träblåsinstrument)<br>Pepa Päivinen (träblåsinstrument)<br>Tane Kannisto (träblåsinstrument)<br>Eero Savela (trumpet)<br>Jukka Orma (gitarr)<br>Eero Tikkanen (kontrabas)<br>Ilmari Heikinheimo (trummor, slagverk)<br>Tapani Rinne (solo) feat. Aleksi Myllykoski (livesampling)</p><p>Längd: 2 timmar, inklusive paus 20 minuter</p>",
                "en": "<p>This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth.</p><p>To honour the occasion, Sound & Fury is organising a celebratory concert tour featuring Vesala's music. This concert offers a unique opportunity to experience Vesala's compositions and musical continuum live, performed by original members of the Sound & Fury band (incl. Tapani Rinne) and younger musicians who carry on his legacy.</p><p>Vesala's music is a unique blend of jazz, rock, classical, folk and improvisation. It remains one of the cornerstones of Finnish music history and European jazz, although unfortunately his works are rarely heard live these days – especially performed by his main band, Sound & Fury.</p><p><b>Concert programme and performers:</b></p><p><b>Part 1:</b><br>Tapani Rinne performing solo<br>Members of Sound & Fury in smaller groups (music by Vesala)</p><p><b>Intermission 20 min<b/></p><p><b>Part 2:</b><br>The full Sound & Fury band (performing Vesala's music arranged by Iro Haarla).</p><p><b>Musicians performing at the concert:</b><br>Jorma Tapio: woodwinds<br>Pepa Päivinen: woodwinds<br>Tane Kannisto: woodwinds<br>Eero Savela: trumpet<br>Jukka Orma: guitar<br>Eero Tikkanen: double bass<br>Ilmari Heikinheimo: drums, percussion<br>Tapani Rinne: solo, feat. Aleksi Myllykoski (live sampling)</p><p>Duration: 2 hours, incl. a 20-min intermission</p>"
            },
            "short_description": {
                "fi": "Legendaarisen rumpali, säveltäjä & orkesterinjohtaja Edward Vesalan syntymästä tulee kuluneeksi 80 vuotta tänä vuonna.",
                "sv": "I år har det gått 80 år sedan den legendariske trummisen, kompositören och orkesterledaren Edward Vesala föddes.",
                "en": "This year marks the 80th anniversary of the legendary drummer, composer and conductor Edward Vesala's birth."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Edward Vesalan 80-vuotisjuhlakonsertti – MalmiJazz",
                "sv": "Edward Vesalas 80-årsjubileumskonsert – MalmiJazz",
                "en": "Edward Vesala's 80th Anniversary Concert – MalmiJazz"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm3rilo2u",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491022,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:31:01.620209Z",
                    "last_modified_time": "2025-10-06T07:31:01.620226Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/36569179-635d-44ad-b1e1-a102f617962e.jpg",
                    "cropping": "162,0,1118,957",
                    "photographer_name": "",
                    "alt_text": "Duo Capivara ja Raphael Garrido",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491022/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:31:09.729513Z",
            "last_modified_time": "2025-10-06T07:31:09.729532Z",
            "date_published": null,
            "start_time": "2025-10-26T14:00:00Z",
            "end_time": "2025-10-26T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Duo Capivara esittää kiehtovaa musiikkia mm. Brasiliasta, Suomesta ja Japanista.</p><p>Kansainvälisessä duossa on brasilialainen muusikko-tuottaja Gustavo Holanda ja japanilainen pianisti-laulaja Akiko Riippa.</p><p>Tällä kertaa tähtivieraana on brasilialainen kitaravirtuoosi Raphael Garrido. Tervetuloa keikalle!</p>",
                "sv": "<p>Duo Capivara framför fängslande musik från Brasilien, Finland, Japan och andra länder. Den internationella duon består av den brasilianske musikern och producenten Gustavo Holanda och den japanska pianisten och sångerskan Akiko Riippa.</p><p>Denna gång är den brasilianska gitarrvirtuosen Raphael Garrido gästartist.</p><p><br></p><p>Välkommen till konserten!</p>",
                "en": "<p>Duo Capivara plays fascinating music from Brazil, Finland and Japan. A Brazilian musicianproducer Gustavo Holanda and a Japanese pianist-singer Akiko Riippa are in the international duo.</p><p>This time a Brazilian guitar virtuoso Raphael Garrido is their guest. Welcome to the gig!</p>"
            },
            "short_description": {
                "fi": "Duo Capivara esittää kiehtovaa musiikkia mm. Brasiliasta, Suomesta ja Japanista.",
                "sv": "Duo Capivara framför fängslande musik från Brasilien, Finland, Japan och andra länder.",
                "en": "Duo Capivara plays fascinating music from Brazil, Finland and Japan. "
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "name": {
                "fi": "Duo Capivara - konsertti",
                "sv": "Duo Capivara konsert",
                "en": "Duo Capivara concert"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm3rilo2u/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66298",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:758/?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:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3920175",
                        "sv": "https://www.lippu.fi/eventseries/name-3920175",
                        "en": "https://www.lippu.fi/eventseries/name-3920175"
                    },
                    "price": {
                        "fi": "6 € / 0 €",
                        "sv": "6 € / 0 €",
                        "en": "6 € / 0 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1201890,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T08:17:46.573280Z",
                    "last_modified_time": "2025-07-07T08:17:46.573296Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773278.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201890/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T08:17:46.435542Z",
            "last_modified_time": "2025-10-06T07:13:43.842636Z",
            "date_published": null,
            "start_time": "2025-11-29T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00DA54C72207A658A6DA25B725171CF4/LOPPUUNMYYTY_Kate_Pasi_Kulinaarikaaos_-_koko_perheen_sirkusesitys_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00DA54C72207A658A6DA25B725171CF4/SLUTSALD_Kate_Pasi_Kulinaarikaaos_-_en_cirkusforestallning_for_hela_familjen",
                "en": "http://www.kanneltalo.fi/en/events/event/00DA54C72207A658A6DA25B725171CF4/SOLD_OUT_Kate_Pasi_Culinary_Chaos_A_Circus_Show_for_the_Whole_Family"
            },
            "description": {
                "fi": "<p>Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan palavan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi</p><p>Kokkien keittiössä taidokas akrobatia, jongleeraus ja hersyvä komiikka yhdistyvät esitykseksi, jossa mikään ei suju suunnitelmien mukaan – mutta kaikki on herkullista alusta loppuun. Humoristinen ja elämäniloa pulppuava esitys tempaa yleisön mukaansa maailmaan, jossa jauhot pöllyävät ja tavarat lentävät.</p><p>Katerina Repposen ja Pasi Nousiaisen muodostama Kate & Pasi on esiintynyt 15 vuoden aikana yli 25 maassa ympäri maailmaa, aina Kanadasta Japaniin, ja heidän teoksiaan on nähty lähes sadan eri festivaalin ohjelmistossa. Suomessa he ovat tuoneet sirkusta kaikkien ulottuville esiintymällä päiväkodeissa, kouluissa ja leikkipuistoissa, Tanssiteatteri Hurjaruuthin Talvisirkuksessa ja Sirkus Finlandian ohjelmistossa. Kate ja Pasi yhdistävät esityksissään poikkeuksellisella tavalla akrobaattisen taituruuden, vahvuuden, kauneuden ja huumorin.</p><p>Heidän esityksensä ovat saaneet kansainvälistä tunnustusta ja voittaneet palkintoja arvostetuilla sirkusfestivaaleilla muun muassa Saksassa, Latviassa ja Ranskassa.</p><p>Kesto: 45 min<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Työryhmä<br>Ohjaus: Katerina Repponen ja Pasi Nousiainen<br>Esiintyjät: Katerina Repponen ja Pasi Nousiainen<br>Ohjauksellinen apu: Marc Gassot<br>Ohjauksellinen ja dramaturginen apu: Jarkko Lehmus<br>Valosuunnittelu: Jaakko Sirainen<br>Pukusuunnittelu: Riikka Manni<br>Tukijat: Cirko, Tanssiteatteri Hurjaruuth, Kallo Collective, Taiteen edistämiskeskus</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p><p>0–6-vuotiaille vapaa pääsy Valtuusto 150 -esityksiin. Huomioithan esityskohtaiset ikärajasuositukset.</p>",
                "sv": "<p>Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>I kockarnas kök förenas skicklig akrobatik, jonglering och skrattframkallande komik i en föreställning där ingenting går som planerat – men allt är smakligt från början till slut. Den humoristiska och livsglädjefyllda föreställningen drar med sig publiken in i en värld där mjölet yr och sakerna flyger.</p><p>Kate & Pasi, som består av Katerina Repponen och Pasi Nousiainen, har under 15 års tid uppträtt i över 25 länder runt om i världen, allt från Kanada till Japan, och deras verk har setts på nästan hundra olika festivalers program. I Finland har de gjort cirkusen tillgänglig för alla genom att uppträda på daghem, i skolor och lekparker, på Dansteater Hurjaruuths vintercirkus och i Sirkus Finlandias program. Kate och Pasi förenar i sina föreställningar på ett exceptionellt sätt den akrobatiska skickligheten, styrkan, skönheten och humorn. Deras föreställningar har fått internationellt erkännande och vunnit pris på ansedda cirkusfestivaler bland annat i Tyskland, Lettland och Frankrike.</p><p>Längd: 45 min.<br>Åldersrekommendation: 4+<br>Språk: ordlöst</p><p><b>Arbetsgrupp</b><br>Regi: Katerina Repponen och Pasi Nousiainen<br>På scenen: Katerina Repponen och Pasi Nousiainen<br>Hjälp med regin: Marc Gassot<br>Hjälp med regin och dramaturgin: Jarkko Lehmus<br>Ljusdesign: Jaakko Sirainen<br>Kostym: Riikka Manni<br>Stödjare: Cirko, DansteaternHurjaruuth, Kallo Collective, Centret för konstfrämjande</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">HÄR</a></u></p><p>0–6-åringar kan också avgiftsfritt delta i evenemangen Fullmäktige 150. Vänligen observera de föreställningsspecifika åldersgränserna.</p>",
                "en": "<p>A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way.</p><p>In their kitchen, skilful acrobatics, juggling and gleeful comedy blend into a performance where nothing goes according to plan, yet everything is delicious from start to finish. This humorous and joy-filled show whisks the audience off into a world where flour and objects fly around.</p><p>Katerina Repponen and Pasi Nousiainen, the duo behind Kate & Pasi, have performed for 15 years in over 25 countries across the globe, from Canada to Japan, and their works have been seen at nearly a hundred festivals. In Finland, they have brought the circus to everyone's doorstep, performing at daycares, schools and playgrounds, as well as in Dance Theatre Hurjaruuth's Winter Circus and as part of the Sirkus Finlandia programme. Kate and Pasi combine acrobatic mastery, strength, beauty and humour in a truly unique way. Their performances have earned international acclaim and have won awards at prestigious circus festivals in countries such as Germany, Latvia and France.</p><p>Duration: 45 min<br>Recommended age: 4+<br>Language: non-verbal</p><p>Creative team<br>Directed by: Katerina Repponen and Pasi Nousiainen<br>Performers: Katerina Repponen and Pasi Nousiainen<br>Directorial assistance: Marc Gassot<br>Directorial and dramaturgical assistance: Jarkko Lehmus<br>Light design: Jaakko Sirainen<br>Costume design: Riikka Manni<br>Supported by: Cirko, Dance Theatre Hurjaruuth, Kallo Collective and Arts Promotion Centre Finland</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/company-kate-pasi-helsingin-kaupunki-nuorisolippu-kanneltalo-20362423/?affiliate=FSF#tab=\">HERE</a></u></p><p>Children aged 0–6 also get free entry to the Valtuusto 150 events. Please note the age recommendations for each performance.</p>"
            },
            "short_description": {
                "fi": "Vatsan täydeltä naurua! Kulinaarikaaos kutsuu katsojan kahden ruokaan palavan intohimoisesti suhtautuvan, kaoottisuudessaan virtuoosimaisen kokin vieraaksi",
                "sv": "Skratt som känns i hela magen! Kulinaarikaaos bjuder in tittaren att gästa två virtuosa kockar, som är passionerade och kaotiska och som brinner för mat.",
                "en": "A bellyful of laughter! Culinary Chaos invites the audience into the kitchen of two chefs who are passionate about food and virtuosos in their own chaotic way."
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Kate & Pasi: Kulinaarikaaos - koko perheen sirkusesitys",
                "sv": "SLUTSÅLD Kate & Pasi: Kulinaarikaaos - en cirkusföreställning för hela familjen",
                "en": "SOLD OUT Kate & Pasi: Culinary Chaos – A Circus Show for the Whole Family"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66298/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67119",
            "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:29/?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/yso:p16919/?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/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/",
                        "sv": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/",
                        "en": "https://www.lippu.fi/event/kino-helios-gabbyn-nukketalo-elokuva-malmitalo-20749527/"
                    },
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-06T07:13:37.208317Z",
                    "last_modified_time": "2025-10-06T07:13:37.208329Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777362.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:13:37.116334Z",
            "last_modified_time": "2025-10-06T07:13:37.311852Z",
            "date_published": null,
            "start_time": "2025-10-25T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_",
                "en": "http://www.malmitalo.fi/en/events/event/8D3F2BD57196E852F2E9AB8FBE28A67B/Kino_Helios_Gabbyn_nukketalo_-elokuva_S_"
            },
            "description": {
                "fi": "<p>DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu.</p><p>Vuodesta 2021 Netflixillä esitetty Gabbyn nukketalo päästää katsojan kurkistamaan sisälle Gabbyn nukketaloon ja sen suloisten kissahahmojen elämään.<br>Elokuvassa Gabby (sarjasta tuttu Laila Lockhart Kraner) lähtee mumminsa Gigin (nelinkertainen Grammy-voittaja Gloria Estefan) kanssa matkalle ihmeelliseen suurkaupunkiin. Mutta erikoinen kissanainen Vera (Oscar-ehdokas Kristen Wiig) saa käsiinsä Gabbyn kalleimman aarteen eli nukketalon! Gabbyn on saatava kattinsa takaisin ja pelastettava nukketalo, ennen kuin on liian myöhäistä.</p><p>Gabbyn nukketalo -elokuvan ohjaaja on Ryan Crego (sarjojen Vihdoin kotona – Tipin ja Ohon seikkailut ja I Heart Arlo vastaava tuottaja), joka sai lastenohjelmien Emmy-ehdokkuuden elokuvallaan Arlo, Alligaattoripoika. Elokuvan on tuottanut Steven Schweickart, joka on ollut tuottamassa DreamWorks Animationin isoimpia hittejä, kuten elokuvia Näin koulutat lohikäärmeesi, Croodit ja viimeisimpänä Kung Fu Panda 4.</p><p>Elokuvan vastaavia tuottajia ovat Jennifer Twormey ja Traci Paige Johnson, joiden luomaan sarjaan elokuva perustuu. Gabbyn nukketalo -sarja on ollut Netflixillä 63 maassa TV:n kymmenen katsotuimman joukossa, ja siitä on tullut esikouluikäisten ykkösbrändi ympäri maailman.</p><p>Ikäraja: S<br>Kesto: 98 min<br>Ensi-ilta: 10.10.2025<br>Puhuttu suomeksi</p>"
            },
            "short_description": {
                "fi": "DreamWorks Animationin rakastettuun sarjaan pohjautuva elokuvaseikkailu."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios",
                "sv": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios",
                "en": "Kino Helios: Gabbyn nukketalo -elokuva (S) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67119/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66384",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3906489",
                        "sv": "https://www.lippu.fi/eventseries/name-3906489",
                        "en": "https://www.lippu.fi/eventseries/name-3906489"
                    },
                    "price": {
                        "fi": "29 €",
                        "sv": "29 €",
                        "en": "29 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1154816,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-01T09:12:25.993440Z",
                    "last_modified_time": "2025-07-01T09:12:25.993452Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773837.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1154816/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-01T09:12:25.916122Z",
            "last_modified_time": "2025-10-06T07:13:34.850179Z",
            "date_published": null,
            "start_time": "2025-10-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,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4E1D1BA8A81BDCE038250A36640F8D98/LOPPUUNMYYTY_Heli_Laaksonen_Sukkela_runoehtoo_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4E1D1BA8A81BDCE038250A36640F8D98/SLUTSALD_Heli_Laaksonen_Sukkela_runoehtoo_",
                "en": "http://www.kanneltalo.fi/en/events/event/4E1D1BA8A81BDCE038250A36640F8D98/SOLD_OUT_Heli_Laaksonen_Lively_Poetry_Evening"
            },
            "description": {
                "fi": "<p>Helin runoehtoossa vuorottelevat hauskat sanailut, mietteliäät runot ja riipaisevat muistot – lyhyellä lounaismurteella.</p><p><i>”Iha hyvi siit saa selvä, ko vähän keskitty!”</i></p><p>Sanamaija Heli Laaksonen on pakannut taas kirjansa ja reissuvermeensä runoautoon ja lähtee maata kiertämään syksyllä 2025. Hän pystyttää runomajansa Suomen pienille ja suurille lavoille ja pulisee siellä maailmanmenosta, ihmissuhteista, luonnonihmeistä, elämän väreistä. Kädet viuhuvat, kukkaseppel kahisee, iloa hilataan! Illassa vuorottelevat vitsikkäät sattumukset, mietteliäät runot, hauskat sanailut ja riipaisevat muistot. Puoleentoista tuntiin mahtuu kolmen tunnin jutut, kun käyttökielenä on lounaismurre, lyhyt, nopea, konstailematon. Iha hyvi siit saa selvä, ko väh keskitty!  <br> <br>Sukkelan runoehtoon otsikossa piilee kaksi puolta: yleiskielellä sukkela merkitsee nopeaa tai kerkeäjalkaista, lounaismurteissa se tarkoittaa vähän hassua tai kummallista. Kumpiki sopi!  <br> <br>Uusia runoja ja juttujen aiheita on poimittu myös värien maailmasta. Lokakuussa ilmestyvä Ilone – Runoilijan värinkäsityksiä on Heli Laaksosen ja kuvittaja Elina Warstan värirunokirja (Orava-kirjat 2025). Ilosen runot leikkivät kielellä ja kertovat värien olemuksesta, merkityksestä ja vaikutuksista tunteisiin. Edellisestä yhteistyöstään, aakkosrunokirja Aapisesta, työpari sai Finlandia Junior -ehdokkuuden (Otava 2013).  <br> <br>Vaikka runokeikassa on häiveitä stand upista – raumalaisittain pystöhuumorista – yleisöä ei vaivata interaktiivisuudella. Sen verran tietysti päästään vuoropuheluun, että toiverunoja voi mielellään pyytää esittämään. Onhan tekstejä kertynytkin: Heli Laaksosen esikoisrunokirja Pulu uis ilmestyi 25 vuotta sitten, ja kirjoja on kertynyt suomalaisten hyllyihin likemmäs 300 000. Teoksia on ilmestynyt kolmessa eri maassa ja Laaksosen itsensä lukemista äänikirjoista on myönnetty kaksi kultalevyä. Ilonhilaaja-kiertue on Laaksosen kymmenes.  <br> <br>Turun Sanomien kriitikko Annina Karhu summaa esitysten luonteen näin: ”Laaksosen taiteilijahahmo koostuu anarkistisesta runotytöstä, maanläheisestä koti-ihmisestä sekä sympaattisesta kylähullusta.” Hesarin Pirkko Kotirinta tuumaa: ”Laaksosen padassa kypsyy lähiviljelty luomukieli, ravitseva ja makoisa.” Ja Laaksosen Heli meinaa, että: ”Elämä o välil harma ko renki-Jeren arkihousut, eikä joka aamu pal nauruta, pakko myäntä. Mut kysyn kumminki: onk ilosest miälest joskus haitta ollu? No sitä määki! Lähtekä mun föli iloittema elost.” <br> <br>Runokiertueella kulkee mukana myös runsas, hyväntuulinen kirjamyyntipiste. Oi kirjat, niiden rauha ja riemu! Lukemisesta ei voi hellittää, sen tuoma ilo on puhtaimpia iloja!</p><p>Kesto: 1 t 30 min <br>Ikäsuositus: 12 +</p>",
                "sv": "<p>På Helis diktkväll alternerar roliga ordlekar, tankeväckande dikter och nostalgiska minnen – på kortfattad sydvästlig dialekt. ”Iha hyvi siit saa selvä, ko vähän keskitty!” - alltså ”Helt bra förstår man, bara man fokuserar lite”</p><p>Ordkonstnären Heli Laaksonen har packat ner sin bok och sina resekläder i diktbilen och åker runt i landet hösten 2025. Hon reser sin dikthydda på små och stora scener i Finland och pratar om världens gång, relationer, naturfenomen, livets färger. Händerna viftar, blomsterkransen prasslar, glädjen bubblar! Under kvällen växlar skojiga händelser, fundersamma dikter, roliga ordvitsar och gripande minnen om varandra. En och en halv timme rymmer prat för tre timmar, då det sker på sydvästlig dialekt som är kort, snabb och okrusad. Helt bra förstår man, bara man fokuserar lite!</p><p>Rubriken Sukkela runoehtoo har två sidor: på allmän finska betyder ”sukkela” snabb eller kvick, men i de sydvästliga dialekterna betyder det lite lustig eller märklig. Båda passar!</p><p>Nya dikter och teman har plockats även ur färgernas värld. Ilone – Runoilijan värinkäsityksiä som kommer ut i oktober är Heli Laaksonens och illustratören Elina Warstas färgdiktbok (Orava-kirjat 2025). De glada dikterna leker med språket och berättar om färgernas väsen, betydelser och inverkan på känslorna. Från sitt tidigare samarbete, ABC-diktboken Aapinen, nominerades arbetsparet til Finlandia Junior-priset (Otava 2013).</p><p>Även om poesiföreställningen har stänk av stand-up, störs inte publiken genom interaktion. Men så mycket dialog är förstås tillåten så att publiken gärna kan be att få höra sin favoritdikt. Det har ju blivit en del texter: Heli Laaksonens första diktbok Pulu uis kom ut för 25 år sedan och har samlats i fler än 300 000 exemplar på finländarnas hyllor. Verken har getts ut i tre olika länder och de ljudböcker som Laaksonen själv läst in har fått två guldskivor. Turnén Ilonhilaaja är Laaksonens tionde.</p><p>Kritiker Annina Karhu skriver i sin recension i Turun Sanomat att Laaksonens konstnärsfigur består av ”en anarkistisk diktflicka, en jordnära hemmamänniska samt en sympatisk byafåne”. Pirkko Kotirinta från Helsingin Sanomat i sin tur dryftar att Laaksonen ”kokar upp ett närodlat ekologiskt språk i sin gryta, som är närande och smakrikt”. Och Heli Laaksonen själv säger att ”livet ibland är grått som drängens vardagsbyxor och att det inte är skratt varje morgon”. Laaksonen ställer även frågan om ett glatt sinne någon gång varit till skada? Det har det väl inte? Hon vill även bjuda in publiken att njuta av livet tillsammans med henne.</p><p>På diktturnén ser vi även ett bokförsäljningsställe med rikligt utbud och glatt humör. Å, böcker – deras fred och glädje! Det går inte att sluta läsa, dess glädje är en av de renaste!</p><p>Längd: 1 h 30 min <br>Åldersrekommendation 12 +</p>",
                "en": "<p>In Heli's poetry evening, humorous wordplay, thoughtful poems and heart-wrenching memories alternate – all delivered in a short southwestern dialect. \"You can understand it just fine if you only focus a bit!\"</p><p>Wordsmith Heli Laaksonen has once again packed her books and travel gear into her poetry car and will tour the country in autumn 2025. She will set up her poetry hut on Finland's small and large stages alike, chatting about world affairs, human relationships, nature's wonders and the colours of life. Hands fly, flower crowns rustle, joy is hoisted high! The evening features a mix of witty anecdotes, thoughtful poems, humorous wordplay and touching memories. In an hour and a half, you will get three hours' worth of stories, as they will be delivered in the short, quick and unpretentious southwestern dialect. You can understand it just fine if you only focus a bit!</p><p>The Finnish title Sukkela runoehtoo (\"Lively Poetry Evening\") carries a double meaning: in standard Finnish, sukkela means quick or nimble-footed, while in the southwestern dialect, it means slightly funny or quirky. Both meanings fit perfectly!</p><p>New poems and themes have also been drawn from the world of colours. Ilone – Runoilijan värinkäsityksiä is a colour-themed poetry book by Heli Laaksonen and illustrator Elina Warsta, to be published in October (Orava-kirjat, 2025). The poems in Ilone play with language and explore the essence of colours, their meaning and their emotional impact. The duo's previous collaboration, an alphabet poetry book, was nominated for the Finlandia Junior Prize (Otava, 2013).<br> <br>Although Heli's poetry performances contain elements of stand-up comedy, the audience is not burdened with interaction. Still, some dialogue is welcome: audience members are encouraged to request their favourite poems. After all, she certainly has produced plenty of them: Heli Laaksonen's debut poetry collection Pulu uis was published 25 years ago, and nearly 300,000 copies of her books have found their way onto Finnish bookshelves. Her works have been published in three different countries, and two of her audiobooks, narrated by Laaksonen herself, have received gold records. Ilonhilaaja is Laaksonen's tenth tour.<br> <br>Annina Karhu, a critic from Turun Sanomat, sums up her performances: \"Laaksonen's artistic persona is a mix of an anarchistic poetry girl, a down-to-earth homebody and a sympathetic village eccentric.\" Helsingin Sanomat's Pirkko Kotirinta says: \"Laaksonen cooks with locally grown organic language – nourishing and delicious.\" And Heli Laaksonen herself states: \"Life is sometimes as grey as a farmhand's trousers, and not every morning starts with laughter, I must admit. But I'll ask anyway: has being happy ever done anyone any harm? Exactly! Join me in enjoying life.\"<br> <br>The poetry tour also includes a generous and cheerful book sales booth. Oh, books, their peace and delight! Reading is something you should never give up, as the joy it brings is one of the purest!</p><p>Duration: 1 h 30 min <br>Age recommendation: 12+</p>"
            },
            "short_description": {
                "fi": "Helin runoehtoossa vuorottelevat hauskat sanailut, mietteliäät runot ja riipaisevat muistot – lyhyellä lounaismurteella.",
                "sv": "På Helis diktkväll alternerar roliga ordlekar, tankeväckande dikter och nostalgiska minnen – på kortfattad sydvästlig dialekt. ”Iha hyvi siit saa selvä, ko vähän keskitty!” - alltså ”Helt bra förstår man, bara man fokuserar lite”",
                "en": "In Heli's poetry evening, humorous wordplay, thoughtful poems and heart-wrenching memories alternate – all delivered in a short southwestern dialect. \"You can understand it just fine if you only focus a bit!\""
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Heli Laaksonen: Sukkela runoehtoo",
                "sv": "SLUTSÅLD Heli Laaksonen: Sukkela runoehtoo",
                "en": "SOLD OUT Heli Laaksonen: Lively Poetry Evening"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66384/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agm3qxfnmu",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?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:p360/?format=api"
                }
            ],
            "registration": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/registration/167/?format=api"
            },
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [
                        {
                            "id": 45,
                            "price_group": {
                                "id": 1,
                                "description": {
                                    "fi": "Aikuinen",
                                    "sv": "Vuxen",
                                    "en": "Adult"
                                }
                            },
                            "price": "3.00",
                            "vat_percentage": "25.50",
                            "price_without_vat": "2.39",
                            "vat": "0.61"
                        }
                    ],
                    "info_url": {
                        "fi": "https://linkedregistrations.test.hel.ninja/fi/registration/167/signup-group/create",
                        "sv": "https://linkedregistrations.test.hel.ninja/sv/registration/167/signup-group/create",
                        "en": "https://linkedregistrations.test.hel.ninja/en/registration/167/signup-group/create"
                    },
                    "price": {
                        "fi": "3€"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490991,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-02T09:13:34.945640Z",
                    "last_modified_time": "2025-10-02T09:13:34.945650Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773991.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490991/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-06T07:11:45.550864Z",
            "last_modified_time": "2025-10-06T07:11:45.550877Z",
            "date_published": null,
            "start_time": "2025-10-31T16:00:00Z",
            "end_time": "2025-10-31T21:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 300,
            "minimum_attendee_capacity": 15,
            "enrolment_start_time": "2025-10-06T12:00:00+03:00",
            "enrolment_end_time": "2025-10-10T17:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": ""
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Tervetuloa viettämään taianomaista ja hieman pelottavaa Halloween-iltaa Annantalolle! Kulttuuritalo muuttuu yhdeksi illaksi mystiseksi maailmaksi, jossa kummitukset, noidat ja oudot olennot ottavat vallan. Tapahtuma on suunnattu kaikenikäisille, ja luvassa on monipuolista ohjelmaa, joka kutkuttaa mielikuvitusta ja nostattaa Halloween-tunnelmaa. Tämä on testitapahtuma.&nbsp;</p>"
            },
            "short_description": {
                "fi": "Halloween-karkelot Annantalolla. Tämä on testitapahtuma. "
            },
            "location_extra_info": {
                "fi": ""
            },
            "name": {
                "fi": "Karmiva Kulttuuri-ilta Annantalolla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agm3qxfnmu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65723",
            "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/savoyjazzfest/"
                    },
                    "price": {
                        "fi": "165 € Early Bird"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 340915,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-14T11:14:44.324345Z",
                    "last_modified_time": "2025-03-14T11:14:44.324366Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767199.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/340915/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-14T11:14:44.299179Z",
            "last_modified_time": "2025-10-04T11:13:32.451622Z",
            "date_published": null,
            "start_time": "2026-03-04",
            "end_time": "2026-03-07",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/AD71C21137B4BB401F611ABB5F41BE1D/Savoy_JAZZFest_2026"
            },
            "description": {
                "fi": "<p>Edulliset Early Bird -liput myynnissä nyt</p><p>Savoy JAZZFest järjestetään kahdeksannen kerran maaliskuussa 2026! Tähän mennessä kiinnitetyt artistit ovat:</p><p>pe 6.3. klo 19 Jason Moran & UMO Helsinki Jazz Orchestra: Celebrating Duke Ellington (USA/Suomi)</p><p>la 7.3. klo 17.30 Shake Stew (Itävalta)</p><p>Lisää ohjelmistoa julkaistaan syksyn mittaan.</p><p>Myynnissä on rajattu erä erikoishintaisia Early Bird -festivaalipasseja, jotka sisältävät pääsyn kaikkiin Savoy-teatterissa järjestettäviin festivaalikonsertteihin 4.-7.3.2026. Edullisia neljän päivän Early Bird -festivaalipasseja on myynnissä 15.1.2026 asti tai niin kauan, kuin niitä riittää. Tämän vuoden festivaalipassit myytiin loppuun, joten kannattaa tarttua tilaisuuteen nyt!</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>*******<br>Savoy JAZZFest<br>Jazzmusiikin kansainvälistä ja kotimaista parhaimmistoa esittelevä Savoy JAZZFest järjestetään vuosittain maaliskuussa. Festivaalin kolmannen kolmivuotiskauden 2026-28 taiteellinen johtaja on kitaristi <b>Kalle Kalima</b>.</p>"
            },
            "short_description": {
                "fi": "Edulliset Early Bird -liput myynnissä nyt"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Savoy JAZZFest 2026"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65723/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmxnqf7qy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490876,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-23T12:26:17.838675Z",
                    "last_modified_time": "2025-09-23T12:26:17.838696Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/97e0a1a8-abda-409c-989d-3cfb625e154e.jpg",
                    "cropping": "134,0,666,533",
                    "photographer_name": "",
                    "alt_text": "Aasialaisia koristeita",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490876/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-09-23T12:26:31.364301Z",
            "last_modified_time": "2025-10-03T15:45:50.844662Z",
            "date_published": null,
            "start_time": "2025-10-05T11:00:00Z",
            "end_time": "2025-10-05T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "BiziVietnam",
                "en": "BiziVietnam"
            },
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Lapsilla on mahdollisuus kokeilla perinteisiä Vietnamilaisia aktiviteetteja. Tilaisuuden kieli on vietnam ja englanti.</p><p>Lapsille suunniteltuja hauskoja aktiviteetteja:</p><p>Kuun kakkujen leipominen: Lapset voivat leipoa omat perinteiset kuun kakut.</p><p>Hedelmäkorin koristelu: Tehdään yhdessä erityinen hedelmäkori&nbsp;juhlaan. (Pyydä jokaista lasta tuomaan hedelmä tai karkki&nbsp;avuksi!)</p><p>Perinteisten pelien pelaaminen: Pelaamme hauskoja klassikkopelejä, kuten&nbsp;</p><p>”Dragon Snake” ja ”Bamboo Dancing”.</p><p>Musikaaliset tuolit: Hauska, vauhdikas peli, joka saa kaikki nauramaan.</p><p><br></p>",
                "en": "<p>This is a chance for kids to try</p><p>traditional Viatnamise activities and have fun with friends and family.</p><p><br></p><p>Here are the fun things planned for kids:</p><p>Making Mooncakes: Kids can make their very own traditional mooncakes.</p><p>Decorating a Fruit Tray: Let's work together to make a special tray of</p><p>fruit for the festival. (Please have each child bring a fruit or candy</p><p>to help!)</p><p>Playing Traditional Games: Have a blast playing classic games like</p><p>\"Dragon Snake\" and \"Bamboo Dancing.\"</p><p>Musical Chairs: A fun, fast-paced game that will get everyone laughing.</p>"
            },
            "short_description": {
                "fi": "Lapsilla on mahdollisuus kokeilla perinteisiä Vietnamilaisia aktiviteetteja. Tilaisuuden kieli on vietnam ja englanti.",
                "en": "This is a chance for kids to try traditional Viatnamise activities and have fun with friends and family."
            },
            "location_extra_info": {
                "fi": "Lava",
                "en": "Stage"
            },
            "name": {
                "fi": "Täydenkuun juhla",
                "en": "Full Moon Festival"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmxnqf7qy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67101",
            "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/eventseries/name-3995714"
                    },
                    "price": {
                        "fi": "17-57 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1491000,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-03T10:13:33.303665Z",
                    "last_modified_time": "2025-10-03T10:13:33.303684Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777640.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491000/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-03T10:13:33.193877Z",
            "last_modified_time": "2025-10-03T14:13:28.598499Z",
            "date_published": null,
            "start_time": "2025-12-31T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/821DCC21FE40A374EFC07BAA669D3112/Savoyn_uusivuosi_Anssi_Kela_Tuplakela"
            },
            "description": {
                "fi": "<p>KAKSI KELAA, YKSI ILTA!</p><p>Kotimaan suosituimpiin artisteihin lukeutuva <b>Anssi Kela</b> tarjoilee Savoyssa unohtumattoman uudenvuodenaaton juhlaillan. Kyseessä on kesällä Allas Livessä hurmannut erikoiskeikka, jossa koko kansan rakastama artisti esiintyy saman illan aikana kahdessa eri muodossa.</p><p>Ilta käynnistyy akustisesti, kun Kela nousee lavalle yksin – soolona, aitona, ilman rajoja. Yleisö saa tehdä biisitoiveita, joita artisti tulkitsee siinä hetkessä. Kitara, sanat ja tarinat pääsevät pääosaan tässä intiimissä, ainutlaatuisessa osuudessa, joka on saanut inspiraationsa Kelan ylistetyistä <i>Mun täytyy kävellä näin</i> -elämäkertakonserteista.</p><p>Väliajan jälkeen lavalle liittyy huippuunsa viritetty livekokoonpano: <b>Mikko Kosonen, Antti Karisalmi, Saara Metsberg</b> ja <b>Ville Kela</b>. Yhdessä he nostavat tunnelman kattoon bändivedolla, joka kuljettaa yleisön läpi vuosien aina uusimpiin hitteihin asti.</p><p>Anssi Kela singahti koko kansan sydämiin vuosituhannen taitteessa, kun hänen Nummela-klassikkoalbumistaan muodostui yksi maamme kaikkien aikojen menestyksekkäimmistä pitkäsoitoista. Rakastettu esiintyjä ei jäänyt kuitenkaan kieriskelemään hetkelliseen suosioon, vaan on pysynyt relevanttina läpi vuosikymmenten. Settilistalle on tunkua, vaikka useammankin keikan edestä Mikan faijan BMW:stä Ilveksen kautta aina tuoreimpiin singleihin.</p><p>Kesto n.  2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "short_description": {
                "fi": "KAKSI KELAA, YKSI ILTA!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Savoyn uusivuosi: Anssi Kela – Tuplakela"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67101/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67083",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490948,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-09-30T09:13:50.733927Z",
                    "last_modified_time": "2025-09-30T09:13:50.733941Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777792.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490948/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-09-30T09:13:50.609426Z",
            "last_modified_time": "2025-10-03T13:13:24.105490Z",
            "date_published": null,
            "start_time": "2025-11-15T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai",
                "en": "http://www.kanneltalo.fi/en/events/event/13B29EF9119C3229B66CD0D08CD4BFF4/Lasten_lauantai"
            },
            "description": {
                "fi": "<p>Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin.</p><p>Klovni Marttakin on kutsuttu mukaan vapaapäivän viettoon! Maksutonta ohjelmaa ja tekemistä löydät galleriasta ja kirjastosta.</p><p>AULA</p><p>klo 12-15 Klovni Martta (Taina Mäki-Iso) on tosi innoissaan, koska hänet on kutsuttu Lasten lauantai -tapahtumaan! Marttaa kyllä vähän ihmetyttää, miten lapsen voi tunnistaa. Mikä oikein tekee lapsesta lapsen? Ja voiko aikuisessa - tai robotissa - olla lasta tai lapsenmieltä? Martan voi tavata joko hänen ihmettelytoimipisteellään tai kiertelemässä lasten seassa tapahtumapaikalla.</p><p>GALLERIA</p><p>klo 12-14 Työpajassa askarrellaan ennennäkemättömiä robotteja kuvakirjataiteilija Linda Bondestamin kanssa. Käytämme erilaisia kiehtovia materiaaleja näiden persoonallisten tyyppien valmistamiseen.<br>klo 12-15 Linda Bondestamin näyttely: Hopi hopi – toivoa paremmasta maailmasta  <br>Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta<br> <br>KIRJASTO<br>klo 12.30-13 Satutuokio (Rotunda) <br>klo 13.30-15 Bee botit matkaavat ympäri maailmaa -koodausleikkituokio (Rotunda)<br>klo 12-15 Legotyöpaja: Tulevaisuuden kaupunki (Tempo)<br> <br>KONSERTTISALI<br>klo 14-14.40 Pikku Papun Orkesteri & Liisa Kallio (kieli suomi, liput 6 € myynnissä Lippu.fi)<br>Pikku Papu Orkesteri & Liisa Kallio</p><p>Aula, galleria, kirjasto (vapaa pääsy)<br>Konsertti maksullinen</p>"
            },
            "short_description": {
                "fi": "Hopi hopi! Kaikki lapset ja lapsenmieliset ovat lämpimästi tervetulleita Kanneltalon Lasten lauantaihin."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Lasten lauantai",
                "sv": "Lasten lauantai",
                "en": "Lasten lauantai"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67083/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agm2up7mri",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p8113/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1491004,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2022-11-15T13:09:16.242657Z",
                    "last_modified_time": "2022-11-15T13:09:16.242679Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2023-04-29_Vappustudio_1920x1080.jpg",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Kultainen glitter-kuva",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491004/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-10-03T12:26:44.743778Z",
            "last_modified_time": "2025-10-03T12:26:44.743795Z",
            "date_published": null,
            "start_time": "2025-10-10T12:00:00Z",
            "end_time": "2025-10-10T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "provider_contact_info": null,
            "info_url": null,
            "description": {
                "fi": "<p>Tyttöjen talo ja kirjasto valtaavat Lippulaivan kirjaston keskusaukion ja tiedossa on mm. Booktok-vinkkausta, kynsien lakkausta ja hyviä keskusteluja. Tule mukaan hengaamaan!</p>"
            },
            "short_description": {
                "fi": "Rentoa keskustelua kirjojen äärellä"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tyttöjen oikeuksia ja Booktok -vinkkejä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm2up7mri/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agm2tsdgte",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [
                        {
                            "id": 44,
                            "price_group": {
                                "id": 1,
                                "description": {
                                    "fi": "Aikuinen",
                                    "sv": "Vuxen",
                                    "en": "Adult"
                                }
                            },
                            "price": "1.00",
                            "vat_percentage": "25.50",
                            "price_without_vat": "0.80",
                            "vat": "0.20"
                        }
                    ],
                    "info_url": {
                        "fi": ""
                    },
                    "price": {
                        "fi": "1 €"
                    },
                    "description": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1491002,
                    "has_user_editable_resources": true,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-03T11:13:59.047738Z",
                    "last_modified_time": "2025-10-03T11:15:06.606866Z",
                    "name": "Vihreä testikuva",
                    "url": "https://linkedevents.api.test.hel.ninja/media/images/Testikuva_1240_x_480.jpg",
                    "cropping": "100,0,500,400",
                    "photographer_name": "milka salonen",
                    "alt_text": "Vihreä",
                    "data_source": "helsinki",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491002/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-03T11:15:07.089021Z",
            "last_modified_time": "2025-10-03T11:15:07.089034Z",
            "date_published": null,
            "start_time": "2025-10-04T07:00:00Z",
            "end_time": "2025-10-04T08: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": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-10-03T15:00:00+03:00",
            "enrolment_end_time": "2025-10-04T10:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Järjestäjä"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": ""
            },
            "description": {
                "fi": "<p>Kuvaus</p>"
            },
            "short_description": {
                "fi": "Kuvaus"
            },
            "location_extra_info": {
                "fi": "Etupiha"
            },
            "name": {
                "fi": "Otsikko"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agm2tsdgte/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}