Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&page=27&publisher_ancestor=ahjo%3A00001
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 11941,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=28&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=26&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:68246",
            "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:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1651741,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-17T09:13:04.296916Z",
                    "last_modified_time": "2026-03-17T09:13:04.296935Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786477.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1651741/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-17T09:13:04.136508Z",
            "last_modified_time": "2026-03-20T01:13:40.030909Z",
            "date_published": null,
            "start_time": "2026-03-19T12:00:00Z",
            "end_time": "2026-03-19T14: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk",
                "sv": "http://www.caisa.fi/sv/evenemang/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Konstnarssamtal",
                "en": "http://www.caisa.fi/en/events/event/7971A832C302082647E76FF9ABBC71F0/Bravo_Artist_Talk"
            },
            "provider": null,
            "description": {
                "fi": "<p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson</p><p>Tule kuulemaan, millaista on työskennellä taiteilijana erilaisissa ympäristöissä!</p><p>Tanssitaiteilija ja mehiläishoitaja Helena Krinal on syntynyt ja kasvanut Virossa. Hän muutti Palestiinaan vuonna 2013 ja asuu siellä perheensä kanssa. <br>Lue lisää Helenasta: www.helenakrinal.com</p><p>Ama Kyei on suomalais-ghana­lainen tanssija, tanssinopettaja, koreografi ja doula. Ama työskentelee esimerkiksi Ghanassa, Ruotsissa ja Suomessa. <br>Lue lisää Amasta: amakyei.se</p><p>Aude Busson, alun perin Ranskasta, on asunut Islannissa vuodesta 2005 ja työskentelee siellä esitystaiteilijana ja projektipäällikkönä.<br>Lue lisää Audesta: audebusson.cargo.site</p>",
                "sv": "<p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson</p><p>Kom och lyssna på hur det är att arbeta som konstnär i olika miljöer!</p><p>Danskonstnären och biodlaren Helena Krinal är född och uppvuxen i Estland. Hon flyttade till Palestina 2013 och bor där med sin familj. <br>Läs mer om Helena: www.helenakrinal.com</p><p>Ama Kyei är en finsk-ghanansk dansare, danslärare, koreograf och doula. Ama arbetar bland annat i Ghana, Sverige och Finland. <br>Läs mer om Ama: amakyei.se</p><p>Aude Busson, ursprungligen från Frankrike, har bott i Island sedan 2005, där hon arbetar som performancekonstnär och projektledare.<br>Läs mer om Aude: audebusson.cargo.site</p>",
                "en": "<p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival</p><p>Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival.</p><p>Come and hear what it's like to work as an artist in different environments!</p><p>Dance artist and beekeeper Helena Krinal was born and raised in Estonia. She moved to Palestine in 2013 and lives there with her family. <br>Read more about Helena: www.helenakrinal.com</p><p>Ama Kyei is a Finnish-Ghanaian dancer, dance teacher, choreographer, and doula. Ama works in Ghana, Sweden, and Finland, among other places. <br>Read more about Ama: amakyei.se</p><p>Aude Busson, originally from France, has lived in Iceland since 2005, where she works as a performance artist and project manager.<br>Read more about Aude: audebusson.cargo.site</p>"
            },
            "short_description": {
                "fi": "Bravo!-festivaalin taiteilijakeskustelussa vieraana festivaalilla esiintyvät taiteilijat Helena Krinal, Ama Kyei ja Aude Busson",
                "sv": "Bravo! Festival artist discussion med gästartisterna Helena Krinal, Ama Kyei och Aude Busson",
                "en": "Bravo! Artist Talk is a discussion event with Helena Krinal, Ama Kyei, and Aude Busson, who are performing at the festival"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Bravo! Artist Talk – Bravo!-festivaalin taiteilijakeskustelu",
                "sv": "Bravo! Konstnärssamtal – Bravo! Festival artist discussion",
                "en": "Bravo! Artist Talk – Bravo! Artist Talk discussion event"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68246/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68130",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494901,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-19T10:12:54.257006Z",
                    "last_modified_time": "2026-02-19T10:12:54.257017Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785626.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494901/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-19T10:12:54.135358Z",
            "last_modified_time": "2026-03-20T01:13:39.910394Z",
            "date_published": null,
            "start_time": "2026-03-19T11:00:00Z",
            "end_time": "2026-03-19T13: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla",
                "en": "http://www.caisa.fi/en/events/event/1BC0B58D78F8A0BE102185CD004D14BD/Taiteilijaresidenssi_Bravo_Festivaalilla"
            },
            "provider": null,
            "description": {
                "fi": "<p>Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon.</p><p>Bravo!-festivaali järjestetään pääkaupunkiseudulla. Festivaali keskittyy pohjoismais-baltialaiseen esittävään taiteeseen lapsille ja nuorille.</p><p>Residenssissä työskentelevät taiteilijat Satu Tani ja Maima Tani. Residenssissä he kehittävät lapsille ja nuorille suunnatun esittävän taiteen muotoja omassa työssään. Yleisöllä on mahdollisuus kurkistaa residenssiin kahdessa  Avoimet ovet tuokiossa.</p><p>Satu ja Maima Tani ovat sisaruksia ja taiteilijatyöpari. Satu työskentelee eri rooleissa tuetun taiteen kentällä ja hänellä on kuvataiteen ylempi AMK-tutkinto. Maima on Invalidiopistolta valmistunut kulta-alan artesaani ja tehnyt kuvataidetta lapsesta saakka. Kun Maima ei ole virkkaamassa jättiläismeduusoja tai piirtämässä äärimmäisen tarkkoja teoksiaan, hän tekee Satun kanssa muun muassa performanssitaidetta ja lyhytelokuvia. Yhdessä Tanit tutkivat taidetta, kommunikaatiota ja erilaisia maailmassa olemisen moodeja. Molemmat kuuluvat neurovähemmistöön ja työskentelevät Helsingissä. <br> <br>Residenssi toteutetaan osana kansainvälistä Shifting the Stage -hanketta<br> <br>Suomen Assitejn tuottama Bravo!-festivaali, Ruotsin Assitejn ja Teatercentrumin omistama bibu-festivaali, Imaginate Edinburgh International Theatre Festival sekä norjalainen Showbox-festivaali ovat käynnistäneet yhteisen hankkeen, jossa festivaalit sitoutuvat tarjoamaan esiintymismahdollisuuksia ja tukemaan vammaisten ja vähemmistössä olevien taiteilijoiden taiteellista työskentelyä. Hankkeessa tarjotaan rahallista tukea, residenssitiloja, ammatillista ohjausta sekä verkostoitumismahdollisuuksia hankkeessa mukana oleville taiteilijoille.</p><p>Sopii kaiken ikäisille<br> <br>Vapaa pääsy</p><p>Lue lisää Taneista:<br>https://satutani.pb.gallery/tanitani<br> <br>Lue lisää Shifting the Stage -hankkeesta:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage/<br> <br>Lue lisää Shifting the Stage -hankkeen laboratoriosta Skotlannissa:<br>https://www.imaginate.org.uk/artists/projects/shifting-the-stage-lab/</p>"
            },
            "short_description": {
                "fi": "Satu ja Maima Tanin merellinen installaatio jossa yleisö pääsee tutustumaan mm. “varvaskieltä” puhuvaan Merivuokkoon."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "sv": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet",
                "en": "Taiteilijaresidenssi Bravo! Festivaalilla – Satu ja Maima Tani: Avoimet ovet"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68130/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67702",
            "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: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:354/?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:733/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hopeacine-kalevala-kullervon-tarina-4074272/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494573,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T14:14:07.339550Z",
                    "last_modified_time": "2026-01-20T14:14:07.339607Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782446.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494573/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api"
                }
            ],
            "created_time": "2026-01-20T14:14:07.202475Z",
            "last_modified_time": "2026-03-20T01:13:39.768399Z",
            "date_published": null,
            "start_time": "2026-03-19T11: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_tekijavieras_nayttelija_Elias_Salonen",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_Kullervon_tarina_gastande_filmskapare_skadespelare_Elias_Salonen",
                "en": "http://www.malmitalo.fi/en/events/event/F0DBDC03EFE37E29544CE1AFC84999FD/HopeaCine_Kalevala_The_story_of_Kullervo_author_guest_actor_Elias_Salonen"
            },
            "provider": null,
            "description": {
                "fi": "<p>Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.</p><p>Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi. HopeaCine näytökset löydät myös Cinema Orionista ja Vuotalolta.</p><p>Antti J. Jokisen ja Jorma Tommilan käsikirjoittama historiallinen ja toiminnallinen draamaelokuva on saanut inspiraationsa Kalevalasta.</p><p>Kullervon tarinan pääosassa nähdään Elias Salonen ja toista pääroolia Untamoa näyttelee Jussi-palkittu Eero Aho. Muissa rooleissa ovat muun muassa Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) ja Ronja Orasta (Aino).</p><p>Elokuva käsittelee armoa, merkityksellisen elämän kaipuuta ja itsensä löytämistä sekä koston, mutta myös oman perheen rakastamisen teemoja. Sen selkärangan muodostavat suomalainen luonto, vanhanajan heimosota, muinaiset myytit ja kalevalainen mytologia.</p><p>Ikäraja: 16<br>Kesto: 143 min<br>Ensi-ilta: 16.01.2026<br>Kieli: suomi<br>Tekstitys: suomi</p>",
                "sv": "<p>I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.</p><p>Till varje föreställning bjuds filmskapare eller filmexperter in som gäster, som efter föreställningen berättar om processen för att göra filmen och erbjuder nytt att tänka på för att fördjupa filmvisningen. HopeaCine-föreställningarna finns även på Cinema Orion och Nordhuset.</p><p>Manuskriptet till den historiska och actionfyllda dramafilmen är skriven av Antti J. Jokinen och Jorma Tommila och är inspirerad av Kalevala.</p><p>I Kullervon tarina spelar Elias Salonen huvudrollen och den andra huvudrollen, Untamo, spelas av Eero Aho, som tidigare prisbelönts med Jussi-priset. Övriga roller spelas av Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) och Ronja Orasta (Aino).</p><p>Filmen behandlar teman som barmhärtighet, längtan efter ett meningsfullt liv och självupptäckt, samt hämnd, men också kärleken till den egna familjen. Dess grund består av den finska naturen, forntida stamkrig, gamla myter och Kalevala-mytologin.</p><p>Längd: 143 min<br>Åldersgräns: 16</p>",
                "en": "<p>Designed for seniors, HopeaCine’s programme features new Finnish films once a month.</p><p>Each screening invites filmmakers or film experts as guests, who will discuss the filmmaking process and offer fresh insights to deepen the viewing experience after the film. HopeaCine screenings are also shown at Cinema Orion and Vuotalo.</p><p>Written by Antti J. Jokinen and Jorma Tommila, the historical and action drama film is inspired by the Kalevala.</p><p>The Story of Kullervo stars Elias Salonen in the lead role and Jussi award-winner Eero Aho in the second lead role of Untamo. Other roles feature Ilkka Koivula (Wäinö), Olli Rahkonen (Ilmarinen), Krista Kosonen (Kerttu), Johannes Holopainen (Kalervo), Oona Airola (Marjatta) and Ronja Orasta (Aino).</p><p>The film deals with the themes of mercy, a longing for a meaningful life, self-discovery and revenge, but also loving your own family. The story is built upon Finnish nature, ancient tribal warfare, ancient myths and Kalevala mythology.</p><p>Duration: 143 min<br>Age limit: 16</p>"
            },
            "short_description": {
                "fi": "Senioreille suunnatun HopeaCinen ohjelmistossa nähdään kotimaisia uutuuselokuvia kerran kuussa.",
                "sv": "I HopeaCines program som riktar sig till seniorer visas inhemska nyhetsfilmer en gång i månaden.",
                "en": "Designed for seniors, HopeaCine’s programme features new Finnish films once a month."
            },
            "location_extra_info": null,
            "name": {
                "fi": "HopeaCine: Kalevala: Kullervon tarina + tekijävieras näyttelijä Elias Salonen",
                "sv": "HopeaCine: Kalevala: Kullervon tarina + gästande filmskapare skådespelare Elias Salonen",
                "en": "HopeaCine: Kalevala: The story of Kullervo + author guest actor Elias Salonen"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67807",
            "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/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494384,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:11.019280Z",
                    "last_modified_time": "2026-01-05T15:13:11.019292Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782913.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494384/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-01-05T15:13:10.909471Z",
            "last_modified_time": "2026-03-20T01:13:39.584051Z",
            "date_published": null,
            "start_time": "2026-03-19T10: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7C614BCB5B04261112C00205BA4D6AC6/Ylakoulukino_Je_vida",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7C614BCB5B04261112C00205BA4D6AC6/Hogstadiekino_Je_vida",
                "en": "http://www.stoa.fi/en/events/event/7C614BCB5B04261112C00205BA4D6AC6/Ylakoulukino_Je_vida"
            },
            "provider": null,
            "description": {
                "fi": "<p>Je'vida on historian ensimmäinen koltansaamenkielinen elokuva.</p><p>Se kertoo pakkosuomalaistamisen paineessa taustansa hylänneestä naisesta (Sanna-Kaisa Palo), jonka tarina nähdään kolmessa aikatasossa. Iäkäs kolttasaamelainen nainen Iida joutuu vanhan kotitilan myymisen ja kulttuuriperimän salaamisen suhteen kahden vaiheille, sillä pois tukahdutettu luonnonläheinen maailma alkaa hiipiä takaisin.</p><p>Hienovarainen mustavalkokuvaus nostaa ympäröivän luonnon menetyksen ja sovinnon metaforaksi. Je’vida (2023) palkittiin kolmella Jussi-palkinnolla; musiikista, äänisuunnittelusta sekä pukusuunnittelusta.</p><p>Dokumenttielokuvien ohjaajana mainetta niittäneen Katja Gauriloffin toinen pitkä fiktio Je’vida on maailman ensimmäinen koltansaamenkielinen pitkä näytelmäelokuva. Gauriloff on itse äitinsä puolelta sukua kolttasaamelainen ja elokuva perustuu tarinoihin, joita ohjaaja on kuullut omilta sukulaisiltaan ja tuttaviltaan. Omaa saamelaistaustaansa ja -identiteettiään Gauriloff on käsitellyt myös dokumenttielokuvissaan Huuto tuuleen (2007) ja Kuun metsän Kaisa (2016).</p><p>Ohjaus: Katja Gauriloff<br>Näyttelijät: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Käsikirjoitus: Katja Gauriloff, Niillas Holmberg<br>Tuotantomaa: Suomi<br> <br>Elokuvaan löytyy Koulukinon oppimateriaali: https://www.koulukino.fi/oppimateriaalit/jevida/</p><p>Oppimateriaalin teemoja: saamelaiset, alkuperäiskansat, kolttasaamelainen kulttuuri, asuntolakoulukokemukset, pakkosuomalaistaminen, kulttuuri-identiteetti, kielen menetys.</p><p>”Je’vida on vuoden parhaita kotimaisia elokuvia ja pelkällä olemassa­olollaan poliittinen teko” -HS<br> <br>Kesto: 103 min<br>Ikäsuositus: 12+ <br>Kieli: koltansaame, suomi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset kultus.hel.fi 13.1. klo 10 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Je'vida, historiens första skoltsamiska film, berättar om en kvinna (Sanna-Kaisa Palo) som övergett sin bakgrund under tvångsförfinskningen.</p><p>Vi får ta del av hennes berättelse i tre tidsnivåer. Den äldre skoltsamiska kvinnan Iida hamnar i valet och kvalet i fråga om att sälja den gamla hemgården och dölja sitt kulturarv, för den naturnära värld som hon trängt undan börjar smyga sig på igen.</p><p>Det subtila svartvita fotot lyfter fram den omgivande naturen som en metafor för förlust och försoning. Je’vida (2023) belönades med tre Jussistatyetter: för musik, ljuddesign och kostymdesign.</p><p>Je’vida är den andra fiktiva långfilmen av Katja Gauriloff, som gjort sig ett namn som regissör av dokumentärfilmer, och världens första långa spelfilm på skoltsamiska. Gauriloff är själv av skoltsamisk släkt på sin mors sida och filmen baserar sig på berättelser som regissören har hört från släktingar och bekanta.</p><p>Gauriloff har behandlat sin samiska bakgrund och identitet även i dokumentärfilmerna Huuto tuuleen (2007) och Kuun metsän Kaisa (2016).</p><p>Regi: Katja Gauriloff<br>Medverkande: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Manus: Katja Gauriloff, Niillas Holmberg<br>Produktionsland: Finland<br> <br>Läromedel från Koulukino finns för filmen: https://www.koulukino.fi/oppimateriaalit/jevida/<br>Läromedlens teman: samer, ursprungsfolk, skoltsamisk kultur, upplevelser från internatskolor, tvångsförfinskning, kulturell identitet, språkförlust.<br>”Je’vida är en av årets bästa inhemska filmer och en politisk handling genom sin blotta existens” -HS<br> <br>Längd: 103 min.<br>Åldersrekommendation: 12+ <br>Språk: skoltsamiska, finska<br>Fritt inträde, obligatorisk anmälan för grupper, kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Je'vida, the first ever film in the Skolt Sámi language.</p><p>Film tells the story of a woman (Sanna-Kaisa Palo) who has abandoned her background under the pressure of forced Finnicisation and whose story is told on three time planes.</p><p>Iida, an elderly Skolt Sámi woman, finds herself torn between selling her old homestead and hiding her cultural heritage, as the natural world she has suppressed begins to creep back in.</p><p>The subtle black and white cinematography elevates the surrounding nature as a metaphor for loss and reconciliation. Je'vida (2023) won three Jussi awards: for music, sound design and costume design.</p><p>Katja Gauriloff's second feature-length fiction film Je'vida is the world's first feature-length drama film in the Skolt Sámi language. Gauriloff herself is related to the Skolt Sámi on her mother's side, and the film is based on stories the director has heard from her own relatives and acquaintances.</p><p>Gauriloff has previously explored her own Sámi background and identity in her documentaries Huuto tuuleen (2007) and Kuun metsän Kaisa (2016).</p><p>Directed by: Katja Gauriloff<br>Cast: Agafia Niemenmaa, Heidi Juliana Gauriloff, Sanna-Kaisa Palo, Seidi Haarla<br>Script: Katja Gauriloff, Niillas Holmberg<br>Production country: Finland</p><p>Koulukino (School Cinema Association) learning materials for the film are available at: https://www.koulukino.fi/oppimateriaalit/jevida/<br>Themes of the learning material: the Sámi people, indigenous peoples, Skolt Sámi culture, boarding school experiences, forced Finnicisation, cultural identity, language loss.</p><p>\"Je'vida is one of the best Finnish films of the year and a political act by its very existence\" – HS<br> <br>Duration: 103 min<br>Recommended age: 12+ <br>Language: Skolt Sámi, Finnish<br>Free admission, groups are required to register in advance: kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "short_description": {
                "fi": "Je'vida on historian ensimmäinen koltansaamenkielinen elokuva.",
                "sv": "Je'vida, historiens första skoltsamiska film, berättar om en kvinna (Sanna-Kaisa Palo) som övergett sin bakgrund under tvångsförfinskningen.",
                "en": "Je'vida, the first ever film in the Skolt Sámi language."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Yläkoulukino: Je´vida",
                "sv": "Högstadiekino: Je´vida",
                "en": "Yläkoulukino: Je´vida"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67807/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67568",
            "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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494358,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:28.950473Z",
                    "last_modified_time": "2026-01-05T09:13:28.950486Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781747.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494358/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:28.774165Z",
            "last_modified_time": "2026-03-20T01:13:39.390019Z",
            "date_published": null,
            "start_time": "2026-03-19T09:45: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Opi_suomea_laulaen_TAYNNA",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/AED19A8B2F42CBC3BD7A88AEA85971D6/Learn_Finnish_by_Singing"
            },
            "provider": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br><b>Kevään laulupajakerrat:</b>  <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand.  <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 och 11.45 <br>To 19.3. kl 10 och 11.45 <br>Ti 26.5. kl 10 och 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group.  <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 and 11.45 <br>Thu 19.3. klo 10 and 11.45 <br>Tue 26.5. klo 10 and 11.45</p>"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67568/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67567",
            "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/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494357,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T09:13:28.354055Z",
                    "last_modified_time": "2026-01-05T09:13:28.354067Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781746.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494357/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-05T09:13:28.181154Z",
            "last_modified_time": "2026-03-20T01:13:39.191854Z",
            "date_published": null,
            "start_time": "2026-03-19T08: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D82DB50A560F559E3DF3B5D71CFDA867/Opi_suomea_laulaen",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D82DB50A560F559E3DF3B5D71CFDA867/Lar_dig_finska_genom_att_sjunga",
                "en": "http://www.stoa.fi/en/events/event/D82DB50A560F559E3DF3B5D71CFDA867/Learn_Finnish_by_Singing"
            },
            "provider": null,
            "description": {
                "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min</p><p>Ryhmään on ilmoittauduttava etukäteen.  <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi  <br> <br><b>Kevään laulupajakerrat:</b>  <br>To 29.1. klo 10 ja 11.45 <br>To 19.3. klo 10 ja 11.45 <br>Ti 26.5. klo 10 ja 11.45</p><p>Vapaa pääsy</p>",
                "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand.  <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p><b>Sångverkstäder: </b><br>To 29.1. kl 10 ja 11.45 <br>To 19.3. kl 10 ja 11.45 <br>Ti 26.5. kl 10 ja 11.45</p>",
                "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group.  <br> Ask for more information and register: sanna.nuutinen@hel.fi <br> <br><b>Spring singing workshops: </b><br>Thu 29.1. klo 10 ja 11.45 <br>Thu 19.3. klo 10 ja 11.45 <br>Tue 26.5. klo 10 ja 11.45</p>"
            },
            "short_description": {
                "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.",
                "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.",
                "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Opi suomea laulaen – Laulupajat maahanmuuttaneille",
                "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare",
                "en": "Learn Finnish by Singing – Song workshops for immigrants"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67567/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67806",
            "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:105/?format=api"
                },
                {
                    "@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"
                },
                {
                    "@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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:10.503113Z",
                    "last_modified_time": "2026-01-05T15:13:10.503126Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782912.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-05T15:13:10.374740Z",
            "last_modified_time": "2026-03-20T01:13:39.010954Z",
            "date_published": null,
            "start_time": "2026-03-19T07: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,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Muumien_maailma",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Mumintrollens_varld",
                "en": "http://www.stoa.fi/en/events/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_The_world_of_Moomins"
            },
            "provider": null,
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä 2026 nähdään rakastetun Muumiperheen seikkailuja restauroidun klassikko-nukkeanimaation muodossa. Maaliskuun Skidikinossa seurataan talvisia tarinoita, ja huhtikuussa ollaan jo keväisemmissä tunnelmissa.<br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>ikäsuositus: Päiväkoti-ikäisille  <br>Paikka: teatterisali<br>Kesto n. 35-40 min  <br>Kieli: suomi  <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: Kultus.hel.fi 13.1. klo 10 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Våren 2026 får vi se den älskade muminfamiljens äventyr i form av en restaurerad klassisk dockanimation. På Skidikino i mars får vi ta del av vinterberättelser, och i april är det redan vårstämning.<br> <br>Till Skidikino hör Pikkukroko-läromedel, som kan laddas ner från Stoas webbplats. Biobesök är temat i det illustrerade materialet.</p><p>Åldersrekommendation: Barn i daghemsåldern  <br>Plats: teatersalen<br>Längd: cirka 35–40 min.  <br>Språk: finska  <br>Fri entré, obligatorisk anmälan för grupper: Kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>In spring 2026, the adventures of the beloved Moomin family will be presented in a restored classic puppet animation. In March, Skidikino will present winter stories, and in April, viewers will be treated to spring vibes.<br> <br>The Skidikino events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from the Stoa website. The illustrated material revolves around going to the cinema. <br> <br>Recommended age: For daycare-age children  <br>Location: theatre hall<br>Duration approx. 35–40 minutes  <br>Language: Finnish  <br>Free admission, registration required for groups: Kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.",
                "en": "Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Skidikino: Muumien maailma",
                "sv": "Skidikino: Mumintrollens värld",
                "en": "Skidikino: The world of Moomins"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67806/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67489",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/",
                        "sv": "https://www.lippu.fi/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/",
                        "en": "https://www.lippu.fi/artist/alvin-youngblood/alvin-youngblood-harts-muscle-theory-usa-4030127/"
                    },
                    "price": {
                        "fi": "29,90€-42,90€",
                        "sv": "29,90€-42,90€",
                        "en": "29,90€-42,90€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494064,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T12:12:53.047655Z",
                    "last_modified_time": "2025-12-04T12:12:53.047670Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781546.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494064/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-04T12:12:52.959656Z",
            "last_modified_time": "2026-03-20T01:13:38.900624Z",
            "date_published": null,
            "start_time": "2026-03-18T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_",
                "en": "http://www.malmitalo.fi/en/events/event/1A6E0A75BD0D9E6C3A98D21FFB44D2C1/Alvin_Youngblood_Hart_s_Muscle_Theory_USA_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Grammy-voittaja Alvin Youngblood Hart on yhdysvaltalainen bluesin ja roots-musiikin mestari, jota arvostetaan “muusikoiden muusikkona”.</p><p>Hän yhdistelee Mississippi-bluesin juuria, 70-luvun rockia ja amerikkalaisen kansanmusiikin vivahteita ainutlaatuisella tavalla. Hartin soitossa kuuluu sekä perinteiden kunnioitus että peloton halu kokeilla uutta — hän on artisti, joka saa sekä akustisen että sähköisen musiikin elämään raakana ja aidon sielukkaana.</p><p>Malmitalolla hän esiintyy trionsa Muscle Theoryn kanssa. Luvassa on kovan luokan musiikkielämys!</p><p>Taj Mahal on sanonut hänestä: <br>“The boy has got thunder in his hands.”</p><p>Kesto: 1 t 30min</p>",
                "sv": "<p>Grammy-vinnaren Alvin Youngblood Hart är en amerikansk mästare inom blues- och rootsmusik, värdesatt som ”musikernas musiker\".</p><p>Han kombinerar sina Mississippi-bluesrötter, 70-tals rock och nyanser av amerikansk folkmusik på ett unikt sätt. Harts spelning omfattar både respekt för traditioner och en orädd vilja att pröva nytt – han är en artist som får både den akustiska och elektroniska musiken att leva som grym och genuint själfull.</p><p>Han uppträder tillsammans med sin trio Muscle Theory på Malms kulturhus. En tuff musikalisk upplevelse utlovas!</p><p>Taj Mahal har sagt följande om honom: <br>“The boy has got thunder in his hands.”</p><p>Längd: 1 h 30 min</p>",
                "en": "<p>Grammy winner Alvin Youngblood Hart is a master of blues and roots music from the United States, revered as a ‘musician's musician’.</p><p>He combines the roots of Mississippi blues, 70s rock and American folk music in a unique way. Hart's playing features both a respect for tradition and a fearless willingness to try something new – he is an artist who brings both acoustic and electronic music to life with a raw and genuine soul.</p><p>At Malmitalo, he will perform with his trio Muscle Theory. The night will bring an amazing musical experience!</p><p>In the words of American musician Taj Mahal: <br>“The boy has got thunder in his hands.”</p><p>Duration: 1 hour 30 min</p>"
            },
            "short_description": {
                "fi": "Grammy-voittaja Alvin Youngblood Hart on yhdysvaltalainen bluesin ja roots-musiikin mestari, jota arvostetaan “muusikoiden muusikkona”.",
                "sv": "Grammy-vinnaren Alvin Youngblood Hart är en amerikansk mästare inom blues- och rootsmusik, värdesatt som ”musikernas musiker\".",
                "en": "Grammy winner Alvin Youngblood Hart is a master of blues and roots music from the United States, revered as a ‘musician's musician’."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Alvin Youngblood Hart's Muscle Theory (USA)",
                "sv": "Alvin Youngblood Hart's Muscle Theory (USA)",
                "en": "Alvin Youngblood Hart's Muscle Theory (USA)"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67489/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67956",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098296/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098296/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098296/"
                    },
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494436,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:13:00.932181Z",
                    "last_modified_time": "2026-01-09T13:13:00.932195Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779138.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494436/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:13:00.823325Z",
            "last_modified_time": "2026-03-20T01:13:38.744070Z",
            "date_published": null,
            "start_time": "2026-03-18T16: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4BAFF5BB5F765DAFD3D0765627301DAE/Claire_Parsons_Co_Dust",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/4BAFF5BB5F765DAFD3D0765627301DAE/Claire_Parsons_Co_Dust",
                "en": "http://www.vuotalo.fi/en/events/event/4BAFF5BB5F765DAFD3D0765627301DAE/Claire_Parsons_Co_Dust"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa.</p><p>Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin<br>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p>",
                "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger. Det oväntade får huvudrollen.</p><p>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts.</p><p>En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.</p><p>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös<br>För alla från 6 år</p>",
                "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust?</p><p>Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.</p><p>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg<br>Non-verbal<br>For everyone aged 6 and above!<br>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>"
            },
            "short_description": {
                "fi": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!",
                "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!",
                "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "sv": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "en": "Claire Parsons Co: Dust – Bravo! -festivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67956/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67426",
            "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: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:p4354/?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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997603/",
                        "sv": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997603/",
                        "en": "https://www.lippu.fi/event/bravo-festivaali-kanneltalo-20997603/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493936,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-27T13:13:25.552339Z",
                    "last_modified_time": "2025-11-27T13:13:25.552356Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781189.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493936/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-11-27T13:13:25.355758Z",
            "last_modified_time": "2026-03-20T01:13:38.574857Z",
            "date_published": null,
            "start_time": "2026-03-18T16: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet",
                "en": "http://www.kanneltalo.fi/en/events/event/B3816E6BFEB3149228A89B5D06948795/Kompani_Giraff_ABC_-_A_Painters_Alphabet"
            },
            "provider": null,
            "description": {
                "fi": "<p>Hauska sirkusseikkailu vallattomien aakkosten matkassa!</p><p>Esityksessä yleisö kutsutaan seuraamaan kahden sirkustaiteilijan hurjaa tehtävää: käydä kaikki aakkosten 29 kirjainta läpi vain 35 minuutissa - kekseliäillä ja taikuutta vaativilla tavoilla tietenkin.</p><p>ABC-esityksessä lapsiyleisö toivotetaan tervetulleeksi aakkosstudioon, jossa kahdelle sirkustaiteilijalle on annettu haastava tehtävä selvittää aakkosten 29 kirjainta vain 35 minuutissa. Tästä alkaa kekseliäs sirkusmatka vallattomien aakkosten läpi. Kurittomat kirjaimet kulkevat eteenpäin, kun monenkirjavat hahmot astuvat auttamaan.</p><p>Huimaava matka aakkosten läpi tarjoaa humoristisen ja nerokkaan sirkus- ja taikashown, joka takuulla herättää uteliaisuutta lukutaitoa kohtaan. Kompani Giraffin rakastetut esitykset ovat valloittaneet yleisöä niin kotimaassaan Ruotsissa kuin muuallakin maailmassa.</p><p>Ohjaus: Viktoria Dalborg<br>Yhteistyötaiteilijat: Jenny Soddu, Petter Wadsten<br>Lavastus ja pukusuunnittelu: Sus Soddu<br>Musiikki: Isak Elwin<br>Taikuuskonsultti: Axel Adlercreutz<br>Naamiointisuunnittelu: Tuija Valén<br>Äänisuunnittelu: Joakim Björklund<br>Tekninen tuotannon suunnittelu: Stefan Karlström<br>Tuottaja: Mette Klouman<br>Valokuvat: Sören Vilks</p><p>Kesto: 35 min.<br>Kieli: sanaton<br>Ikäsuositus: 3–9-vuotiaat</p><p><b>Bravo!-festivaali</b><br>Kohtaa kurittomat aakkoset, ihmettele urheilujuhlaa tai näe pöly uusin silmin… Luvassa yllättäviä esityksiä kaiken ikäisille!<br>Bravo! Kansainvälinen esittävän taiteen festivaali lapsille ja nuorille valloittaa pääkaupunkiseudun kulttuurikeskukset 14.-22.3.2026. Esityksiä nähdään myös muussa kaupunkitilassa. Vuoden 2026 festivaalilla on Nordic-Baltic Focus ja kaikki esitykset, työpajat ja muu ohjelmisto juhlistavat Pohjois- ja Baltian maiden esittävää taidetta lapsille ja nuorille.</p><p>Koettavaa löytyy eri-ikäisille katsojille aina vauvoista teini-ikäisiin. Tanssia, teatteria, sirkusta, työpajoja ja paljon muuta!</p><p>Bravo!-festivaali järjestetään nyt 13. kerran yhteistyössä lapsille ja nuorille suunnatun esittävän taiteen järjestön Suomen Assitejn sekä pääkaupunkiseudun kuntien kanssa.<br>www.bravofestivaali.fi</p>",
                "sv": "<p>Humoristisk cirkusresa genom ett upproriskt alfabet!</p><p>I Giraffens ABC välkomnas den yngsta publiken in i en fantasieggande alfabetsateljé, där två cirkuskonstnärer fått det halsbrytande uppdraget att ta sig igenom alfabetets 29 bokstäver på bara 35 minuter. Det blir startskottet på en uppfinningsrik och akrobatisk cirkusresa genom ett bångstyrigt alfabet.</p><p>Vilda versaler faller uppåt medan prinsar och svanar kliver ut ur sina ramar för att hjälpa till. Giraffens ABC är en svindlande resa genom alfabetet där bokstäverna till sist bestämmer sig för att dansa en balett högt uppe bland molnen. Med Giraffens ABC vill Kompani Giraff bjuda på en humoristisk och underfundig cirkus- och magiföreställning som väcker nyfikenhet och kreativ läsförståelse för barn i fyra- till sexårsåldern.</p><p>Regi: Viktoria Dalborg <br>Medskapande artister: Jenny Soddu, Petter Wadsten <br>Scenografi och kostym: Sus Soddu <br>Musik: Isak Elwin Magikonsult: Axel Adlercreutz <br>Mask: Tuija Valén <br>Ljuddesign: Joakim Björklund <br>Teknisk producent: Stefan Karlström <br>Producent: Mette Klouman <br>Foto: Sören Vilks</p><p>Längd: 35 min</p>",
                "en": "<p>Humorous circus journey through a rebellious alphabet!</p><p>In ABC, the youngest audience is welcomed into an amazing alphabet studio, where two circus artists have been given the daunting task of getting through the 29 letters of the alphabet in just 35 minutes.</p><p>In ABC, the youngest audience is welcomed into an amazing alphabet studio, where two circus artists have been given the daunting task of getting through the 29 letters of the alphabet in just 35 minutes. It will be the start of an inventive and acrobatic circus journey through a rebellious alphabet. Wild capitals tumble upward as princes and swans step out of their frames to help. ABC is a dizzying journey through the alphabet where the letters finally decide to dance a ballet high up in the clouds.</p><p>With ABC - A Painters Alphabet, Kompani Giraff wants to offer a humorous and ingenious circus and magic show that arouses curiosity and creative reading comprehension for children aged three to nine.</p><p>Length: 35 min<br>Age: 3-9 years old</p><p>Directed by: Viktoria Dalborg<br>Co creative artists: Jenny Soddu, Petter Wadsten<br>Set & costume design: Sus Soddu<br>Music: Isak Elwin<br>Magic consultant: Axel Adlercreutz<br>Mask design: Tuija Valén<br>Sound design: Joakim Björklund<br>Technical production manager: Stefan Karlström<br>Production manager: Mette Klouman<br>Photography: Sören Vilks</p><p><b>Bravo! Festival</b><br>Come face the rebellious alphabet, marvel at the blend of sports and art, or see dust with new eyes… A programme full of surprising performances for audiences of all ages!</p><p>The Bravo! Performing Arts Festival for young audiences takes over the cultural centres in the Helsinki metropolitan area from the 14th  to 22nd of March in 2026. Performances will also pop up in other urban spaces. The 2026 festival features a Nordic-Baltic Focus, and all performances, workshops, and other events will celebrate performing arts for children and young audiences from across the Nordic and Baltic countries.</p><p>There will be plenty to experience for audiences of all ages — from babies to teenagers. Dance, theatre, circus, workshops, and much more!</p><p>Bravo! Festival will be held for the 13th time, organised in collaboration between ASSITEJ Finland, the national organisation for performing arts for children and young people, and the municipalities of the Helsinki metropolitan area.<br>www.bravofestivaali.fi</p>"
            },
            "short_description": {
                "fi": "Hauska sirkusseikkailu vallattomien aakkosten matkassa!",
                "sv": "Humoristisk cirkusresa genom ett upproriskt alfabet!",
                "en": "Humorous circus journey through a rebellious alphabet!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festivaali",
                "sv": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festival",
                "en": "Kompani Giraff: ABC - A Painters Alphabet – Bravo! -festival"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67426/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66438",
            "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: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: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:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3935250",
                        "sv": "https://www.lippu.fi/eventseries/name-3935250",
                        "en": "https://www.lippu.fi/eventseries/name-3935250"
                    },
                    "price": {
                        "fi": "43,90 €",
                        "sv": "43,90 €",
                        "en": "43,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1490430,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-08-18T12:14:52.270002Z",
                    "last_modified_time": "2025-08-18T12:14:52.270020Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774179.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490430/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-08-18T12:14:52.140900Z",
            "last_modified_time": "2026-03-20T01:13:38.392787Z",
            "date_published": null,
            "start_time": "2026-03-18T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/CDB24E71BA5D1E275E9CDFD152C75552/Tanssien_Tahtiin_The_Farewell_Show",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/CDB24E71BA5D1E275E9CDFD152C75552/Tanssien_Tahtiin_The_Farewell_Show",
                "en": "http://www.savoyteatteri.fi/en/events/event/CDB24E71BA5D1E275E9CDFD152C75552/Tanssien_Tahtiin_The_Farewell_Show"
            },
            "provider": {
                "fi": "Elevent Dance ry",
                "sv": "Elevent Dance ry",
                "en": "Elevent Dance ry"
            },
            "description": {
                "fi": "<p>Kaupungin rytmit tanssittavat keväällä vielä kerran</p><p>Tanssien Tähtiin Show on vakiinnuttanut paikkansa Suomen teatteriohjelmistossa ja katsojien sydämissä. Yli 32000 katsojaa on tähän mennessä nähnyt nämä upeat tanssituotannot. Täysin uuden show´n ensi-ilta oli 28.2.2025 Helsingissä Peacock näyttämöllä. <br> <br>Elevent Group Oy on Helena Ahti-Hallbergin luotsaama ohjelma- ja tapahtumatoimisto, joka on perustettu 2014 tuomaan esille tanssin monipuoliset mahdollisuudet. Parketin laidalta alkanut matka on kuljettanut omistajat monien kokemusten kautta takaisin tanssin äärelle.<br> <br><i>”On tullut aika palata juurille ja keskittyä siihen ydinosaamiseen, jonka ympärille kaikki on rakentunut”</i> kertoo Elevent Groupin toimitusjohtaja Helena Ahti-Hallberg. <i>”Pienimuotoinen ohjelmatarjonta tanssiesityksistä kasvoi kasvamistaan ja pian huomasimme, että kivijalkamme tanssi oli vain yksi osa tarjontaamme. Olemme päässeet tekemään upeita tapahtumatuotantoja ja konsepteja, joista olemme ylpeitä mutta nyt on oikea hetki kirkastaa toimintaa”</i> hän jatkaa. <br> <br><i>”Viimeiset vuodet ovat olleet sekä tapahtuma- että ohjelmatoimistoalalla hyvin haastavia taloudellisesti ja maailman mylleryksen jatkuessa tämä on meille paras ratkaisu”</i> kertoo Helena. <i>”Ei ole helppo päätös lopettaa yritystoimintaa. Emme kuitenkaan halua joutua tilanteeseen, missä ajautuisimme taloudellisiin vaikeuksiin emmekä pystyisi suoriutumaan velvoitteistamme. Siksi nyt on oikea hetki päättää Elevent Groupin tarina ja jatkaa tanssin ilosanoman levittämistä uuden Elevent Dance -yhdistyksen myötä”</i> Helena jatkaa.<br> <br><i>”Jotta saadaan tälle upealle showlle ja tuotannolle arvoisensa päätös, niin haluamme tuoda vielä kerran uusimman showmme Savoy-teatterin lavalle. The Farewell Show on siis vain yksi ilta, jonka jälkeen esitys sekä Tanssien Tähtiin Show siirtyy historiaan”</i> kertoo Helena Ahti-Hallberg. <br> <br>Esityksen upeat ammattitanssijat ovat Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius sekä Valtteri Palin. Esityksen ohjaa Sari Siikander. <br> <br>Esitys vie katsojat kaupungin sykkeeseen, työelämän pyörteisiin ja yöelämän hulinoihin. ”Mitä kaikkea voi päivän aikana tapahtua, ketä me kohtaamme, olemmeko illan tullen yksin vai juhlimassa. Näiden asioiden ympärille esitys rakentuu. Lavalla tulee olemaan koko tunteiden kirjo ja upeaa tanssia” Ohjaaja Sari Siikander paljastaa.</p><p>Kesto n. 65 min, ei väliaikaa</p><p>Ikäraja: S</p>",
                "sv": "<p>Stadens rytmer får oss ännu en gång att dansa under våren</p><p>Tanssien Tähtiin Show har etablerat sig på den finska teaterscenen och i publikens hjärtan. Mer än 32 000 åskådare har hittills sett dessa underbara dansproduktioner. Den helt nya showen hade premiär den 28 februari 2025 på Peacock-teatern i Helsingfors.</p><p>Elevent Group Oy är en program- och eventbyrå som grundades 2014 av Helena Ahti-Hallberg för att visa upp dansens mångsidiga möjligheter. Resan från sidan av dansgolvet har genom många olika upplevelser fört ägarna tillbaka till dansen.</p><p>”Det blev dags att gå tillbaka till våra rötter och fokusera på den kärnkompetens som allt har byggts upp kring”, säger Helena Ahti-Hallberg, verkställande direktör för Elevent Group. ”Vårt småskaliga programutbud med dansföreställningar växte sig allt större, och vi insåg snart att dansen, som var vår grundpelare, bara var en del av vårt utbud. Vi har haft möjlighet att skapa fantastiska evenemangsproduktioner och koncept som vi är stolta över, men nu är det rätt tid att finslipa verksamheten”, fortsätter hon.</p><p>”De senaste åren har varit mycket utmanande ekonomiskt för både evenemangs- och programbyråbranschen, och när den globala oron fortsätter är det här den bästa lösningen för oss”, säger Helena. ”Det är inte ett lätt beslut att sluta med verksamheten. Men vi vill inte hamna i en situation där vi får ekonomiska svårigheter och inte kan fullgöra våra åtaganden. Därför är det nu rätt tid att avsluta Elevent Groups historia och fortsätta att sprida dansens glada budskap genom den nya föreningen Elevent Dance”, fortsätter Helena.</p><p>”För att ge denna fantastiska show och produktion en värdig avslutning vill vi ännu en gång visa vår senaste show på Savoy-teaterns scen. The Farewell Show är bara en kväll, därefter förpassas föreställningen och Tanssien Tähtiin Show till historien”, säger Helena Ahti-Hallberg.</p><p>De fantastiska professionella dansarna i showen är Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius och Valtteri Palin. Föreställningen är regisserad av Sari Siikander.</p><p>Föreställningen bjuder in publiken till stadens puls, arbetslivets virvlar och nattlivets galenskaper. ”Vad allt kan hända under en dag, vem möter vi, är vi ensamma när natten kommer eller är vi ute och festar? Kring dessa frågor är föreställningen uppbyggd. Det kommer att finnas ett brett spektrum av känslor och fantastisk dans på scenen”, avslöjar regissören Sari Siikander.</p><p>Längd ca 65 min., ingen paus.</p><p>Åldersgräns: Tillåten för alla åldrar.</p>",
                "en": "<p>The city rhythms invite the audiences to dance one last time in spring</p><p>The Tanssien Tähtiin Show has established itself in the Finnish theatre scene and in the hearts of the audience. More than 32,000 viewers have seen these wonderful dance productions so far. The premiere of the brand-new show took place on 28 February 2025 at the Peacock stage in Helsinki.</p><p>The Elevent Group Oy is a programme and event agency founded in 2014 by Helena Ahti-Hallberg to showcase the diverse possibilities of dance. The journey that started from the edge of the dance floor has taken the owners through many experiences and then back to dance.</p><p>“It's time to go back to our roots and focus on the core competencies around which we have built everything,” says Helena Ahti-Hallberg, CEO of Elevent Group. “Our small-scale repertoire that started with dance performances just kept growing and growing and we soon realised that dance, our cornerstone, was only one part of our offering. We have been able to create great event productions and concepts that we are proud of, but now is the right time to clarify our operations,” she continues.</p><p>“The last few years have been very challenging financially for both the events and programme industries, and as the global turmoil continues, this is the best solution for us,” says Helena. “Quitting business operations is not an easy decision. However, we do not want to find ourselves in a situation where we run into financial difficulties and are unable to fulfil our obligations. That's why this is the right time to end the story of Elevent Group and continue spreading the joy of dance through the new Elevent Dance association,” Helena states.</p><p>\"To bring this wonderful show and production to a worthy conclusion, we want to bring our latest show to the Savoy Theatre’s stage one more time. The Farewell Show is just one night, after which the performance and the Tanssien Tähtiin Show will become part of history,” says Helena Ahti-Hallberg.</p><p>The talented professional dancers of the show are Claudia Ketonen, Jutta Helenius, Kastanja Rauhala, Kia Lehmuskoski, Saana Akiola, Emil Hallberg, Marius Tropercher, Mikko Matikka, Sami Helenius and Valtteri Palin. The performance is directed by Sari Siikander.</p><p>The show will take the audience into the pulse of the city, the twists and turns of working life and the madness of nightlife. “What could happen during one day, who will we meet, will we be alone at night or out partying. The show will be built around these questions. The stage will reveal the full range of emotions, as well as fantastic dancing,” the director Sari Siikander reveals.</p><p>Duration approx. 65 min, no intermission</p><p>Age rating: G</p>"
            },
            "short_description": {
                "fi": "Kaupungin rytmit tanssittavat keväällä vielä kerran",
                "sv": "Stadens rytmer får oss ännu en gång att dansa under våren",
                "en": "The city rhythms invite the audiences to dance one last time in spring"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Tanssien Tähtiin The Farewell Show",
                "sv": "Tanssien Tähtiin The Farewell Show",
                "en": "Tanssien Tähtiin The Farewell Show"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66438/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67380",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375692/",
                        "sv": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375692/",
                        "en": "https://www.lippu.fi/event/kino-helios-the-secret-agent-malmitalo-21375692/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1509760,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T13:13:49.154062Z",
                    "last_modified_time": "2026-03-03T13:13:49.154080Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781062.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1509760/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T13:13:48.949450Z",
            "last_modified_time": "2026-03-20T01:13:38.243024Z",
            "date_published": null,
            "start_time": "2026-03-18T16: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_",
                "en": "http://www.malmitalo.fi/en/events/event/D9906D9351FCA0186ADCEACA2D12061E/The_Secret_Agent_16_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri.</p><p>The Secret Agent palkittiin 2026 Golden Globes -gaalassa parhaan vieraskielisen elokuvan palkinnolla ja pääosanesittäjä Wagner Moura parhaan miesnäyttelijän palkinnolla.</p><p>Vuoden 2025 Cannesin elokuvajuhlilla parhaasta ohjauksesta (Kleber Mendonça Filho) ja miespääosasta (Wagner Moura) palkittu The Secret Agent on omaperäinen poliittinen trilleri. Eletään riehakasta karnevaaliviikkoa vuonna 1977 Brasiliassa.</p><p>Salaperäistä menneisyyttään pakeneva teknologia-asiantuntija Marcelo (Moura) palaa kotikaupunkiinsa etsimään rauhaa, samalla toivoen tapaavansa jälleen poikansa.</p><p>Hän löytää suojapaikan vastarintaliikkeen kommuunista, mutta huomaa pian, että kaupunki on yhtä eläväinen kuin väkivaltainenkin. Marcelo  ajautuu tahtomattaan keskelle poliittista kuohuntaa.</p><p>Oivaltavasti eri lajityyppejä yhdistelevä, auringon paahtama elokuva on ohjaaja Filhon kunnianosoitus elokuvataiteelle ja Brasilialle.  Elokuva on Brasilian virallinen ehdokas Oscar-kisaan.</p><p>Ikäraja: 16<br>Kesto: 161 min<br>Ensi-ilta: 20.2.2026<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "short_description": {
                "fi": "Neljän Oscarin ehdokas The Secret Agent on omaperäinen ja mustan komedian sävyttämä trilleri."
            },
            "location_extra_info": null,
            "name": {
                "fi": "The Secret Agent (16) – Kino Helios",
                "sv": "The Secret Agent (16) – Kino Helios",
                "en": "The Secret Agent (16) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67380/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67379",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-hamnet-4102130/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-hamnet-4102130/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-hamnet-4102130/"
                    },
                    "price": {
                        "fi": "9 €",
                        "sv": "9 €",
                        "en": "9 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1507856,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-03T09:15:40.020268Z",
                    "last_modified_time": "2026-03-03T09:15:40.020285Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781061.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1507856/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-03T09:15:39.877075Z",
            "last_modified_time": "2026-03-20T01:13:38.101775Z",
            "date_published": null,
            "start_time": "2026-03-18T13: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_",
                "en": "http://www.malmitalo.fi/en/events/event/0C5C583BB51AFDEA998866EC1BA150DA/Hamnet_12_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä.</p><p>Elokuva palkittiin kahdella Golden Globe -palkinnolla: paras elokuva ja paras naispääosa (Jessie Buckley).</p><p>Ikäraja: 12<br>Kesto: 126 min<br>Ensi-ilta: 30.01.2026<br>Kieli: englanti<br>Tekstitys: suomi, ruotsi</p><p>Kino Helioksessa vietetään Oscar-viikkoa 18.–20.3.2026.</p><p>Tuomme valkokankaalle neljä hienoa Oscar ehdokkuuksia kahminutta elokuvaa, joille ennustamme myös palkintoja.</p><p>Keskiviikkona 18.3. on nähtävissä 8 Oscar ehdokkuutta saanut Hamnet klo 15, 4 ehdokkuutta saanut The Secret Agent klo 18 ja perjantaina 20.3. nähdään molemmat 9 Oscar ehdokkuutta saaneet Sentimental Value klo 15 ja Marty Supreme klo 18.</p>"
            },
            "short_description": {
                "fi": "Oscar®-palkitun käsikirjoittaja/ohjaaja Chloé Zhaon elokuva HAMNET kertoo vavisuttavan rakkaustarinan, joka innoitti Shakespearen ajattoman mestariteoksen, Hamletin, syntyä."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Hamnet (12) – Kino Helios",
                "sv": "Hamnet (12) – Kino Helios",
                "en": "Hamnet (12) – Kino Helios"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67379/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67953",
            "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:33/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494435,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:13:00.548104Z",
                    "last_modified_time": "2026-01-09T13:13:00.548127Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779137.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494435/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:13:00.409325Z",
            "last_modified_time": "2026-03-20T01:13:37.938831Z",
            "date_published": null,
            "start_time": "2026-03-18T09: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,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust",
                "en": "http://www.vuotalo.fi/en/events/event/36D359BB18C6DAB33A94C2CE301BE497/Claire_Parsons_Co_Dust"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa. Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin<br>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p><p>koululaisryhmille, ilmoittautuminen kultus.hel.fi</p>",
                "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger.</p><p>Det oväntade får huvudrollen.<br>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts. En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.</p><p>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös<br>För alla från 6 år.</p>",
                "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust?</p><p>Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.<br>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg<br>Non-verbal</p><p>For everyone aged 6 and above!</p><p>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>"
            },
            "short_description": {
                "fi": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!",
                "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!",
                "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "sv": "Claire Parsons Co: Dust – Bravo! -festivaali",
                "en": "Claire Parsons Co: Dust – Bravo! -festivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67953/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67947",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494455,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T12:13:40.453418Z",
                    "last_modified_time": "2026-01-12T12:13:40.453433Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783757.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494455/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-12T12:13:40.298811Z",
            "last_modified_time": "2026-03-20T01:13:37.795042Z",
            "date_published": null,
            "start_time": "2026-03-18T08: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/E132FC9D3A906C556E0F99941EC88527/Aaben_Dans_What_is_that_Denmark_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p><p>18.3. klo 9 ja 10.30 esitykset ovat maksuttomia varhaiskasvatuksen ryhmille. Paikat arvotaan kultus.hel.fi:ssä ilmoittautuneiden ryhmien kanssa. Ilmoittautuminen 12.1. alkaen kultus.hel.fi.</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67947/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67946",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T12:13:39.951949Z",
                    "last_modified_time": "2026-01-12T12:13:39.951965Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783756.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-12T12:13:39.788957Z",
            "last_modified_time": "2026-03-20T01:13:37.663057Z",
            "date_published": null,
            "start_time": "2026-03-18T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/1A377189BF4EB3BF288B09C35840FE97/Aaben_Dans_What_is_that_Denmark_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p><p>18.3. klo 9 ja 10.30 esitykset ovat maksuttomia varhaiskasvatuksen ryhmille. Paikat arvotaan kultus.hel.fi:ssä ilmoittautuneiden ryhmien kanssa. Ilmoittautuminen 12.1. alkaen kultus.hel.fi.</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67946/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67960",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/derek-mitchell-double-dutch-two-malmitalo-21344083/",
                        "sv": "https://www.lippu.fi/event/derek-mitchell-double-dutch-two-malmitalo-21344083/",
                        "en": "https://www.lippu.fi/event/derek-mitchell-double-dutch-two-malmitalo-21344083/"
                    },
                    "price": {
                        "fi": "35,90 € / 24,80 €",
                        "sv": "35,90 € / 24,80 €",
                        "en": "35,90 € / 24,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494463,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T11:13:17.624110Z",
                    "last_modified_time": "2026-01-13T11:13:17.624126Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783793.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494463/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-13T11:13:17.513606Z",
            "last_modified_time": "2026-03-20T01:13:37.533046Z",
            "date_published": null,
            "start_time": "2026-03-17T17: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,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two",
                "en": "http://www.malmitalo.fi/en/events/event/E302DD18AD5329B4878668377DE43CFD/Double_Dutch_Two"
            },
            "provider": null,
            "description": {
                "fi": "<p>Suosittua @letsdoubledutch-tiliä pitävän koomikon Derek Mitchellin upouusi esitys.</p><p>Derek esitti ensimmäistä Double Dutch: Live -esitystään sadoissa loppuunmyydyissä saleissa kymmenilletuhansille ihmisille ympäri maailmaa – ja nyt hän palaa lavoille jatko-osassa, joka on entistä syvällisempi ja entistä hauskempi.</p><p>Derekin verkkosisällöillä on miltei miljoona seuraajaa ja yli puoli miljardia katselukertaa, ja hänen terävillä hahmoillaan ja satiirisilla näkemyksillään hollantilaisesta, brittiläisestä ja pohjoisamerikkalaisesta kulttuurista onkin maailmanlaajuinen fanikunta. Double Dutch: Two on kuitenkin jotakin hieman erilaista. Tällä kertaa mennään henkilökohtaisuuksiin.</p><p>Esitys käsittelee kulttuurienvälistä elämää, hollantilaiseen kulttuuriin naimista ja merkityksen löytämistä nykyelämän kaaoksesta. Se käsittelee yksinäisyyttä ja yhteyttä. Ja onhan se myös tosi hauska.</p><p>Double Dutch: Two sisältää hahmoja, tarinoita ja stand-up-komiikkaa ja tarjoilee yleisölle iloisen illan, joka yhdistää ihmisiä paremmin kuin yksikään some-syöte.</p><p>Ikärajasuositus: 16 vuotta<br>Kieli: englanti<br>Kesto: 1 t 30 min, sisältäen 15 min väliajan</p>",
                "sv": "<p>Den splitternya liveshowen av Derek Mitchell, komiker och viral kreatör av @letsdoubledutch.</p><p>Efter hundratals utsålda föreställningar av succédebuten Double Dutch: Live – som setts av tiotusentals människor över hela världen – återvänder Derek med en uppföljare som går djupare och är fylld med ännu mer skratt.</p><p>Med nästan en miljon följare och över en halv miljard visningar på nätet har Derek byggt upp en global fanbase med sina knivskarpa karaktärer och satiriska betraktelser av holländsk, brittisk och nordamerikansk kultur. Men Double Dutch: Two är annorlunda. Den här gången är det personligt.</p><p>Det är en show om livet mellan kulturer, att gifta sig in i holländskhet och att hitta mening i det moderna livets röra. Det handlar om ensamhet och samhörighet. Och ja, det är också väldigt roligt.</p><p>Med karaktärer, berättelser och standup är Double Dutch: Two en glädjefylld kväll som för samman människor på ett sätt som inget socialt flöde någonsin kunde.</p><p>Rekommenderad åldersgräns: 16 år</p><p>Evenemangets längd: 1 timme och 30 minuter, inklusive 15 minuters paus</p>",
                "en": "<p>The brand-new live show from Derek Mitchell, comedian and viral creator behind @letsdoubledutch.</p><p>After hundreds of sold-out performances of his hit debut Double Dutch: Live – seen by tens of thousands around the world – Derek returns with a follow-up that goes deeper and is packed with even more laughs.</p><p>With nearly a million followers and over half a billion views online, Derek has built a global fanbase through his whip-smart characters and satirical takes on Dutch, British and North American cultures. But Double Dutch: Two is something different. This time, it’s personal.</p><p>It’s a show about life between cultures, marrying into Dutchness, and finding meaning in the mess of modern life. It’s about loneliness and connection. And yes, it’s also very funny.</p><p>Featuring characters, stories and stand-up, Double Dutch: Two is a joyful night that brings people together in a way no social feed ever could.</p><p>Age limit recommendation: 16 years</p><p>Duration of event: 1h 30min, including 15min intermission</p>"
            },
            "short_description": {
                "fi": "Suosittua @letsdoubledutch-tiliä pitävän koomikon Derek Mitchellin upouusi esitys.",
                "sv": "Den splitternya liveshowen av Derek Mitchell, komiker och viral kreatör av @letsdoubledutch.",
                "en": "The brand-new live show from Derek Mitchell, comedian and viral creator behind @letsdoubledutch."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Double Dutch: Two",
                "sv": "Double Dutch: Two",
                "en": "Double Dutch: Two"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67960/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67186",
            "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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109798/",
                        "sv": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109798/",
                        "en": "https://www.lippu.fi/event/kino-caisa-kulttuurikeskus-caisa-21109798/"
                    },
                    "price": {
                        "fi": "7 €",
                        "sv": "7 €",
                        "en": "7 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494250,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-18T12:13:50.830158Z",
                    "last_modified_time": "2025-12-18T12:13:50.830176Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778522.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494250/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-18T12:13:50.684310Z",
            "last_modified_time": "2026-03-20T01:13:37.336050Z",
            "date_published": null,
            "start_time": "2026-03-17T17: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C6D380C36514F2252DC24AB65B9F7CAF/REBEL_DYKES_K18_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C6D380C36514F2252DC24AB65B9F7CAF/REBEL_DYKES_K18_",
                "en": "http://www.caisa.fi/en/events/event/C6D380C36514F2252DC24AB65B9F7CAF/REBEL_DYKES_K18_"
            },
            "provider": null,
            "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>REBEL DYKES arrives in all its ass-kicking, leather-wearing glory. The film follows a tight-knit group of friends who met at Greenham Common peace camp and went on to become artists, performers, musicians and activists in London.</p><p>A heady mash-up of animation, archive footage and interviews tells the story of a radical scene: squatters, BDSM nightclubs, anti-Thatcher rallies, protests demanding action around AIDS and the fierce ties of chosen family. This is an extraordinarily privileged glimpse into a bygone world by those who not only lived out their politics with heartfelt conviction but lived to tell the tale.</p><p>English subtitles included. Duration 92 minutes.<br>Age limit 18.</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>REBEL DYKES arrives in all its ass-kicking, leather-wearing glory. The film follows a tight-knit group of friends who met at Greenham Common peace camp and went on to become artists, performers, musicians and activists in London.</p><p>A heady mash-up of animation, archive footage and interviews tells the story of a radical scene: squatters, BDSM nightclubs, anti-Thatcher rallies, protests demanding action around AIDS and the fierce ties of chosen family. This is an extraordinarily privileged glimpse into a bygone world by those who not only lived out their politics with heartfelt conviction but lived to tell the tale.</p><p>English subtitles included. Duration 92 minutes.<br>Age limit 18.</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>"
            },
            "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"
            },
            "location_extra_info": null,
            "name": {
                "fi": "REBEL DYKES (K18) – Kino Caisa: March Through the Frame",
                "sv": "REBEL DYKES (K18) – Kino Caisa: March Through the Frame",
                "en": "REBEL DYKES (K18) – Kino Caisa: March Through the Frame"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67186/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67944",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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: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": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-4069966",
                        "sv": "https://www.lippu.fi/eventseries/name-4069966",
                        "en": "https://www.lippu.fi/eventseries/name-4069966"
                    },
                    "price": {
                        "fi": "17,80-43,90 €",
                        "sv": "17,80-43,90 €",
                        "en": "17,80-43,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494559,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-20T08:12:56.882739Z",
                    "last_modified_time": "2026-01-20T08:12:56.882756Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783708.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494559/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-16T11:13:45.852499Z",
            "last_modified_time": "2026-03-20T01:13:37.222600Z",
            "date_published": null,
            "start_time": "2026-03-17T16: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,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9C8172749986A3A939094BB8AD50F7B0/Metsaa_puilta_Ensi-ilta_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9C8172749986A3A939094BB8AD50F7B0/Metsaa_puilta_premiar_",
                "en": "http://www.savoyteatteri.fi/en/events/event/9C8172749986A3A939094BB8AD50F7B0/Metsaa_puilta_Premiere_"
            },
            "provider": {
                "fi": "Hanna Kuntsi",
                "sv": "Hanna Kuntsi",
                "en": "Hanna Kuntsi"
            },
            "description": {
                "fi": "<p>Helsingissä Savoy-teatterissa kantaesityksensä saava teatteriesitys on kunnianosoitus suomalaisille metsille.</p><p>Moniulotteisista uristaan ja muun muassa Juice-elokuvan aisaparina tunnetut näyttelijät <b>Antti Tuomas Heikkinen</b> ja <b>Riku Nieminen</b> tuovat kanteletaiteilija <b>Emma Kuntsin</b> luoman kuljettamana näyttämölle ihmisiä, joilla jokaisella on omanlaisensa suhde metsään. Oli kyseessä sitten metsäkoneenkuljettaja, joogaaja, metsänomistaja tai ympäristöministeri, kaikilla on mielipiteitä tai painavaakin sanottavaa vihreästä kullastamme.<br>Metsän äänenä kuullaan elävä legenda, ihastuttava <b>Seela Sella</b>.<br>Käsikirjoituksesta ja ohjauksesta vastaa <b>Tiina Iisala</b>.</p><p>Esityksen kesto noin 1 h.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>",
                "sv": "<p>Denna teaterföreställning, som har premiär på Savoy-teatern, är en hyllning till den finländska skogen.</p><p>Skådespelarna Antti Tuomas Heikkinen och Riku Nieminen, kända för sina mångsidiga karriärer och bland annat som parhästar i filmen Juice, introducerar med hjälp av kantelekonstnären Emma Kuntsi människor på scenen, som alla har sin egen relation till skogen. Oavsett om det gäller en skogsmaskinförare, en yogautövare, en skogsägare eller en miljöminister, har de alla åsikter eller något att säga om vårt gröna guld.<br>Som skogens röst hör vi en levande legend, den underbara Seela Sella.<br>Tiina Iisala ansvarar för manus och regi.</p><p>Föreställningen varar ca 1 timme.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>Premiering at the Savoy Theatre in Helsinki, this theatre performance is a tribute to Finnish forests.</p><p>Actors Antti Tuomas Heikkinen and Riku Nieminen, known for their multifaceted careers and roles such as the head duo in the film Juice, will bring people to the stage, each with their own relationship with the forest, as created by kantele artist Emma Kuntsi. Whether the person is a forestry machine driver, a yogi, a forest owner or the Minister of the Environment, everyone has an opinion or something important to say about our green gold.<br>The voice of the forest will be a living legend, the lovely Seela Sella.<br>The performance is written and directed by Tiina Iisala.</p><p>Performance duration: roughly 1 h</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "short_description": {
                "fi": "Helsingissä Savoy-teatterissa kantaesityksensä saava teatteriesitys on kunnianosoitus suomalaisille metsille.",
                "sv": "Denna teaterföreställning, som har premiär på Savoy-teatern, är en hyllning till den finländska skogen.",
                "en": "Premiering at the Savoy Theatre in Helsinki, this theatre performance is a tribute to Finnish forests."
            },
            "location_extra_info": null,
            "name": {
                "fi": "Metsää puilta (Ensi-ilta) – Heikkinen, Nieminen, Sella, Kuntsi",
                "sv": "Metsää puilta (premiär) – Heikkinen, Nieminen, Sella, Kuntsi",
                "en": "Metsää puilta (Premiere) – Heikkinen, Nieminen, Sella, Kuntsi"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67944/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67945",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/",
                        "sv": "https://www.lippu.fi/event/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/",
                        "en": "https://www.lippu.fi/event/aaben-dans-what-is-that-mika-tama-on-annantalo-21179138/"
                    },
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-12T10:13:06.263011Z",
                    "last_modified_time": "2026-01-12T10:13:06.263038Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783755.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-12T10:13:06.154323Z",
            "last_modified_time": "2026-03-20T01:13:37.094763Z",
            "date_published": null,
            "start_time": "2026-03-17T15: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Tanska_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Tanska_",
                "en": "http://www.annantalo.fi/en/events/event/896A14F79A2AA1C62EC66AB40E91175B/Aaben_Dans_What_is_that_Denmark_"
            },
            "provider": null,
            "description": {
                "fi": "<p>Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!</p><p>Uteliaisuus on yksi mahtavimpia voimia, kun pieni lapsi tutkii maailmaa. Hilpeitä yllätyksiä täynnä olevassa esityksessä tanssijat tutkivat liikkeen ja tanssin avulla sekä kehoja että tilaa pitämättä mitään itsestäänselvyytenä.</p><p>Aaben Dans on Tanskan tunnetuimpia tanssiryhmiä. Ryhmän teokset tuovat nykytanssia lapsiyleisöille lämminhenkisellä tavalla. Tasokkaat, aistilliset ja yllättävät esitykset ajankohtaisista aiheista ovat ryhmän omien sanojen mukaan “populaaria avantgardea”.<br> <br>“Teoksellaan ’What is that?’ Aaben Dans on luonut kiehtovan esityksen, joka rikkoo kaikki säännöt ja löytää maailman uudelleen.”<br>- Børneteatervisen</p><p>Sanaton.<br>Kesto: 45 min.<br>Ikäsuositus: 0,5–5 -vuotiaat</p><p>Konsepti, koreografia ja näyttämöllepano: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Tanssijat: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Skenografia ja puvustus: KASPERSOPHIE<br>Säveltäjä: Fredrik Lundin<br>Valokuvaus: Ditte Valente<br>Valosuunnittelu / Kiertuetuotanto: Elke Laleman<br>Tuotantosuunnittelija: Madeleine Lind Hoppe<br>Grafiikat: Line Thornberg<br>Ompelu: Cynthia Coussieu, Gunilla Nordby<br>Tuotanto Aaben Dans<br>Ensi-ilta September 2020</p>",
                "sv": "<p>Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!</p><p>Nyfikenhet är en av de mäktigaste krafterna när ett litet barn utforskar världen. I en föreställning full av lustiga överraskningar utforskar dansare både kroppar och rum genom rörelse och dans, utan att ta något för givet.</p><p>Aaben Dans är en av Danmarks mest kända dansgrupper. Gruppens verk förmedlar samtida dans till barnpubliker på ett varmhjärtat sätt. De högklassiga, sensoriska och överraskande föreställningarna om aktuella ämnen beskrivs av gruppen själv som ”populärt avantgarde”.</p><p>”Med verket What is that? har Aaben Dans skapat en fascinerande föreställning som bryter mot alla regler och återupptäcker världen.”<br>- Børneteatervisen</p><p>Koncept, koreografi och iscensättning: Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dansare: Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenografi och kostym: KASPERSOPHIE<br>Kompositör: Fredrik Lundin<br>Fotografering: Ditte Valente<br>Ljusdesign / Turnéproduktion: Elke Laleman<br>Produktionsplanerare: Madeleine Lind Hoppe<br>Grafik: Line Thornberg<br>Sömmare: Cynthia Coussieu, Gunilla Nordby<br>Produktion: Aaben Dans</p>",
                "en": "<p>A performance about the driving force of curiosity!</p><p>Curiosity is the strongest drive as a small child discovers the world. A drive that can last for a lifetime. Through movement and dance, the dancers explore both the body and the space without taking anything for granted.<br> <br>“We want to move our audiences in entertaining, relevant and thought-provoking ways. We believe in the power of art to bring new perspectives to our lives. We want to create good, sensuous and surprising performances about current issues that communicate to a wide audience. With open eyes, we explore what dance can and will do in our time. We work to create new and relevant forms of performing arts. We make popular avant-garde.” - Aaben Dans<br> <br>“With ‘What is that?’, Aaben Dans has created an intriguing performance piece that breaks all the rules and concepts and rediscovers the world.”<br> - Børneteateravisen</p><p>Non-verbal<br> Duration: 45 min<br> Age recommendation: 05,-5 years<br> <br>Concept, choreography and staging Thomas Eisenhardt, Kamilla Wargo Brekling<br>Dancers Ole Birger Hansen, Antoinette Helbing/Nanna Hanfgarn Jensen/or another female dancer<br>Scenography and costumes KASPERSOPHIE<br>Composer Fredrik Lundin<br>Photography Ditte Valente<br>Light Design / Tour Production Elke Laleman<br>Production management Madeleine Lind Hoppe<br>Graphics Line Thornberg<br>Tailors Cynthia Coussieu, Gunilla Nordby<br>Produced by Aaben Dans<br>Premiere September 2020</p>"
            },
            "short_description": {
                "fi": "Tanssiesitys uteliaisuuden liikkeellepanevasta voimasta ja löytämisen riemusta!",
                "sv": "Dansföreställning om drivkraften i nyfikenhet och upptäckarglädjen!",
                "en": "A performance about the driving force of curiosity!"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "sv": "Aaben Dans: What is that? (Tanska) – Bravo!-festivaali",
                "en": "Aaben Dans: What is that? (Denmark) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67945/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}