Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21736,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=25",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=23"
    },
    "data": [
        {
            "id": "kulke:67311",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-20937676",
                        "sv": "https://www.lippu.fi/event/name-20937676",
                        "en": "https://www.lippu.fi/event/name-20937676"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 20 €",
                        "sv": "24,80 € / 20 €",
                        "en": "24,80 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494037,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T07:12:52.504324Z",
                    "last_modified_time": "2025-12-04T07:12:52.504341Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780926.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494037/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T07:12:52.412487Z",
            "last_modified_time": "2026-03-20T01:13:32.037488Z",
            "date_published": null,
            "start_time": "2026-03-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Illan näytös siirtyy sairastapauksen vuoksi. Uusi esitysaika on ke 1.4. klo 18. Jo ostetut liput käyvät sellaisenaan uuteen näytökseen. Voit hakea lippurahojen palautusta: https://web.lippu.fi/palautus/ Ulla Tapaninen. 70 vuotta elossa. 50 vuotta näyttämöllä. 30 vuotta lava-ammuntaa. Ja terävämpänä kuin koskaan!",
                "sv": "Ulla Tapaninen. 70 år i livet. 50 år på scenen. 30 år av Lava-ammuntaa. Och skarpare än någonsin!",
                "en": "Ulla Tapaninen. 70 years alive. 50 years on stage. 30 years of the ‘Lava-ammuntaa’ show. And sharper than ever!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D825CCB2BD50121219A500655CBA50CE/NAYTOS_SIIRTYY_LAVA-AMMUNTAA_VIII_-_After_Eight_-komiikkaa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D825CCB2BD50121219A500655CBA50CE/LAVA-AMMUNTAA_VIII_-_After_Eight_-komiikkaa",
                "en": "http://www.kanneltalo.fi/en/events/event/D825CCB2BD50121219A500655CBA50CE/LAVA-AMMUNTAA_VIII_After_Eight_comedy"
            },
            "description": {
                "fi": "<p>Illan näytös siirtyy sairastapauksen vuoksi. Uusi esitysaika on ke 1.4. klo 18. Jo ostetut liput käyvät sellaisenaan uuteen näytökseen. Voit hakea lippurahojen palautusta: https://web.lippu.fi/palautus/ Ulla Tapaninen. 70 vuotta elossa. 50 vuotta näyttämöllä. 30 vuotta lava-ammuntaa. Ja terävämpänä kuin koskaan!</p><p>Keväällä 2026 nauretaan ja juhlitaan pyöreitä porukassa, kun Ulla Tapanisen ja Raila Leppäkosken kirjoittama Lava-ammuntaa-esityssarja viettää kolmekymppisiään, näyttelijä-Ulla viisikymppisiään ja siviili-Ulla seitsemänkymppisiään. Kevät 2026 on siis yhtä ikäkriisiä, ei kun siis juhlaa!</p><p>Lava-ammuntaa VIII jatkaa ajankohtaisten asioiden ja ilmiöiden päivittelyä suorasanaisesti ja oivaltavasti terävällä huumorilla terästettynä. Nyt kun ikää ja kokemusta on saavutettu kunnioitettavasti, sallitaan iltaherkuttelukin.</p><p>Lava-ammuntaa VIII – After Eight -komiikkaa iskee ajassa kiinni oleviin ilmiöihin tuttuun, suorasanaiseen ja hävyttömän osuvaan tyyliin.</p><p>Ulla Tapaninen on kotimaisen näyttämötaiteen suurnimi, jonka roolityöt ovat jääneet pysyvästi suomalaisten sydämiin. Hänen monologisarjansa Lava-ammuntaa on kulttimaineessa, ja hänen äänensä on tuttu muun muassa Muumimammana ja Ursulana.</p><p>Käsikirjoitus Ulla Tapaninen ja Raila Leppäkoski<br>Ohjaus Raila Leppäkoski<br>Lavalla Ulla Tapaninen</p><p>Esityksen arvioitu kesto noin 1 h 45 minuuttia sisältäen väliajan.</p>",
                "sv": "<p>Ulla Tapaninen. 70 år i livet. 50 år på scenen. 30 år av Lava-ammuntaa. Och skarpare än någonsin!</p><p>Våren 2026 får vi skratta och fira när Ulla Tapaninens och Raila Leppäkoskis föreställningsserie Lava-ammuntaa firar 30, skådespelar-Ulla 50 och civila Ulla 70 år. Våren 2026 är alltså en enda ålderskris, nej alltså en fest!</p><p>Lava-ammuntaa VIII fortsätter diskussionen om aktuella frågor och fenomen på ett frispråkigt och insiktsfullt sätt med en rejäl dos humor. Nu när en aktningsvärd ålder och erfarenhet har uppnåtts är det tillåtet med lite godis till kvällen.</p><p>Lava-ammuntaa VIII – After Eight -komiikkaa tar tag i aktuella fenomen i en välbekant, frispråkig och skamlöst träffande stil.</p><p>Ulla Tapaninen är ett stort namn på de finländska scenerna, vars rollarbete har fått en permanent plats i finländarnas hjärtan. Hennes monologserie Lava-ammuntaa är kultförklarad och hennes röst är välkänd som bland annat Muminmamman och Ursula.</p><p>Manus av Ulla Tapaninen och Raila Leppäkoski<br>Regi Raila Leppäkoski<br>På scenen Ulla Tapaninen</p><p>Föreställningens beräknade längd är ca 1 h 45 min., inklusive paus.</p><p>Språk: finska</p>",
                "en": "<p>Ulla Tapaninen. 70 years alive. 50 years on stage. 30 years of the ‘Lava-ammuntaa’ show. And sharper than ever!</p><p>In the spring of 2026, the ‘Lava-ammuntaa’ series, written by Ulla Tapaninen and Raila Leppäkoski, will celebrate its thirtieth birthday, the actor Ulla her fiftieth birthday and the civilian Ulla her seventieth birthday. So spring 2026 will be all about ageing ungracefully. Oops, I meant celebrations!</p><p>‘Lava-ammuntaa VIII’ continues to discuss current affairs and phenomena with a frank and insightful approach, laced with sharp humour. Now that age and experience have been respectably acquired, evening snacks are allowed.</p><p>‘Lava-ammuntaa VIII – After Eight comedy’ tackles contemporary phenomena in a familiar, frank and unashamedly apt style.</p><p>Ulla Tapaninen is a great name in Finnish stage art, whose roles have remained in the hearts of Finns forever. Her monologue series ‘Lava-ammuntaa’ is a cult hit, and her voice is familiar as Moominmamma and Ursula, among others.</p><p>Script by Ulla Tapaninen and Raila Leppäkoski<br>Directed by Raila Leppäkoski<br>Ulla Tapaninen on stage</p><p>Estimated duration of the performance: approximately 1 h 45 minutes, including an intermission.<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "NÄYTÖS SIIRTYY: LAVA-AMMUNTAA VIII - After Eight -komiikkaa – Ulla Tapaninen & Raila Leppäkoski",
                "sv": "LAVA-AMMUNTAA VIII - After Eight -komiikkaa – Ulla Tapaninen & Raila Leppäkoski",
                "en": "LAVA-AMMUNTAA VIII – After Eight comedy – Ulla Tapaninen & Raila Leppäkoski"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67311/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68182",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1541605,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-06T09:13:01.559371Z",
                    "last_modified_time": "2026-03-06T09:13:01.559388Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786055.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1541605/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-06T09:13:01.421463Z",
            "last_modified_time": "2026-03-20T01:13:31.933732Z",
            "date_published": null,
            "start_time": "2026-03-12T15:00:00Z",
            "end_time": "2026-03-12T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pokkarin Äftereillä tarjolla runoutta, bingoa ja keväistä tunnelmaa!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AD8953F4995E05258028227D6E2A915D/Runoilija_Juho_Kuusi_kevainen_runobingo",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AD8953F4995E05258028227D6E2A915D/Runoilija_Juho_Kuusi_kevainen_runobingo",
                "en": "http://www.vuotalo.fi/en/events/event/AD8953F4995E05258028227D6E2A915D/Runoilija_Juho_Kuusi_kevainen_runobingo"
            },
            "description": {
                "fi": "<p>Pokkarin Äftereillä tarjolla runoutta, bingoa ja keväistä tunnelmaa!</p><p>Tervetuloa Äftereille Vuotalon Kahvila Pokkariin! Maaliskuussa tuomme auringon lisäksi Pokkarin lavalle elävää runoutta, kun TV:stä ja isoiltakin lavoilta tuttu runoilija Juho Kuusi esittää uutta tuotantoaan. Ennen kuin Kuusi nousee lavalle, pääsee yleisö nauttimaan keväisestä runobingosta, jossa tarjolla on upeiden palkintojen lisäksi runonlausuntaa aiheena kevät ja aurinko.</p><p>Aikataulu:</p><p>17.00–18.00: Keväinen runobingo</p><p>18.00–18.30: Runoilija Juho Kuusi esiintyy</p><p>Juho Kuusi</p><p>Juho Kuusi on Helsingin rajaseudulla asuva runoilija, joka on esittänyt runouttaan yli 15 vuotta niin pienissä kahviloissa, isommilla festareilla kuin tv-kameroidenkin edessä. Kuusen tunteikas ja usein tunnustuksellinen tuotanto sisältää lavarunoutta, räppiä sekä painettua runoutta. Vuotalossa kuullaan sikermä Kuusen tuoreempaa tuotantoa.</p>"
            },
            "name": {
                "fi": "Runoilija Juho Kuusi, keväinen runobingo – Äfter-Vuokki klubi",
                "sv": "Runoilija Juho Kuusi, keväinen runobingo – Äfter-Vuokki klubi",
                "en": "Runoilija Juho Kuusi, keväinen runobingo – Äfter-Vuokki klubi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67423",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494081,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:58.539338Z",
                    "last_modified_time": "2025-12-04T13:12:58.539355Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494081/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T13:12:58.444357Z",
            "last_modified_time": "2026-03-20T01:13:31.783432Z",
            "date_published": null,
            "start_time": "2026-03-12",
            "end_time": "2026-04-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Sanna Pelliccionin suosittuun Onni-poika-kirjasarjaan perustuva iloinen näyttely ja leikkitila saadaan yleisön toiveesta uudelleen esille Kanneltalon galleriaan.",
                "sv": "Den glada utställningen och lekrummet som baserar sig på Sanna Pelliccionis populära bokserie om pojken Onni återvänder till Gamlasgårdens galleri på allmänhetens begäran.",
                "en": "A cheerful exhibition and play space based on Sanna Pelliccioni's popular book series on the little Onni boy will be relaunched in the Kanneltalo gallery due to popular demand."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/27C7B879025C5E2EE14D91D8A5C7CF3B/Sanna_Pelliccioni_Onni_on_olla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/27C7B879025C5E2EE14D91D8A5C7CF3B/Sanna_Pelliccioni_Onni_on_olla_Lycka_ar_att_vara_",
                "en": "http://www.kanneltalo.fi/en/events/event/27C7B879025C5E2EE14D91D8A5C7CF3B/_Sanna_Pelliccioni_Onni_on_olla"
            },
            "description": {
                "fi": "<p>Sanna Pelliccionin suosittuun Onni-poika-kirjasarjaan perustuva iloinen näyttely ja leikkitila saadaan yleisön toiveesta uudelleen esille Kanneltalon galleriaan.</p><p>Näyttelyssä on esillä Onni-kirjoista tuttuja kirjoja ja kuvituksia sekä leluja ja leikkejä palapelista pikkukeittiöön ja varjoleikistä pahvilaatikkolaivaan. Äänimaailman mukana pääset tutustumaan Onnin maailmaan, näyttelyn eri osioihin ja Onnin tanssiin ja lauluihin.</p><p>Näyttelyn tuotanto, suunnittelu ja ilme: Sanna Pelliccioni<br>Äänimaailma: Sanna Pelliccioni, Eppu Nuotio, Tuomas Juntunen</p><p>Sanna Pelliccioni (s. 1976 Oulu) on helsinkiläinen kuvittaja ja lastenkirjailija. Pelliccioni tekee omaa Onni-kuvakirjasarjaa sekä Suomen supernaisia-sarjaa ja kuvittaa monenlaisilla tekniikoilla aikuisille ja lapsille. Pelliccionin suomalais-italialainen perhe asuu Helsingissä, toinen jalka Välimerellä. Kuvittajana hän inspiroituu väreistä, hiljaisuudesta, metsästä, avojaloin kävelystä ja kulkemisesta muinaisilla paikoilla. Hänet palkittiin Plaque-kuvituspalkinnolla Bratislavan biennaalissa teoksesta Lappukaulatyttö vuonna 2023. Pelliccioni on Astrid Lindgren Memorial Award -ehdokas 2025-ehdokas sekä Rudolf Koivu ja Botnia-ehdokas.</p>",
                "sv": "<p>Den glada utställningen och lekrummet som baserar sig på Sanna Pelliccionis populära bokserie om pojken Onni återvänder till Gamlasgårdens galleri på allmänhetens begäran.</p><p>I utställningen ingår böcker och illustrationer som är bekanta från böckerna om Onni, samt leksaker och lekar från pussel till leksakskök och från skugglekar till kartongskepp. Ljudlandskapet tar dig med in i Onnis värld, till utställningens olika delar och till Onnis danser och sånger.</p><p>Produktion av utställningen, planering och visuellt uttryck: Sanna Pelliccioni<br>Ljudlandskap: Sanna Pelliccioni, Eppu Nuotio, Tuomas Juntunen</p><p>Sanna Pelliccioni (f. 1976 i Uleåborg) är en illustratör och barnboksförfattare bosatt i Helsingfors. Pelliccioni gör en egen bilderboksserie om Onni och en serie om Finlands superkvinnor, och illustrerar för vuxna och barn med många slags tekniker. Pelliccionis finsk-italienska familj bor i Helsingfors, med en fot vid Medelhavet.</p><p>Som illustratör inspireras hon av färger, tystnad, skogen, att gå barfota och att röra sig på gamla platser. Vid Bratislava biennalen 2023 belönades hon med illustrationspriset Plaque för verket Lappukaulatyttö. Pelliccioni är nominerad till Astrid Lindgren Memorial Award 2025 och även Rudolf Koivu- och Botnia-nominerad.</p>",
                "en": "<p>A cheerful exhibition and play space based on Sanna Pelliccioni's popular book series on the little Onni boy will be relaunched in the Kanneltalo gallery due to popular demand.</p><p>The exhibition features books and illustrations familiar from the Onni books, as well as toys and games ranging from puzzles to a play kitchen and from shadow play to cardboard box ships. The soundscape will introduce you to the world of Onni, the different sections of the exhibition and Onni's dances and songs.</p><p>Exhibition production, design and visuals: Sanna Pelliccioni<br>Soundscape: Sanna Pelliccioni, Eppu Nuotio, Tuomas Juntunen</p><p>Sanna Pelliccioni (b. 1976 in Oulu) is a Helsinki-based illustrator and children's author. Pelliccioni is the creator of her own Onni picture book series and the Suomen supernaisia series on Finnish superwomen, and illustrates in a wide range of techniques for adults and children. Pelliccioni's Finnish-Italian family lives in Helsinki, with one foot in the Mediterranean.</p><p>As an illustrator, she is inspired by colour, silence, the forest, walking barefoot and passing through ancient places. She was awarded the Plaque Award for her work Sent Across The Sea at the Biennal of Illustrations Bratislava in 2023. Pelliccioni is an Astrid Lindgren Memorial Award nominee for 2025, as well as a Rudolf Koivu and Botnia nominee.</p>"
            },
            "name": {
                "fi": "Sanna Pelliccioni: Onni on olla",
                "sv": "Sanna Pelliccioni: Onni on olla (Lycka är att vara)",
                "en": "Sanna Pelliccioni: Onni on olla"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67423/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67164",
            "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/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/eventseries/name-4008653",
                        "sv": "https://www.lippu.fi/eventseries/name-4008653",
                        "en": "https://www.lippu.fi/eventseries/name-4008653"
                    },
                    "description": null,
                    "price": {
                        "fi": "39,90 €",
                        "sv": "39,90 €",
                        "en": "39,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494111,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-07T13:13:03.904675Z",
                    "last_modified_time": "2025-12-07T13:13:03.904690Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778379.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494111/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-07T13:13:03.792026Z",
            "last_modified_time": "2026-03-20T01:13:31.672220Z",
            "date_published": null,
            "start_time": "2026-03-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/C2C547111A05DE8DB2194C3BC0F838AD/Hopeinen_kuu_Amadeus_Lundberg",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/C2C547111A05DE8DB2194C3BC0F838AD/Hopeinen_kuu_Amadeus_Lundberg",
                "en": "http://www.savoyteatteri.fi/en/events/event/C2C547111A05DE8DB2194C3BC0F838AD/Hopeinen_kuu_Amadeus_Lundberg"
            },
            "description": {
                "fi": "<p>Suomalaisten kevyen musiikin ystävien kestosuosikiksi noussut <b>Amadeus Lundberg</b> saapuu Hopeinen kuu -kiertueensa myötä Savoy-teatteriin 11. maaliskuuta. Tämä koko kansan tuntemaksi laulajaksi ponnistanut monipuolinen ja karismaattinen artisti esittää konsertissa ikivihreitä tangoja ja italialaisia iskelmiä.</p><p>Häntä säestää tässä tunnelmallisessa ja intiimissä konsertissa pianisti <b>Samuli Jokinen</b>.</p><p><i>Luvassa on tyylikästä musiikkia niin iloisissa kuin haikeissa tunnelmissa</i>, Lundberg kertoo.</p><p>Kesto n. 2 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Amadeus Lundberg, som blivit en ständig favorit bland vänner av finsk popmusik, kommer till Savoy-teatern med sin Hopeinen kuu-turné den 11 mars. Den mångsidiga och karismatiska sångaren, som blivit känd över hela landet, framför klassiska tangolåtar och italiensk schlager.</p><p>I denna stämningsfulla och intima konsert ackompanjeras han av pianisten Samuli Jokinen.</p><p>Det blir elegant musik i både glada och melankoliska toner, berättar Lundberg.</p><p>Längd ca 2 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>A perennial favourite among Finnish popular music fans, Amadeus Lundberg will come to the Savoy Theatre on 11 March on his Hopeinen kuu tour. This versatile and charismatic singer, who has become a household name, will perform evergreen tangos and Italian schlager hits.</p><p>He will be accompanied by pianist Samuli Jokinen in this atmospheric and intimate concert.</p><p>“The setlist will feature elegant music with moods ranging from joy to wistfulness,” Lundberg says.</p><p>Duration: roughly 2 h, incl. intermission</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "name": {
                "fi": "Hopeinen kuu: Amadeus Lundberg",
                "sv": "Hopeinen kuu: Amadeus Lundberg",
                "en": "Hopeinen kuu: Amadeus Lundberg"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Amasing Oy",
                "sv": "Amasing Oy",
                "en": "Amasing Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67164/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67178",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kaisanieminen/",
                        "sv": "https://www.lippu.fi/artist/kaisanieminen/",
                        "en": "https://www.lippu.fi/artist/kaisanieminen/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 7 €",
                        "sv": "20 € / 7 €",
                        "en": "20 € / 7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494246,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-18T12:13:48.017655Z",
                    "last_modified_time": "2025-12-18T12:13:48.017670Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778509.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494246/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-18T12:13:47.832737Z",
            "last_modified_time": "2026-03-20T01:13:31.444261Z",
            "date_published": null,
            "start_time": "2026-03-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Emotionaalinen kehoni tanssii nautintoa ja aggressiota, surua ja euforiaa. Queeriyttä. Tanssivan kehon politiikkaa ja poetiikkaa.",
                "sv": "Min emotionella kropp dansar av njutning och aggression, sorg och eufori. Något queert. Den dansande kroppens politik och poetik.",
                "en": "My emotional body dances the fleshy desires, pleasure and aggression, sorrow and euphoria. The queerness. The politics and poetics of the dancing body."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EEFA3CE07378BCEEBBBFD1DC26320768/Kaisa_Nieminen_wilting_before_blooming_sorry_I_m_late",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EEFA3CE07378BCEEBBBFD1DC26320768/Kaisa_Nieminen_wilting_before_blooming_sorry_I_m_late",
                "en": "http://www.caisa.fi/en/events/event/EEFA3CE07378BCEEBBBFD1DC26320768/Kaisa_Nieminen_wilting_before_blooming_sorry_I_m_late"
            },
            "description": {
                "fi": "<p>Emotionaalinen kehoni tanssii nautintoa ja aggressiota, surua ja euforiaa. Queeriyttä. Tanssivan kehon politiikkaa ja poetiikkaa.</p><p>Millenniaalikeho, joka on muovautunut osana aikansa valtarakenteita; raiskauskulttuuri, misogynia, heteronormatiiviset rakenteet ja dynamiikat. Myöhäisen kesän kukkija. Työskentelen polvieni kannatteleman painon kanssa – bounce, lantionpohja ja sormenpäät. Hengittäen sisään, ulos ja ympäri, ruumiin jännitteisyyden, ilmaisuvoimaisuuden, äänen kautta. Tanssin elettyä kokemusta kurottaen kohti heitä, jotka olivat ennen minua ja kohti heitä, jotka tulevat jälkeeni.</p><p><b>Kaisa Nieminen</b> on helsinkiläinen tanssija-koreografi. Nieminen on kiinnostunut tanssivan kehon kokemuksellisuudesta; siitä miten tanssimme omaa todellisuuttamme ulos, ruumiin emotionaalisuudesta, seksuaalisuudesta ja siitä miten olemme tanssin kautta yhteydessä itseemme, toisiimme sekä yhteiskunnan rakenteisiin.</p><p><b>Tiikka Drama</b> on helsinkiläinen queer äänisuunnittelija ja säveltäjä. Hän työskentelee pääosin tanssi- ja performanssitaiteen parissa. Tiikka luo moniulotteisia tunnetiloja yhdistelemällä elementtejä äänitaiteesta, kenttä-äänityksistä ja elektronisesta tanssimusiikista.<br> <br><b>Luca Sirviö</b> on Helsingissä asuva valosuunnittelija. Hän valmistui teatteritaiteen maisteriksi Taideyliopistosta vuonna 2019 ja työskentelee enimmäkseen nykytanssin ja -teatterin parissa. Sirviötä kiinnostaa kategorioiden välisyys, tyylilajien päällekkäisyys sekä tunnistettavan ja tuntemattoman rajapinnalla keinahtelu.</p><p>Kieli: suomi/englanti<br>Kesto: 45 min<br>Ikäsuositus: +13 v<br>Sisältöhuomiot: teatterisavua, kovaa ääntä</p><p>Koreografia ja tanssi: Kaisa Nieminen<br>Äänisuunnittelu: Tiikka Drama<br>Valosuunnittelu: Luca Sirviö<br>Taiteellinen dialogi: Marika Peura<br>Outside eye: DeeDee Harmony<br>Ehkä-tuotannon kotidramaturgi: Even Minn<br>Tuotanto: Ehkä-tuotanto ja Kaisa Nieminen<br>Residenssi: Ehkä-tuotanto/Nykytaidetila Kutomo (Turku)<br>Tukija: Taiteen edistämiskeskus<br>Demot: 9.–11.8.2025 ImPulsTanz-festivaalin ATLAS-ohjelma, Wien ja 29.8.2025 UrbanApa x Stoa -festivaali, Helsinki<br>Ensi-ilta: 27.11.2025 XS-festivaali/Nykytaidetila Kutomo, Turku</p>",
                "sv": "<p>Min emotionella kropp dansar av njutning och aggression, sorg och eufori. Något queert. Den dansande kroppens politik och poetik.</p><p>Millennialkroppen, som har formats som en del av sin tids maktstrukturer; våldtäktskultur, misogyni, heteronormativa strukturer och dynamik. Som blommar sent på sommaren. Jag arbetar med den vikt som stöds av mina knän – bounce, bäckenbotten och fingertoppar. Andas in, ut och runt, genom kroppens spänning, uttrycksfullheten, ljudet. Jag dansar den levda erfarenheten och sträcker mig mot dem som kom före mig och till dem som kommer att komma efter mig.</p><p><b>Kaisa Nieminen</b> är dansare och koreograf från Helsingfors. Nieminen är intresserad av erfarenheten i den dansande kroppen; hur vi dansar ut vår egen verklighet, kroppens emotionalitet, sexualiteten och hur vi genom dansen får kontakt med oss själva, varandra och samhällets strukturer.</p><p><b>Tiikka Drama</b> är en queer ljuddesigner och tonsättare från Helsingfors. Hen arbetar främst med dans- och performancekonst. Tiikka skapar mångdimensionella känslotillstånd genom att kombinera element från ljudkonst, fältinspelningar och elektronisk dansmusik.<br> <br><b>Luca Sirviö</b> är ljusdesigner och bosatt i Helsingfors. Sirviö tog examen som magister i teaterkonst vid Konstuniversitetet 2019 och arbetar främst med modern dans och teater. Sirviö intresserar sig för skärningspunkter mellan kategorier, överlappningar mellan genrer och pendling mellan det igenkännbara och det okända.</p><p>Språk: finska/engelska<br>Längd: 45 min.<br>Åldersrekommendation: 13+ år<br>Innehållsvarningar: teaterrök, höga ljud</p><p>Koreografi och dans: Kaisa Nieminen<br>Ljuddesign: Tiikka Drama<br>Ljusdesign: Luca Sirviö<br>Konstnärlig dialog: Marika Peura<br>Outside eye: DeeDee Harmony<br>Ehkä-tuotantos hemmadramaturg: Even Minn<br>Produktion: Ehkä-tuotanto och Kaisa Nieminen<br>Residens: Ehkä-tuotanto/Nykytaidetila Kutomo (Åbo)<br>Stöds av: Centret för konstfrämjande<br>Demonstrationer: 9–11.8.2025 ImPulsTanz-festivalens ATLAS-program, Wien och 29.8.2025 UrbanApa x Stoa-festivalen, Helsingfors<br>Premiär: 27.11.2025 XS-festivalen/Nykytaidetila Kutomo, Åbo</p>",
                "en": "<p>My emotional body dances the fleshy desires, pleasure and aggression, sorrow and euphoria. The queerness. The politics and poetics of the dancing body.</p><p>A millennial body molded in rape culture, misogyny, comphet power structures and dynamics. A late bloomer sapphic, long ago—but still late. Fleshing my body, shedding my skin in and out. Breathing in and out and about. Working with the weight on my knees—the bounce, pelvic floor, and my fingertips. Dancing the lived experience and reaching out to the ones who were here before me and who are about to come.</p><p><b>Kaisa Nieminen</b> is a dancer-choreographer based in Helsinki, Finland. Nieminen is interested in the experiential nature of the dancing body; the emotionality, sexuality, and the way we connect to ourselves, others, and to the societal structures through dancing — the politics and poetics of the dancing body.</p><p><b>Tiikka Drama</b> is a Helsinki-based queer sound designer and composer. They work mainly with contemporary dance and performance art. Tiikka creates multidimensional emotional spaces combining elements of sound art, field-recordings, and electronic dance music. <br> <br><b>Luca Sirviö</b> is a Helsinki-based lighting designer who graduated from the University of the Arts Helsinki (MA, 2019). She works in the field of contemporary performance art with an interest in the overlap of genres and the oscillation between the recognizable and the unknown.</p><p>Language: Finnish/English<br>Duration: 45 min<br>Age recommendation: +13 years<br>Content notes: theater haze, loud sound<br> <br>Choreography and dance: Kaisa Nieminen<br>Sound design: Tiikka Drama<br>Lighting design: Luca Sirviö<br>Artistic dialogue: Marika Peura<br>Outside eye: DeeDee Harmony<br>Ehkä-production’s house dramaturg: Even Minn<br>Production: Ehkä-production and Kaisa Nieminen<br>Residency: Ehkä-production/Contemporary Art Space Kutomo (Turku)<br>Supporter: Arts Promotion Centre Finland<br>Demos: 9.–11.8.2025 ImPulsTanz Festival’s ATLAS Programme, Vienna and 29.8.2025 UrbanApa x Stoa Festival, Helsinki<br>Premiere: 27.11.2025 XS Festival/Contemporary Art Space Kutomo, Turku</p>"
            },
            "name": {
                "fi": "Kaisa Nieminen: wilting before blooming, sorry I'm late",
                "sv": "Kaisa Nieminen: wilting before blooming, sorry I'm late",
                "en": "Kaisa Nieminen: wilting before blooming, sorry I'm late"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67178/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67477",
            "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/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/",
                        "sv": "https://www.lippu.fi/event/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/",
                        "en": "https://www.lippu.fi/event/roots-musiikin-evoluutio-niko-ahvonen-ja-tilanteen-herrat-malmitalo-21028828/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 € / 19,80 €",
                        "sv": "24,80 € / 19,80 €",
                        "en": "24,80 € / 19,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494022,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T09:12:53.739543Z",
                    "last_modified_time": "2025-12-03T09:12:53.739559Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781453.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494022/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T09:12:53.658401Z",
            "last_modified_time": "2026-03-20T01:13:31.312849Z",
            "date_published": null,
            "start_time": "2026-03-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Levyjulkkarikeikka!",
                "sv": "Situationen lever och är under kontroll!Vårt band framför Niko Ahvonens finskspråkiga och rytmiska kvällsprogram från fyra årtionden.",
                "en": "Situation is changing but under control! Our ensemble performs Niko Ahvonen's rhythmic Finnish evening repertoire from across four decades."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_ja_Tilanteen_Herrat_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_Tilanteen_Herrat_",
                "en": "http://www.malmitalo.fi/en/events/event/A204EBAD01A04E5C4EA0AB4A697483F2/Niko_Ahvonen_and_Tilanteen_Herrat_"
            },
            "description": {
                "fi": "<p>Levyjulkkarikeikka!</p><p>Bändi julkaisi juuri Valmis maailma -levyn ja Malmilla nähdään bändin levynjulkistuskeikka!</p><p>Niko Ahvonen esittää suomenkielistä rytmikästä iltamaohjelmistoa neljältä vuosikymmeneltä.</p><p>Bändi:</p><p>Niko Ahvonen: laulu, alttosaksofoni, rytmikitara<br>Mitja Tuurala: basso, taustalaulu<br>Markus Tiiro: soolokitara, taustalaulu<br>Antti Utriainen: koskettimet, taustalaulu<br>Janne Haavisto: rummut<br>Antti Snellman: tenorisaksofoni<br>Jarmo Rouvinen: baritonisaksofoni, huilu</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>",
                "sv": "<p>Situationen lever och är under kontroll!Vårt band framför Niko Ahvonens finskspråkiga och rytmiska kvällsprogram från fyra årtionden.</p><p>De senaste låtarna är redan färdiginspelade, albumet släpps vilken stund som helst. Så kom och njut!</p><p>Niko Ahvonen: sång, altsaxofon, rytmgitarr<br>Mitja Tuurala: bas, bakgrundssång<br>Markus Tiiro: sologitarr, bakgrundssång<br>Antti Utriainen: keyboard, bakgrundssång<br>Janne Haavisto: trummor<br>Antti Snellman: tenorsaxofon<br>Jarmo Rouvinen: barytonsaxofon, flöjt</p><p>Längd: 1 h 45 min., inklusive en paus på 20 min.</p>",
                "en": "<p>Situation is changing but under control! Our ensemble performs Niko Ahvonen's rhythmic Finnish evening repertoire from across four decades.</p><p>The newest songs are already bubbling under the lid and the album will be released any minute now. So come by and let us entertain you!</p><p>Niko Ahvonen: vocals, alto saxophone, rhythm guitar<br>Mitja Tuurala: bass, backing vocals<br>Markus Tiiro: solo guitar, backing vocals<br>Antti Utriainen: keyboards, backing vocals<br>Janne Haavisto: drums<br>Antti Snellman: tenor saxophone<br>Jarmo Rouvinen: baritone saxophone, flute</p><p>Duration: 1 hour 45 min, incl. a 20-min intermission</p>"
            },
            "name": {
                "fi": "Niko Ahvonen ja Tilanteen Herrat – Roots-musiikin evoluutio",
                "sv": "Niko Ahvonen & Tilanteen Herrat – Roots-musikens evolution",
                "en": "Niko Ahvonen and Tilanteen Herrat – The evolution of roots music"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67477/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67452",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494080,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:58.218768Z",
                    "last_modified_time": "2025-12-04T13:12:58.218782Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781405.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494080/?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-12-04T13:12:58.160862Z",
            "last_modified_time": "2026-03-20T01:13:31.196730Z",
            "date_published": null,
            "start_time": "2026-03-11T16:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!",
                "sv": "Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!",
                "en": "Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B7311390772D7F14822085F5CDC79E73/Ympari_maailmaa_lauluja_kuudesta_maanosasta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B7311390772D7F14822085F5CDC79E73/Ympari_maailmaa_lauluja_kuudesta_maanosasta_Jorden_runt_sanger_fran_sex_kontinenter_",
                "en": "http://www.kanneltalo.fi/en/events/event/B7311390772D7F14822085F5CDC79E73/Around_the_world_songs_from_six_continents"
            },
            "description": {
                "fi": "<p>Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!</p><p>Tässä koko perheen konsertissa kuullaan lauluja peräti 11 eri kielellä Luoteis-Helsingin musiikkiopiston maailmanmusiikkiorkesteri esittämänä.</p><p>Maailmanmusiikkiorkesterissa on mukana 60 nuorta muusikkoa; musiikkiopiston kuorot ja pianisteja sekä Vilisevät jouset ja Dibidabi-yhtye. Laulut on sovitettu opetushallituksen tuella.  <br> <br>Kesto: 35 min, ei väliaikaa<br>Paikka: Kanneltalon konserttisali<br> <br>Vapaa pääsy!</p>",
                "sv": "<p>Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!</p><p>I den här konserten för hela familjen får vi höra sånger på hela elva olika språk, framförda av Luoteis-Helsingin musiikkiopistos världsmusikorkester.</p><p>I världsmusikorkestern deltar 60 unga musiker, musikinstitutets körer och pianister samt grupperna Vilisevät jouset och Dibidabi. Sångerna har arrangerats med stöd från Utbildningsstyrelsen.</p><p>Längd: 35 minuter, ingen paus<br>Plats: Gamlasgårdens konsertsal</p><p>Fritt inträde!</p>",
                "en": "<p>Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!</p><p>This concert for the whole family features songs in no less than 11 different languages performed by the Northwest Helsinki Music Institute (LUHMO) world music orchestra.</p><p>The world music orchestra will include 60 young musicians; choirs and pianists from LUHMO, the Vilisevät jouset and the Dibidabi band. The songs have been arranged with support from the Finnish National Agency for Education.  <br> <br>Duration: 35 min, no intermission<br>Location: Kanneltalo Concert Hall<br> <br>Free entry!</p>"
            },
            "name": {
                "fi": "Ympäri maailmaa — lauluja kuudesta maanosasta",
                "sv": "Ympäri maailmaa — lauluja kuudesta maanosasta (Jorden runt – sånger från sex kontinenter)",
                "en": "Around the world – songs from six continents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67452/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68028",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/unreality-lauluja-tahtien-takaa-stoa-21238046/",
                        "sv": "https://www.lippu.fi/event/unreality-lauluja-tahtien-takaa-stoa-21238046/",
                        "en": "https://www.lippu.fi/event/unreality-lauluja-tahtien-takaa-stoa-21238046/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24 € / 14 €",
                        "sv": "24 € / 14 €",
                        "en": "24 € / 14 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T13:14:35.257852Z",
                    "last_modified_time": "2026-01-26T13:14:35.257865Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782934.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494638/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T13:14:35.149449Z",
            "last_modified_time": "2026-03-20T01:13:31.093479Z",
            "date_published": null,
            "start_time": "2026-03-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Musiikkia peleistä, elokuvista ja TV-sarjoista kuorolle sovitettuna.",
                "en": "Music from games, movies and TV series arranged for choir."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/56775A94F16F4F1B1C7B8180D20D9EE3/Sekakuoro_Unreality_Lauluja_tahtien_takaa",
                "sv": "http://www.stoa.fi/sv/evenemang/event/56775A94F16F4F1B1C7B8180D20D9EE3/Sekakuoro_Unreality_Lauluja_tahtien_takaa",
                "en": "http://www.stoa.fi/en/events/event/56775A94F16F4F1B1C7B8180D20D9EE3/Sekakuoro_Unreality_Songs_from_Beyond_the_Stars"
            },
            "description": {
                "fi": "<p>Musiikkia peleistä, elokuvista ja TV-sarjoista kuorolle sovitettuna.</p><p>Uteliaisuus, unelma lentämisestä, tähtitaivas, kiehtovat mysteerit – kun tarinan aihe ylittää arkisen maailman ulottuvuudet, tarvitaan avuksi näyttämö, jossa vain mielikuvitus on rajana: avaruus.</p><p>Unreality esittää Stoan teatterisalissa kokoelman eeppisiä avaruusteemaisia kappaleita elokuvista, peleistä ja TV-sarjoista. Konsertissa kuullaan musiikkia muun muassa Star Trekistä, klassikkoanime Sailor Moonista ja Civilization Beyond Earth -pelistä kuorolle sovitettuna.</p><p>Kesto: 1 tunti</p>",
                "en": "<p>Music from games, movies and TV series arranged for choir.</p><p>Curiosity, the dream of flying, the starry sky, fascinating mysteries—when the subject of a story transcends the dimensions of everyday life, a stage is needed where the only limit is your imagination: space.</p><p>Unreality presents a collection of epic space-themed pieces from movies, games, and TV series in Stoa’s theatre hall. The concert features music from—among others—Star Trek, the classic anime Sailor Moon, and the game Civilization: Beyond Earth, all arranged for choir.</p><p>Duration: 1 hour</p>"
            },
            "name": {
                "fi": "Sekakuoro Unreality: Lauluja tähtien takaa",
                "sv": "Sekakuoro Unreality: Lauluja tähtien takaa",
                "en": "Sekakuoro Unreality: Songs from Beyond the Stars"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68028/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67374",
            "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/kulke:755/?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-humiseva-harju-malmitalo-21375774/",
                        "sv": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21375774/",
                        "en": "https://www.lippu.fi/event/kino-helios-humiseva-harju-malmitalo-21375774/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1507855,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T09:15:37.587626Z",
                    "last_modified_time": "2026-03-03T09:15:37.587652Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781053.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507855/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T09:15:37.464651Z",
            "last_modified_time": "2026-03-20T01:13:30.973805Z",
            "date_published": null,
            "start_time": "2026-03-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_",
                "en": "http://www.malmitalo.fi/en/events/event/BD586A2A94C2304773E6D679690A550A/Humiseva_harju_16_"
            },
            "description": {
                "fi": "<p>Warner Bros. Pictures sekä Oscar®- ja BAFTA® -palkittu elokuvantekijä Emerald Fennell tuovat valkokankaille elokuvan Humiseva harju, jota tähdittävät Oscar®- ja BAFTA®-ehdokkaat Margot Robbie ja Jacob Elordi.</p><p>Rohkeassa ja omaperäisessä tulkinnassa yhdestä aikamme suurimmista rakkaustarinoista, Emerald Fennellin Humisevassa harjussa, nähdään Margot Robbie Cathyna ja Jacob Elordi Heathcliffinä, joiden kielletty intohimo toisiaan kohtaan muuttuu romanttisesta huumaavaksi eeppiseksi tarinaksi himosta, rakkaudesta ja hulluudesta.</p><p>Elokuvaa tähdittävät myös Oscar®-ehdokas Hong Chau, Shazad Latif, Alison Oliver, BAFTA®-voittaja Martin Clunes ja Ewan Mitchell.<br> <br>Fennell ohjaa omasta käsikirjoituksestaan, joka perustuu Emily Brontën romaaniin Humiseva Harju, ja tuottaa sen yhdessä Oscar®-ehdokas ja BAFTA®-voittaja Josey McNamaran sekä Margot Robbien kanssa. Oscar®-ehdokas Tom Ackerley sekä Sara Desmond ovat vastaavia tuottajia.</p><p>Ikäraja: 16<br>Kesto: 136 min<br>Ensi-ilta: 13.02.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p>"
            },
            "name": {
                "fi": "Humiseva harju (16) – Kino Helios",
                "sv": "Humiseva harju (16) – Kino Helios",
                "en": "Humiseva harju (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67374/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67451",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494079,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:57.980227Z",
                    "last_modified_time": "2025-12-04T13:12:57.980242Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781404.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494079/?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-12-04T13:12:57.916477Z",
            "last_modified_time": "2026-03-20T01:13:30.848854Z",
            "date_published": null,
            "start_time": "2026-03-11T15:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!",
                "sv": "Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!",
                "en": "Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4CE4A59A56EF05124DDAF91594A92716/Ympari_maailmaa_lauluja_kuudesta_maanosasta",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4CE4A59A56EF05124DDAF91594A92716/Ympari_maailmaa_lauluja_kuudesta_maanosasta_Jorden_runt_sanger_fran_sex_kontinenter_",
                "en": "http://www.kanneltalo.fi/en/events/event/4CE4A59A56EF05124DDAF91594A92716/Around_the_world_songs_from_six_continents"
            },
            "description": {
                "fi": "<p>Lähde kanssamme musiikkimatkalle Etelä-Afrikkaan, Nigeriaan, Viroon, Kreikkaan, Thaimaahan, Filippiineille, Kanadaan, Chileen ja Tongaan!</p><p>Tässä koko perheen konsertissa kuullaan lauluja peräti 11 eri kielellä Luoteis-Helsingin musiikkiopiston maailmanmusiikkiorkesteri esittämänä.</p><p>Maailmanmusiikkiorkesterissa on mukana 60 nuorta muusikkoa; musiikkiopiston kuorot ja pianisteja sekä Vilisevät jouset ja Dibidabi-yhtye. Laulut on sovitettu opetushallituksen tuella.  <br> <br>Kesto: 35 min, ei väliaikaa<br>Paikka: Kanneltalon konserttisali<br> <br>Vapaa pääsy!</p>",
                "sv": "<p>Följ med på en musikalisk resa till Sydafrika, Nigeria, Estland, Grekland, Thailand, Filippinerna, Kanada, Chile och Tonga!</p><p>I den här konserten för hela familjen får vi höra sånger på hela elva olika språk, framförda av Luoteis-Helsingin musiikkiopistos världsmusikorkester.</p><p>I världsmusikorkestern deltar 60 unga musiker, musikinstitutets körer och pianister samt grupperna Vilisevät jouset och Dibidabi. Sångerna har arrangerats med stöd från Utbildningsstyrelsen.</p><p>Längd: 35 minuter, ingen paus<br>Plats: Gamlasgårdens konsertsal</p><p>Fritt inträde!</p>",
                "en": "<p>Join us on a musical journey to South Africa, Nigeria, Estonia, Greece, Thailand, the Philippines, Canada, Chile and Tonga!</p><p>This concert for the whole family features songs in no less than 11 different languages performed by the Northwest Helsinki Music Institute (LUHMO) world music orchestra.</p><p>The world music orchestra will include 60 young musicians; choirs and pianists from LUHMO, the Vilisevät jouset and the Dibidabi band. The songs have been arranged with support from the Finnish National Agency for Education.  <br> <br>Duration: 35 min, no intermission<br>Location: Kanneltalo Concert Hall<br> <br>Free entry!</p>"
            },
            "name": {
                "fi": "Ympäri maailmaa — lauluja kuudesta maanosasta",
                "sv": "Ympäri maailmaa — lauluja kuudesta maanosasta (Jorden runt – sånger från sex kontinenter)",
                "en": "Around the world – songs from six continents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67451/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68029",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494643,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-26T15:13:15.810620Z",
                    "last_modified_time": "2026-01-26T15:13:15.810633Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784128.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494643/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-26T15:13:15.641487Z",
            "last_modified_time": "2026-03-20T01:13:30.701770Z",
            "date_published": null,
            "start_time": "2026-03-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nuorten Uuden Musiikin Ilta (NUMI) on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.",
                "sv": "Nuorten Uuden Musiikin Ilta (NUMI) är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.",
                "en": "Nuorten Uuden Musiikin Ilta (NUMI) is a free-of-charge music event where artists aged 13–29 have a chance to perform at a low threshold."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B0EF10352C68193F6788CB6F63494284/NUMI_Nuorten_Uuden_Musiikin_Ilta",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B0EF10352C68193F6788CB6F63494284/NUMI_Nuorten_Uuden_Musiikin_Ilta",
                "en": "http://www.stoa.fi/en/events/event/B0EF10352C68193F6788CB6F63494284/NUMI_Evening_of_New_Music_from_Young_People"
            },
            "description": {
                "fi": "<p>Nuorten Uuden Musiikin Ilta (NUMI) on maksuton musiikkitapahtuma, jossa 13–29-vuotiaat artistit pääsevät esiintymään matalalla kynnyksellä.</p><p>Lavalle nousee kahdeksan avoimen haun kautta valittua esiintyjää, jotka esittävät 1–2 kappaletta ja saavat palautetta kokeneilta mentoreilta. NUMI tukee nuoria musiikintekijöitä kehittymään ja verkostoitumaan.</p><p>Seuraa @numi.hel Instagramissa ja laita DM, jos haluat mukaan järjestämään – tehdään yhdessä tilaa uudelle musiikille!</p><p>Tapahtuma on ilmainen ja päihteetön.</p><p>Kesto: 2 tuntia<br>Kieli: monikielinen</p>",
                "sv": "<p>Nuorten Uuden Musiikin Ilta (NUMI) är ett avgiftsfritt musikevenemang där artister i åldern 13–29 år får uppträda med låg tröskel.</p><p>Åtta artister som valts ut i en öppen ansökan stiger upp på scenen för att framföra 1–2 låtar, och får respons från erfarna mentorer. NUMI hjälper unga musiker att utvecklas och skapa nätverk.</p><p>Följ @numi.hel på Instagram och skicka ett DM och du vill vara med och arrangera – tillsammans skapar vi plats för ny musik!</p><p>Evenemanget är gratis och rusmedelsfritt.</p><p>Längd: 2 timmar<br>Språk: flerspråkig</p>",
                "en": "<p>Nuorten Uuden Musiikin Ilta (NUMI) is a free-of-charge music event where artists aged 13–29 have a chance to perform at a low threshold.</p><p>Eight performers, selected through an open call, will take to the stage to perform one or two songs and receive feedback from experienced mentors. NUMI supports young musicians in developing their craft and networking.</p><p>Follow @numi.hel on Instagram and DM us if you want to get involved – let's make room for new music together!</p><p>Admission is free and the event is drug and alcohol free.</p><p>Duration: 2 hours<br>Language: multilingual</p>"
            },
            "name": {
                "fi": "NUMI – Nuorten Uuden Musiikin Ilta",
                "sv": "NUMI – Nuorten Uuden Musiikin Ilta",
                "en": "NUMI – Evening of New Music from Young People"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68029/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67736",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494498,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-15T13:13:42.887201Z",
                    "last_modified_time": "2026-01-15T13:13:42.887213Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782667.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494498/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-15T13:13:42.777784Z",
            "last_modified_time": "2026-03-20T01:13:30.566258Z",
            "date_published": null,
            "start_time": "2026-03-11T15:00:00Z",
            "end_time": "2026-03-11T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!",
                "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!",
                "en": "Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/990228BA46BA241DC7A6EE08A13C16EC/Kevainen_saippua_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/990228BA46BA241DC7A6EE08A13C16EC/Vartval_",
                "en": "http://www.stoa.fi/en/events/event/990228BA46BA241DC7A6EE08A13C16EC/Spring_soap_"
            },
            "description": {
                "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Luodaan uniikki saippua leikkaamalla saippuamassaa, yhdistämällä itse suunnitellut kuviot vesihauteessa sulatettuun massaan ja koristelemalla luonnonmateriaaleilla.</p><p>Jokaiselle osallistujalle on varattu yksi saippua. Alle 10-vuotiaat työskentelevät yhdessä aikuisen kanssa.</p><p>Huom! Mukaan mahtuu max. 40 osallistujaa, kerrallaan noin 20 henkilöä.</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan ravintolassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Stoan Ravintola<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!</p><p>I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. Kvällste och saft serveras för deltagarna i Stoas restaurang.</p><p>ons 11.3 Vårtvål <br>Vi skapar en unik tvål genom att skära tvålmassa, kombinera egendesignade mönster med massan som smälts i vattenbad och dekorera med naturmaterial. En tvål per deltagare har reserverats.</p><p>Barn under 10 år arbetar tillsammans med en vuxen. <br>Obs! Högst 40 deltagare, ca 20 i taget, får plats.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Stoas restaurang<br>Längd: 120 min. per session<br>Verkstäderna leds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!</p><p>Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Participants will be served evening tea or juice at Stoa’s restaurant.</p><p>Wed 11 March Spring soap <br>Create a unique bar of soap by cutting soap paste, combining patterns you have designed yourself with paste melted in a water bath and decorating the soap bar with natural materials. One bar of soap will be provided for each participant.</p><p>Children under the age of 10 must work together with an adult. <br>Please note! There is room for around 40 participants, 20 participants at a time.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Stoa restaurant<br>Duration: 120 min per session<br>Instructions in Finnish, French and English <br>Free entry. No advance registration required. Stoa will provide evening tea for participants.</p>"
            },
            "name": {
                "fi": "Keväinen saippua – Taidetauko-työpajat",
                "sv": "Vårtvål – Konstpaus-verkstäder",
                "en": "Spring soap – Taidetauko art workshops"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67736/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67373",
            "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/kulke:755/?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-isanpaiva-malmitalo-21375775/",
                        "sv": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375775/",
                        "en": "https://www.lippu.fi/event/kino-helios-isanpaiva-malmitalo-21375775/"
                    },
                    "description": null,
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1508333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T10:12:54.129377Z",
                    "last_modified_time": "2026-03-03T10:12:54.129392Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781052.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1508333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T10:12:53.997765Z",
            "last_modified_time": "2026-03-20T01:13:30.446494Z",
            "date_published": null,
            "start_time": "2026-03-11T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_",
                "en": "http://www.malmitalo.fi/en/events/event/1A56EF8B8B86856B4642446AC874570E/Isanpaiva_7_"
            },
            "description": {
                "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori.</p><p>Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Salmenperän luottonäyttelijä Tommi Korpelan rinnalla näyttelevä Tomi Lindfors tuo katkeransuloiseen tarinaan omakohtaista kokemustaan elämästä sivuraiteilla.</p><p>Lindforsin ja Tommi Korpelan vuosikymmenten mittainen tosimaailman ystävyys on vilahtanut aiemmin myös Salmenperän Jussi-palkitussa elokuvassa Tyhjiö.</p><p>Ikäraja: 7<br>Kesto: 99 min<br>Ensi-ilta: 6.3.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>"
            },
            "name": {
                "fi": "Isänpäivä (7) – Kino Helios",
                "sv": "Isänpäivä (7) – Kino Helios",
                "en": "Isänpäivä (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67373/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67820",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494387,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-07T08:13:19.516235Z",
                    "last_modified_time": "2026-01-07T08:13:19.516258Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782932.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494387/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-07T08:13:19.332856Z",
            "last_modified_time": "2026-03-20T01:13:30.240672Z",
            "date_published": null,
            "start_time": "2026-03-11T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.",
                "sv": "Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.",
                "en": "A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/17E791828ACE77D3B69EB3C35711B60F/Alakoulukino_Mavka_Metsan_laulu_7_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/17E791828ACE77D3B69EB3C35711B60F/Lagstadiekino_Mavka_7_",
                "en": "http://www.stoa.fi/en/events/event/17E791828ACE77D3B69EB3C35711B60F/Alakoulukino_Mavka_7_"
            },
            "description": {
                "fi": "<p>Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.</p><p>Muinaisista ajoista saakka Ukrainan metsät ovat kätkeneet sisäänsä uskomattomia salaisuuksia ja myyttisiä olentoja. Mavka on haltia ja metsän sielu, jonka tehtävä on suojella metsän sydäntä kaikilta vaaroilta, etenkin ihmisiltä.</p><p>Lucas on läheisen kylän asukas, joka haaveilee urasta muusikkona. Kun heidän maailmansa kohtaavat, tapahtuu jotain odottamatonta: he rakastuvat. Mutta ihmisten ja metsän asukkaiden joutuessa törmäyskurssille vanhan sahalaitoksen perijättären juonien seurauksena, myös Mavka ja Lucas ajautuvat vastakkain. Voittaako rakkaus epäilyksen ja pelon?</p><p>Elokuvasta löytyy myös Koulukinon oppimateriaali teemoilla: metsä, taruolennot, ihmisen ja luonnon välinen suhde, luonnonsuojelu, musiikki, ihmisen ikääntyminen <br>https://www.koulukino.fi/oppimateriaalit/mavka-metsan-laulu</p><p>Ensi-ilta: 02.08.2024<br>Ikäraja: 7<br>Pituus: 99 min.<br>Ohjaus: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Käsikirjoitus: Yaroslav Voytseshek, Lesya Ukrainka<br>Genret: Animaatio, Koko perheen<br>Kieli: suomi<br>Vapaa pääsy, ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>",
                "sv": "<p>Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.</p><p>Sedan urminnes tider har det i skogarna i Ukraina funnits otroliga hemligheter och mytiska varelser dolda för människor. Mavka är en alv och skogens själ vars uppgift är att skydda skogens hjärta från alla faror, särskilt från människor.</p><p>Lucas bor i en närliggande by och drömmer om en karriär som musiker. När deras världar möts, händer något oväntat: de blir förälskade i varandra. Men när människor och skogsinvånare hamnar på kollisionskurs till följd av den lömska arvtagerskan för det gamla sågverket, ställs Mavka och Lucas också mot varandra. Kan kärleken övervinna tvivel och rädsla?</p><p>Finlands filmstiftelses importstöd 2024<br>Premiär: 2.8.2024<br>Åldersgräns: 7<br>Längd: 99 min.<br>Regi: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Manus: Yaroslav Voytseshek, Lesya Ukrainka<br>Genre: Animation, Hela familjen<br>Språk: finska</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>",
                "en": "<p>A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders.</p><p>Since ancient times, the Ukrainian forests have hidden incredible secrets and mythical creatures. Mavka is a female spirit and the soul of the forest, whose mission is to protect the heart of the forest from all dangers, especially people.</p><p>Lucas is a resident of a nearby village who dreams of a career as a musician. When their worlds meet, something unexpected happens: they fall in love. But when the lives of people and forest dwellers collide as a result of the schemes of an heiress of an old sawmill, even Mavka and Lucas end up on opposite paths. Can love overcome doubt and fear?</p><p>Finnish Film Foundation’s import subsidy 2024<br>Premiere: 2 August 2024<br>Age limit: 7<br>Length: 99 min<br>Director: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Screenplay: Yaroslav Voytseshek, Lesya Ukrainka<br>Genres: Animation, Family<br>Language: Finnish</p><p>Pre-registration for groups: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Alakoulukino: Mavka – Metsän laulu (7)",
                "sv": "Lågstadiekino: Mavka (7)",
                "en": "Alakoulukino: Mavka (7)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67820/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68008",
            "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:29/?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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494611,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-22T16:13:39.488927Z",
                    "last_modified_time": "2026-01-22T16:13:39.488945Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780052.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494611/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-22T16:13:39.369900Z",
            "last_modified_time": "2026-03-20T01:13:30.041062Z",
            "date_published": null,
            "start_time": "2026-03-11T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Svengaavassa latvialaisanimaatiossa lapset ja koirajengi nousevat barrikadeille asuinympäristönsä puolesta.",
                "sv": "I denna svängiga lettiska animation ställer sig barnen och ett gäng hundar på barrikaderna för sin boendemiljö.",
                "en": "In this swinging Latvian animated film, children and a gang of dogs take to the barricades to defend their living environment."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/51A2354CA1F72EBF508AB8A11994C4B2/Jacob_Mimmi_ja_puhuvat_koirat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/51A2354CA1F72EBF508AB8A11994C4B2/Jacob_Mimmi_och_de_talande_hundarna_",
                "en": "http://www.vuotalo.fi/en/events/event/51A2354CA1F72EBF508AB8A11994C4B2/Jacob_Mimmi_and_the_Talking_Dogs_"
            },
            "description": {
                "fi": "<p>Svengaavassa latvialaisanimaatiossa lapset ja koirajengi nousevat barrikadeille asuinympäristönsä puolesta.</p><p>Onko kehitystä vain se, että jyrätään pois kaikki vanha? Vai voiko kunnostamalla saada vanhasta uudenveroista? Tuore latvialaisanimaatio pureutuu kaupunkikulttuurin kysymyksiin samalla kun se kertoo kahden serkuksen vauhdikkaasta seikkailusta – ja laumasta mainioita karvaturreja.<br>Jacobin isä lähtee viikoksi työmatkalle ja jättää vastahakoisen poikansa sukulaisten luo Riian Maskačka-lähiöön. Kaupungin vilinään tottuneelle Jacobille vanha puutaloalue on rangaistus, eikä Mimmi-serkustakaan tunnu olevan kaveriksi. Tylsää!<br>Pian tilanne kuitenkin muuttuu, kun grynderi päättää rakentaa valtavan pilvenpiirtäjän keskelle Maskačkaa. Mimmi ja Jacob ryhtyvät vastarintaan. Puiston ja puiden on jäätävä ennalleen! Mutta mitä he mahtavat aikuisten maailmassa, kun vastaan asettuvat kaivurit, eurot ja hevosvoimat?</p><p>Onneksi Mimmin ja Jacobin seuraksi barrikadeille nousee myös paikallinen kulkukoirajengi, joka koiruuksien lisäksi osaa puhua ihmisten kieltä!</p><p>Edmunds Jansonsin ohjaama elokuva perustuu Luize Pastoren lastenkirjaan Dog Town. Sympaattisen tarinan ytimessä sykkii serkusten ja koirajengin yhteistyö ja mielikuvituksen voima. Elokuvan ilahduttava ilme on kuvittaja Elina Brasliņan kädenjälkeä.</p><p>Kirjoittaja: Katariina Rönnqvist, R&A 2019<br>Kesto: 72 min  <br>Virallinen ikärajaluokitus: S <br>Suositellaan: 3.–6. lk <br>Kieli: latvia <br>Tekstitys: suomi <br>Ryhmille ennakkoilmoittautuminen Kultuksen kautta: kultus.hel.fi Koulukino: Jacob, Mimmi ja puhuvat koirat</p><p>https://kultus.hel.fi/fi/event/kultus:agnoifdfvu?categories=yso%3Ap17179&returnPath=%2Fsearch</p>",
                "sv": "<p>I denna svängiga lettiska animation ställer sig barnen och ett gäng hundar på barrikaderna för sin boendemiljö.</p><p>Handlar utveckling bara om att ta bort allt det gamla? Eller kan man få något som är så gott som nytt genom att rusta upp det gamla? Denna färska lettiska animation tar sig an frågor kring stadskultur samtidigt som den berättar om två kusiners fartfyllda äventyr – och en flock förträffliga hundar.<br>Jacobs pappa reser bort i jobbet för en vecka och lämnar sin motvillige son hos släktingar i Maskačka, en förort till Riga. För Jacob, som är van vid stadens liv och rörelse, är det gamla trähusområdet ett straff, och kusinen Mimmi verkar inte vara någon vidare kompis. Tråkigt!<br>Men snart förändras allt, när en grynder bestämmer sig för att bygga en enorm skyskrapa mitt i Maskačka. Mimmi och Jacob tar upp kampen. Parken och träden måste bevaras! Men vad kan de göra i de vuxnas värld, med grävmaskiner, euro och hästkrafter emot sig?</p><p>Lyckligtvis får Mimmi och Jacob sällskap på barrikaderna av ett gäng lokala strykarhundar, som förutom hundspråk även kan tala människornas språk!</p><p>Filmen, som är regisserad av Edmunds Jansons, är baserad på barnboken Dog Town av Luize Pastore. I centrum för den sympatiska berättelsen står samarbetet mellan kusinerna och hundgänget och fantasins kraft. Filmens förtjusande visuella uttryck har skapats av illustratören Elina Brasliņa.<br>Manusförfattare: Katariina Rönnqvist, R&A 2019</p><p>Längd: 72 min<br>Officiell åldersgräns: Tillåten för alla åldrar. <br>Rekommenderas: åk 3–6 <br>Språk: lettiska <br>Textning: finska <br>Förhandsanmälan för grupper via Kultus: kultus.hel.fi</p>",
                "en": "<p>In this swinging Latvian animated film, children and a gang of dogs take to the barricades to defend their living environment.</p><p>Is simply demolishing everything old the only form of development? Or could old things be made as good as new through restoration? This fresh Latvian animated film explores issues of urban culture while telling the story of two cousins’ wild adventures – and a group of furry friends.<br>Jacob’s father leaves for a business trip for a week, leaving his reluctant son to stay with relatives in the Maskačka suburb of Riga. For Jacob, who is used to the hustle and bustle of the city, the old wooden building area is a punishment, and his cousin Mimmi does not seem to make for much of a friend either. Boring!<br>However, things soon change when a developer decides to build a huge skyscraper in the middle of Maskačka. Mimmi and Jacob resist. The park and the trees must remain as they are! But what can they do in a world of adults, going against excavators, money and horsepower?</p><p>Luckily, Mimmi and Jacob are joined at the barricades by a local gang of stray dogs who, in addition to their dog antics, speak human!</p><p>The film, directed by Edmunds Jansons, is based on the children’s book Dog Town by Luize Pastore. The heartwarming story centres around the collaboration between the cousins and the dogs and the power of imagination. The film’s delightful visual style is the work of illustrator Elina Brasliņa.</p><p>Written by: Katariina Rönnqvist, L&A 2019<br>Duration: 72 min<br>Official age rating: suitable for all ages <br>Recommended to: grades 3–6 <br>Language: Latvian <br>Subtitles: Finnish <br>Advance registration for groups via Kultus: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Jacob, Mimmi ja puhuvat koirat – Koulukino",
                "sv": "Jacob, Mimmi och de talande hundarna – Koulukino",
                "en": "Jacob, Mimmi and the Talking Dogs – Koulukino"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68008/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67185",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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-caisa-kulttuurikeskus-caisa-21109797/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109797/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109797/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494245,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-18T12:13:47.193075Z",
                    "last_modified_time": "2025-12-18T12:13:47.193090Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778520.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494245/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-18T12:13:47.020134Z",
            "last_modified_time": "2026-03-20T01:13:29.849662Z",
            "date_published": null,
            "start_time": "2026-03-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA",
                "sv": "Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.",
                "en": "WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/87B826D6735E3A67314434CD27D34CBC/EAT_THE_KIMONO",
                "sv": "http://www.caisa.fi/sv/evenemang/event/87B826D6735E3A67314434CD27D34CBC/EAT_THE_KIMONO",
                "en": "http://www.caisa.fi/en/events/event/87B826D6735E3A67314434CD27D34CBC/EAT_THE_KIMONO"
            },
            "description": {
                "fi": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>The second film in the series, EAT THE KIMONO, is a brilliant documentary about Hanavagi Genshu, a Japanese feminist and avant-garde dancer and performer, who has spent her life defying her conservative culture's contempt for independence and unconventionality. She denounced Emperor Hirohito as a war criminal and dismissed death threats made against her by right-wing groups.</p><p>“You mustn’t be eaten by the kimono,” says Genshu, making reference to the traditional Japanese dress designed to restrict movement for women, “You must eat the kimono and gobble it up.”</p><p>English subtitles included. Duration 61 minutes.</p><p>Naiset, jotka eivät taivu yhteiskunnan normeihin, ajautuvat usein patriarkaatin, rasismin, ableismin ja heteronormatiivisuuden vuoksi yhteiskunnan marginaaleihin. March Through The Frame on neljän viikon mittainen dokumenttiohjelmisto, joka todistaa näitä tarinoita ja asettaa naiset keskiöön omien kertomustensa tekijöinä.</p><p>Olipa kyse punkin keinoin kapinoivista lesboista Isossa-Britanniassa, performanssitaiteilijan kiivaasta kritiikistä Japanin konservatiivista kulttuuria kohtaan, suorapuheisista naisista Jamaikan rastafari-liikkeen muovaajina tai argentiinalaisen elokuvantekijän voimakkaasta kuulonalenemaa käsittelevästä teoksesta, jokainen tarina todistaa feminististä ajatusta siitä, että henkilökohtainen on poliittista.</p><p>Suurinta osaa näistä dokumenteista ei ole aiemmin esitetty Suomessa. Kaikissa elokuvissa on englanninkieliset tekstitykset.<br>Ohjelmiston on kuratoinut kulttuurituottaja Adalmiina Erkkola, jota kiinnostaa elokuvan poliittinen potentiaali. Hän juontaa myös No Man’s Land -radio-ohjelmaa IDA Helsingissä.</p>",
                "sv": "<p>Dokumentärserien March Through the Frame, som visas på Caisa, lyfter fram kvinnornas berättelser.</p><p>Kvinnor som inte fogar sig efter samhällets normer drivs ofta ut i dess marginaler på grund av patriarkatet, rasism, funkofobi och heteronormativitet. March Through The Frame är fyra veckor av dokumentärer som vittnar om dessa berättelser och ställer kvinnorna i centrum för deras egna berättelser.</p><p>Oavsett om det handlar om lesbiska i Storbritannien som revolterar genom punken, en performancekonstnärs häftiga kritik mot den konservativa japanska kulturen, frispråkiga kvinnor som formar den jamaicanska rastafarirörelsen eller ett verk om en argentinsk filmskapares kraftiga hörselnedsättning, vittnar varje berättelse om den feministiska tanken att det personliga är politiskt.</p><p>De flesta av dessa dokumentärer har aldrig tidigare visats i Finland. Alla filmer har engelsk textning.</p><p>Kurator för programmet är kulturproducenten Adalmiina Erkkola, som är intresserad av filmens politiska potential. Hon leder också radioprogrammet No Man’s Land på IDA Helsinki.</p><p><b>Kino Caisa: Filmer i serien March Through the Frame</b><br>3 mars 2026 kl. 19 – Omega Rising: Women of the Rastafari<br>10 mars 2026 kl. 19 – Eat the Kimono<br>17 mars 2026 kl. 19 – Rebel Dykes<br>24 mars 2026 klo 19 – 8 Stories About My Hearing Loss</p><p>Filmvisningens längd: ca 1–1,5 h</p>",
                "en": "<p>WOMEN’S STORIES THROUGH DOCUMENTARY CINEMA</p><p>Emotional, weird, too sensitive, too much… Women who don’t follow normative scripts often pay a price for not conforming.</p><p>MARCH THROUGH THE FRAME is a four-week programme of documentaries where these women are centred as narrators in their own right. Drawing on personal and community archives, each Tuesday we celebrate the joy and strength in our collective refusals and journeys of self-discovery.</p><p>The second film in the series, EAT THE KIMONO, is a brilliant documentary about Hanavagi Genshu, a Japanese feminist and avant-garde dancer and performer, who has spent her life defying her conservative culture's contempt for independence and unconventionality. She denounced Emperor Hirohito as a war criminal and dismissed death threats made against her by right-wing groups.</p><p>“You mustn’t be eaten by the kimono,” says Genshu, making reference to the traditional Japanese dress designed to restrict movement for women, “You must eat the kimono and gobble it up.”</p><p>English subtitles included. Duration 61 minutes.</p><p>The programme is curated by Adalmiina Erkkola, a cultural producer interested in the political potential of film. They also host the No Man’s Land radio show at IDA Helsinki.</p>"
            },
            "name": {
                "fi": "EAT THE KIMONO – Kino Caisa: March Through the Frame",
                "sv": "EAT THE KIMONO – Kino Caisa: March Through the Frame",
                "en": "EAT THE KIMONO – Kino Caisa: March Through the Frame"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67185/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67611",
            "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/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/name-21006857",
                        "sv": "https://www.lippu.fi/event/name-21006857",
                        "en": "https://www.lippu.fi/event/name-21006857"
                    },
                    "description": null,
                    "price": {
                        "fi": "44 €",
                        "sv": "44 €",
                        "en": "44 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493994,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-02T13:12:54.242473Z",
                    "last_modified_time": "2025-12-02T13:12:54.242491Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782101.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493994/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-28T12:13:11.347716Z",
            "last_modified_time": "2026-03-20T01:13:29.717516Z",
            "date_published": null,
            "start_time": "2026-03-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Club For Five kotimaisempana kuin koskaan",
                "sv": "Club For Five är mer inhemsk än någonsin",
                "en": "Club For Five more Finnish than ever"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_-_Suuret_suomalaiset",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_Stora_finlandare",
                "en": "http://www.savoyteatteri.fi/en/events/event/60CDD44619B0610E030BB5D7A05A1A4F/Club_for_Five_Great_Finns"
            },
            "description": {
                "fi": "<p>Club For Five kotimaisempana kuin koskaan</p><p>Tämä konsertti kumoaa lavalle repullisen suomalaisen sydämen kieliä soittavia lauluja eri vuosikymmeniltä. Club For Five pohtii suomalaisuutta omasta näkökulmastaan musiikin ja muistojen kautta. Lauluyhtyeen luotsauksessa matkataan ympäri suomenmaan ja hämmästellään niin kotimaisen musiikin helmiä kuin tulevaisuuden suuruuksia. Konsertti kartoittaa viiden laulajan otannalla, mistä suuret suomalaiset on tehty. Millaista on olla suomalainen.<br> <br>Vanhaa härmäläistä kansanperinnettä tai hassuja hetken villityksiä – suomalaiset sävelet kuvaavat oikeaa elämää, mutta myös rakentavat identiteettiämme ja heijastelevat katajaisen kansamme luonteenpiirteitä. Yhteiseen kulttuuriseen DNA:hamme on tallentunut kaikenlaista Katri-Helenasta Nightwishiin, Dingosta Kuumaa-yhtyeeseen ja Georg Malmsténista Juha-Tapioon. Club For Five käärii kaiken pakettiin luovalla ja yllätyksellisellä otteellaan. Huumori, suuret tunteet ja loisto yhdistyvät tavalla, joka saa kuulijan tuntemaan, että musiikki kiertää suonissa ja sykkii sydämessä. Ihmisäänellä tuotettu a cappella -musiikki ja ainutlaatuinen suomenkieli ovat kuin luodut toisilleen.</p><p>Ikäraja: S</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>Club For Five är mer inhemsk än någonsin</p><p>Den här konserten bjuder på en ryggsäck full av låtar från olika decennier, som talar till finländarnas hjärtan. Club For Five reflekterar över finskhet ur sitt eget perspektiv genom musik och minnen. Sånggruppen leder oss på en resa runtom i Finland där vi får förundra oss över pärlor i den inhemska musiken och framtidens storheter. Genom ett urval av fem sångare kartlägger konserten vad de stora finländarna består av. Hur det är att vara finländare.</p><p>Gammal tavastländsk folktradition eller knasiga infall – de finländska tonerna beskriver det verkliga livet, men bygger också upp vår identitet och återspeglar vårt sega folks karaktär. I vårt gemensamma kulturella DNA finns allt från Katri Helena till Nightwish, från Dingo till Kuumaa och Georg Malmstén till Juha Tapio. Club For Five paketerar allt med ett kreativt och överraskande grepp. Humor, stora känslor och briljans kombineras på ett sätt som får dig att känna musiken cirkulera i dina ådror och slå i ditt hjärta. A cappella-musik som skapas med den mänskliga rösten och det unika finska språket är som gjorda för varandra.</p><p>Åldersgräns: Tillåten för alla åldrar</p><p>Längd ca 2 h, inklusive paus.</p>",
                "en": "<p>Club For Five more Finnish than ever</p><p>This concert will bring to the stage a backpack full of songs from different decades that play the strings of the Finnish heart. Club For Five reflects on Finnishness from its own perspective through music and memories. The vocal ensemble’s journey around Finland will involve enjoying past gems of Finnish music and future greats alike. With a selection of five singers, the concert will map out what great Finns are made of. What it is like to be Finnish.</p><p>Old Härmälä folklore or funny whims of the moment – Finnish tunes not only describe real life, but they also build our identity and reflect the character of our resilient people. Our shared cultural DNA includes everything from Katri Helena to Nightwish, Dingo to Kuumaa and Georg Malmstén to Juha Tapio. Club For Five wraps it all up with a creative and surprising approach. Humour, grand emotions and brilliance combine in a way that makes you feel the music circulating through your veins and beating in your heart. A cappella music, produced with the human voice, and the unique Finnish language are a match made in heaven.</p><p>Age rating: suitable for all ages</p><p>Duration: roughly 2 h, incl. intermission</p>"
            },
            "name": {
                "fi": "Club for Five - Suuret suomalaiset",
                "sv": "Club for Five – Stora finländare",
                "en": "Club for Five – Great Finns"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Helmi Promotion Oy",
                "sv": "Helmi Promotion Oy",
                "en": "Helmi Promotion Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67611/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67486",
            "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/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/",
                        "sv": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/",
                        "en": "https://www.lippu.fi/event/finnair-pilots-big-band-finnair-pilots-big-band-malmitalo-21224116/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29€/27€",
                        "sv": "29€/27€",
                        "en": "29€/27€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494585,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-21T10:13:40.315010Z",
                    "last_modified_time": "2026-01-21T10:13:40.315028Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781540.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494585/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-21T10:13:40.193283Z",
            "last_modified_time": "2026-03-20T01:13:29.604614Z",
            "date_published": null,
            "start_time": "2026-03-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin",
                "en": "http://www.malmitalo.fi/en/events/event/E1A0CD02D82409CE37E1E50BD146494F/Finnair_Pilots_Big_Band_feat_Sami_Pitkamo_Sari_Tuliniemi_-_Lauluja_lentamisesta_ja_vahan_muustakin"
            },
            "description": {
                "fi": "<p>Finnair Pilots´ Big Band palaa jälleen Malmitaloon upeiden solistien, Sami Pitkämön sekä Sari Tuliniemen kera.</p><p>Sari on pitkän linjan finnairilainen sekä tuttu useimpien big bandien riveistä. Konsertissa kuullaan<br>lennokasta musiikkia, Sami Pitkämön levytyskappaleita sekä hienoja big band -klassikoita.</p><p>Tästä konsertista ei tulkintaa eikä tunnelmaa tule puuttumaan.</p><p>Tervetuloa lennolle!</p><p>Kesto: 1 t 45 min, sis. 20 min väliajan</p>"
            },
            "name": {
                "fi": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin",
                "sv": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin",
                "en": "Finnair Pilots´ Big Band feat. Sami Pitkämö & Sari Tuliniemi: - Lauluja lentämisestä ja vähän muustakin"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67486/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67467",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494011,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-03T08:13:08.728071Z",
                    "last_modified_time": "2025-12-03T08:13:08.728117Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781432.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494011/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-03T08:13:08.617891Z",
            "last_modified_time": "2026-03-20T01:13:29.382388Z",
            "date_published": null,
            "start_time": "2026-03-10T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!",
                "sv": "Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!",
                "en": "Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8156A6A6FB98E2A8741FC66E74D984D8/Yhteislaulut",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8156A6A6FB98E2A8741FC66E74D984D8/Allsang",
                "en": "http://www.malmitalo.fi/en/events/event/8156A6A6FB98E2A8741FC66E74D984D8/Singalongs"
            },
            "description": {
                "fi": "<p>Tule mukaan laulamaan! Suositut Malmitalon yhteislaulut jatkuvat keväällä 2026!</p><p>Jukka Okkosen ja Pauli Kainulaisen johdolla jokainen saa laulaa sydämensä kyllyydestä ihania ikisuosikkeja.<br>Yhteislauluja järjestetään Malmitalon pienessä salissa kuukauden ensimmäisinä tiistaina seuraavasti:</p><p>Ti 13.1. klo 17.00<br>Ti 3.2. klo 17.00<br>Ti 10.3. klo 17.00<br>Ti 14.4. klo 17.00<br>Ti 12.5. klo 17.00</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>Kom med och sjung! Den populära allsången på Malms kulturhus fortsätter våren 2026!</p><p>Under ledning av Jukka Okkonen och Pauli Kainulainen får var och en sjunga härliga favoriter med hela sitt hjärta.<br>Allsången ordnas i den lilla salen i Malms kulturhus den första tisdagen i månaden enligt följande:</p><p>Tis 13.1 kl. 17.00<br>Tis 3.2 kl. 17.00<br>Tis 10.3 kl. 17.00<br>Tis 14.4 kl. 17.00<br>Tis 12.5 kl. 17.00</p><p>Längd: 1 h<br>Fritt inträde</p>",
                "en": "<p>Come sing with us! The popular Malmitalo community singalongs will continue in spring 2026!</p><p>Under the direction of Jukka Okkonen and Pauli Kainulainen, everyone can sing their hearts out to a number of wonderful evergreens.<br>Community singalongs will be held in the small hall of Malmitalo on the first Tuesday of the month as follows:</p><p>Tue 13 January at 17.00<br>Tue 3 February at 17.00<br>Tue 10 March at 17.00<br>Tue 14 April at 17.00<br>Tue 12 May at 17.00</p><p>Duration: 1 h<br>Free entry</p>"
            },
            "name": {
                "fi": "Yhteislaulut",
                "sv": "Allsång",
                "en": "Singalongs"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67467/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68007",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1574421,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-09T07:12:53.568582Z",
                    "last_modified_time": "2026-03-09T07:12:53.568599Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1574421/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-09T07:12:53.421392Z",
            "last_modified_time": "2026-03-20T01:13:29.262243Z",
            "date_published": null,
            "start_time": "2026-03-10T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tarkastellaan antiikin Rooman hygieniaa ja jätehuoltoa.",
                "sv": "En titt på hygien och avfallshantering i antikens Rom.",
                "en": "A look at hygiene and waste management in ancient Rome."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5E3E88DE9C9341FAC1836C363FB693D0/Tyovaenopiston_luento_Puhtaus_lika_ja_jatteet_antiikin_Roomassa",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/5E3E88DE9C9341FAC1836C363FB693D0/Renlighet_smuts_och_avfall_i_antikens_Rom",
                "en": "http://www.vuotalo.fi/en/events/event/5E3E88DE9C9341FAC1836C363FB693D0/Cleanliness_dirt_and_waste_in_ancient_Rome"
            },
            "description": {
                "fi": "<p>Tarkastellaan antiikin Rooman hygieniaa ja jätehuoltoa.</p><p>Mitä roomalaiset ajattelivat liasta ja puhtaudesta? Millaisia tietoja meillä on roomalaisten jätteistä ja mitä ne kertovat? Rooman kaupungin lisäksi luennolla puhutaan Pompejin ja Ostian kaupungeista sekä piipahdetaan Rooman provinsseissa.</p><p>Luennoitsijana FT Marja-Leena Hänninen.</p><p>Kesto: 1,5 tuntia</p><p>Kieli: suomi</p><p>Vapaa pääsy</p>",
                "sv": "<p>En titt på hygien och avfallshantering i antikens Rom.</p><p>Hur tänkte romarna kring smuts och renlighet? Vad vet vi om romarnas avfall, och vad berättar det för oss? Förutom staden Rom tar föreläsningen upp Pompeji och Ostia, och vi tar också en titt på Roms provinser.</p><p>Föreläsare FD Marja-Leena Hänninen.</p><p>Längd: 1,5 timmar</p><p>Språk: finska</p><p>Fritt inträde</p>",
                "en": "<p>A look at hygiene and waste management in ancient Rome.</p><p>What did the Romans think about dirt and cleanliness? What kind of information do we have about waste in ancient Rome, and what does it tell us? In addition to the city of Rome, the lecture will focus on the cities of Pompeii and Ostia, and briefly on the Roman provinces.</p><p>Lecture given by PhD Marja-Leena Hänninen.</p><p>Duration: 1.5 h</p><p>Language: Finnish</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Työväenopiston luento: Puhtaus, lika ja jätteet antiikin Roomassa",
                "sv": "Renlighet, smuts och avfall i antikens Rom",
                "en": "Cleanliness, dirt and waste in ancient Rome"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68007/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}