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

{
    "meta": {
        "count": 12737,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=4&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=2&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:69399",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385155,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T10:13:51.942231Z",
                    "last_modified_time": "2026-06-15T10:13:51.942246Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793294.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385155/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T10:13:51.831303Z",
            "last_modified_time": "2026-07-21T09:14:57.966051Z",
            "date_published": null,
            "start_time": "2026-11-09T14:00:00Z",
            "end_time": "2026-11-09T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät",
                "sv": "Eftermiddagar planerade av unga",
                "en": "Afternoons planned by young people"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.",
                "sv": "Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.",
                "en": "Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/947D733E37E7C7B474311A3EF5D180A1/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/947D733E37E7C7B474311A3EF5D180A1/Eftermiddagar_planerade_av_unga_",
                "en": "http://www.vuotalo.fi/en/events/event/947D733E37E7C7B474311A3EF5D180A1/Afternoons_planned_by_young_people_"
            },
            "description": {
                "fi": "<p>Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.</p><p>Työpajojen sisällöt suunnittelevat ja ohjaavat 15–17-vuotiaat, ohjaajan tuella. Teema vaihtuu joka viikko. Voit osallistua kerran tai joka maanantai, viipyä hetken tai vaikka koko kaksi tuntia. Kaikki mahtuvat mukaan!</p><p>Ei työpajaa syyslomaviikolla 12.–18.10.</p><p>Jos haluat työkokemusta osallistumalla suunnitteluun ja ohjaamiseen, niin laita viestiä kulttuuriselle nuoriso-ohjaaja Tytille, 040 683 7096. Ohjaamisesta maksetaan 15–17-vuotiaille palkkaa Seuren kautta.</p><p>Lisätiedot: Nuoriso-ohjaaja Tytti, puh. 040 683 7096</p>",
                "sv": "<p>Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.</p><p>Innehållet i verkstäderna planeras och leds av 15–17-åringar, med stöd av en handledare. Varje vecka har ett nytt tema. Du kan delta en gång eller varje måndag, stanna en stund eller till och med hela två timmar. Alla får plats!</p><p>Ingen verkstad under höstlovsveckan 12–18 oktober.</p><p>Om du vill skaffa dig arbetslivserfarenhet genom att delta i planeringen och handledningen, hör av dig till kultur- och ungdomsledare Tytti på telefonnummer 040 683 70 96. Lön för handledningen betalas ut till 15–17-åringar via Seure.</p><p>Mer information: Ungdomsledare Tytti, tfn 040 683 70 96</p>",
                "en": "<p>Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills.</p><p>The content of the workshops is planned and led by young people aged 15–17, with the support of an instructor. The theme changes every week. You can take part just once or every Monday and stay for a little while or the whole two hours. There is room for everyone!</p><p>No workshop will be held during the autumn break week 12–18 October.</p><p>If you would like to gain work experience by getting involved in planning and instruction activities, please get in touch with Cultural Youth Instructor Tytti by calling +358 40 683 7096. Instructors aged 15–17 are paid a salary via Seure.</p><p>For more information, please contact: Youth Instructor Tytti, tel. +358 40 683 7096</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69399/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69398",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385154,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T10:13:49.854899Z",
                    "last_modified_time": "2026-06-15T10:13:49.854913Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793292.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385154/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T10:13:49.746135Z",
            "last_modified_time": "2026-07-21T09:14:53.926195Z",
            "date_published": null,
            "start_time": "2026-10-26T14:00:00Z",
            "end_time": "2026-10-26T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät",
                "sv": "Eftermiddagar planerade av unga",
                "en": "Afternoons planned by young people"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.",
                "sv": "Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.",
                "en": "Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/16FED2BC71627790EB4268E5BB11A931/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/16FED2BC71627790EB4268E5BB11A931/Eftermiddagar_planerade_av_unga_",
                "en": "http://www.vuotalo.fi/en/events/event/16FED2BC71627790EB4268E5BB11A931/Afternoons_planned_by_young_people_"
            },
            "description": {
                "fi": "<p>Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.</p><p>Työpajojen sisällöt suunnittelevat ja ohjaavat 15–17-vuotiaat, ohjaajan tuella. Teema vaihtuu joka viikko. Voit osallistua kerran tai joka maanantai, viipyä hetken tai vaikka koko kaksi tuntia. Kaikki mahtuvat mukaan!</p><p>Ei työpajaa syyslomaviikolla 12.–18.10.</p><p>Jos haluat työkokemusta osallistumalla suunnitteluun ja ohjaamiseen, niin laita viestiä kulttuuriselle nuoriso-ohjaaja Tytille, 040 683 7096. Ohjaamisesta maksetaan 15–17-vuotiaille palkkaa Seuren kautta.</p><p>Lisätiedot: Nuoriso-ohjaaja Tytti, puh. 040 683 7096</p>",
                "sv": "<p>Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.</p><p>Innehållet i verkstäderna planeras och leds av 15–17-åringar, med stöd av en handledare. Varje vecka har ett nytt tema. Du kan delta en gång eller varje måndag, stanna en stund eller till och med hela två timmar. Alla får plats!</p><p>Ingen verkstad under höstlovsveckan 12–18 oktober.</p><p>Om du vill skaffa dig arbetslivserfarenhet genom att delta i planeringen och handledningen, hör av dig till kultur- och ungdomsledare Tytti på telefonnummer 040 683 70 96. Lön för handledningen betalas ut till 15–17-åringar via Seure.</p><p>Mer information: Ungdomsledare Tytti, tfn 040 683 70 96</p>",
                "en": "<p>Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills.</p><p>The content of the workshops is planned and led by young people aged 15–17, with the support of an instructor. The theme changes every week. You can take part just once or every Monday and stay for a little while or the whole two hours. There is room for everyone!</p><p>No workshop will be held during the autumn break week 12–18 October.</p><p>If you would like to gain work experience by getting involved in planning and instruction activities, please get in touch with Cultural Youth Instructor Tytti by calling +358 40 683 7096. Instructors aged 15–17 are paid a salary via Seure.</p><p>For more information, please contact: Youth Instructor Tytti, tel. +358 40 683 7096</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69398/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69397",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T10:13:48.587737Z",
                    "last_modified_time": "2026-06-15T10:13:48.587753Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793291.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T10:13:48.475826Z",
            "last_modified_time": "2026-07-21T09:14:51.880167Z",
            "date_published": null,
            "start_time": "2026-10-19T13:00:00Z",
            "end_time": "2026-10-19T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät",
                "sv": "Eftermiddagar planerade av unga",
                "en": "Afternoons planned by young people"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.",
                "sv": "Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.",
                "en": "Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6A07D4DC56AF786EDE9679991A287133/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6A07D4DC56AF786EDE9679991A287133/Eftermiddagar_planerade_av_unga_",
                "en": "http://www.vuotalo.fi/en/events/event/6A07D4DC56AF786EDE9679991A287133/Afternoons_planned_by_young_people_"
            },
            "description": {
                "fi": "<p>Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.</p><p>Työpajojen sisällöt suunnittelevat ja ohjaavat 15–17-vuotiaat, ohjaajan tuella. Teema vaihtuu joka viikko. Voit osallistua kerran tai joka maanantai, viipyä hetken tai vaikka koko kaksi tuntia. Kaikki mahtuvat mukaan!</p><p>Ei työpajaa syyslomaviikolla 12.–18.10.</p><p>Jos haluat työkokemusta osallistumalla suunnitteluun ja ohjaamiseen, niin laita viestiä kulttuuriselle nuoriso-ohjaaja Tytille, 040 683 7096. Ohjaamisesta maksetaan 15–17-vuotiaille palkkaa Seuren kautta.</p><p>Lisätiedot: Nuoriso-ohjaaja Tytti, puh. 040 683 7096</p>",
                "sv": "<p>Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.</p><p>Innehållet i verkstäderna planeras och leds av 15–17-åringar, med stöd av en handledare. Varje vecka har ett nytt tema. Du kan delta en gång eller varje måndag, stanna en stund eller till och med hela två timmar. Alla får plats!</p><p>Ingen verkstad under höstlovsveckan 12–18 oktober.</p><p>Om du vill skaffa dig arbetslivserfarenhet genom att delta i planeringen och handledningen, hör av dig till kultur- och ungdomsledare Tytti på telefonnummer 040 683 70 96. Lön för handledningen betalas ut till 15–17-åringar via Seure.</p><p>Mer information: Ungdomsledare Tytti, tfn 040 683 70 96</p>",
                "en": "<p>Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills.</p><p>The content of the workshops is planned and led by young people aged 15–17, with the support of an instructor. The theme changes every week. You can take part just once or every Monday and stay for a little while or the whole two hours. There is room for everyone!</p><p>No workshop will be held during the autumn break week 12–18 October.</p><p>If you would like to gain work experience by getting involved in planning and instruction activities, please get in touch with Cultural Youth Instructor Tytti by calling +358 40 683 7096. Instructors aged 15–17 are paid a salary via Seure.</p><p>For more information, please contact: Youth Instructor Tytti, tel. +358 40 683 7096</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69397/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69396",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385152,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T10:13:46.804963Z",
                    "last_modified_time": "2026-06-15T10:13:46.804976Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793290.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385152/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T10:13:46.696404Z",
            "last_modified_time": "2026-07-21T09:14:48.139212Z",
            "date_published": null,
            "start_time": "2026-10-05T13:00:00Z",
            "end_time": "2026-10-05T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät",
                "sv": "Eftermiddagar planerade av unga",
                "en": "Afternoons planned by young people"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.",
                "sv": "Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.",
                "en": "Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/54CEC2AE89DAA61048236F4E6B8B2474/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/54CEC2AE89DAA61048236F4E6B8B2474/Eftermiddagar_planerade_av_unga_",
                "en": "http://www.vuotalo.fi/en/events/event/54CEC2AE89DAA61048236F4E6B8B2474/Afternoons_planned_by_young_people_"
            },
            "description": {
                "fi": "<p>Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.</p><p>Työpajojen sisällöt suunnittelevat ja ohjaavat 15–17-vuotiaat, ohjaajan tuella. Teema vaihtuu joka viikko. Voit osallistua kerran tai joka maanantai, viipyä hetken tai vaikka koko kaksi tuntia. Kaikki mahtuvat mukaan!</p><p>Ei työpajaa syyslomaviikolla 12.–18.10.</p><p>Jos haluat työkokemusta osallistumalla suunnitteluun ja ohjaamiseen, niin laita viestiä kulttuuriselle nuoriso-ohjaaja Tytille, 040 683 7096. Ohjaamisesta maksetaan 15–17-vuotiaille palkkaa Seuren kautta.</p><p>Lisätiedot: Nuoriso-ohjaaja Tytti, puh. 040 683 7096</p>",
                "sv": "<p>Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.</p><p>Innehållet i verkstäderna planeras och leds av 15–17-åringar, med stöd av en handledare. Varje vecka har ett nytt tema. Du kan delta en gång eller varje måndag, stanna en stund eller till och med hela två timmar. Alla får plats!</p><p>Ingen verkstad under höstlovsveckan 12–18 oktober.</p><p>Om du vill skaffa dig arbetslivserfarenhet genom att delta i planeringen och handledningen, hör av dig till kultur- och ungdomsledare Tytti på telefonnummer 040 683 70 96. Lön för handledningen betalas ut till 15–17-åringar via Seure.</p><p>Mer information: Ungdomsledare Tytti, tfn 040 683 70 96</p>",
                "en": "<p>Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills.</p><p>The content of the workshops is planned and led by young people aged 15–17, with the support of an instructor. The theme changes every week. You can take part just once or every Monday and stay for a little while or the whole two hours. There is room for everyone!</p><p>No workshop will be held during the autumn break week 12–18 October.</p><p>If you would like to gain work experience by getting involved in planning and instruction activities, please get in touch with Cultural Youth Instructor Tytti by calling +358 40 683 7096. Instructors aged 15–17 are paid a salary via Seure.</p><p>For more information, please contact: Youth Instructor Tytti, tel. +358 40 683 7096</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69396/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69406",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385184,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:12.836872Z",
                    "last_modified_time": "2026-06-16T09:14:12.836887Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794033.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385184/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-16T09:14:12.723326Z",
            "last_modified_time": "2026-07-21T09:14:44.336204Z",
            "date_published": null,
            "start_time": "2026-09-23T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Vuotalo x Rakkautta & Anarkiaa – Elokuva julkistetaan 1.9.",
                "sv": "Pulpettikino – Nordhuset x Rakkautta & Anarkiaa – Filmen offentliggörs den 1 september",
                "en": "Pulpettikino – Vuosaari House x Love & Anarchy – Film to be announced on 1 September."
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/319516660D7BCED3255BFC72B6EEE531/Pulpettikino",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/319516660D7BCED3255BFC72B6EEE531/Pulpettikino",
                "en": "http://www.vuotalo.fi/en/events/event/319516660D7BCED3255BFC72B6EEE531/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille lapsille ja nuorille: varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Vuotalossa!</p><p>Ilmoittautuminen näytöksiin tapahtuu elokuussa.</p><p>Näytösten tarkka kesto vahvistuu elokuvien vahvistumisen myötä. <br> <br><b>Näytösaikataulu:</b></p><p>ti 22.9. <br>klo 9.00 ja klo 10.15 <br> <br>ke 23.9. <br>klo 9 ja klo 13</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för barn och unga i Helsingfors: småbarnspedagogikgrupper och elever i olika årskurser. I år visas återigen Pulpettikino-filmer också på Nordhuset!</p><p>Anmälan till föreställningarna sker i augusti.</p><p>Den exakta längden på visningarna bekräftas när filmerna har bekräftats.</p><p><b>Föreställningar:</b></p><p>ti 22.9  <br>kl. 9.00 och kl. 10.15</p><p>on 23.9  <br>kl. 9 och kl. 13</p>",
                "en": "<p>Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for children and young people in Helsinki, from early childhood education groups to schoolchildren in different grades. This year, Pulpettikino films are once again screened at Vuosaari House!</p><p>Registration for the screenings will take place in August.</p><p>The exact duration of the screenings will be confirmed as the films are confirmed.</p><p><b>Screening schedule:</b></p><p>Tuesday 22 September  <br>at 9.00 and 10.15</p><p>Wednesday 23 September  <br>at 9.00 and 13.00</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69406/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69404",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385183,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:12.404733Z",
                    "last_modified_time": "2026-06-16T09:14:12.404749Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794032.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385183/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-16T09:14:12.284084Z",
            "last_modified_time": "2026-07-21T09:14:43.847107Z",
            "date_published": null,
            "start_time": "2026-09-23T06:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Vuotalo x Rakkautta & Anarkiaa – Elokuva julkistetaan 1.9.",
                "sv": "Pulpettikino – Nordhuset x Rakkautta & Anarkiaa – Filmen offentliggörs den 1 september",
                "en": "Pulpettikino – Vuosaari House x Love & Anarchy – Film to be announced on 1 September."
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/11AEB74148793E0ED1BAA28FF1C2724F/Pulpettikino",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/11AEB74148793E0ED1BAA28FF1C2724F/Pulpettikino",
                "en": "http://www.vuotalo.fi/en/events/event/11AEB74148793E0ED1BAA28FF1C2724F/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille lapsille ja nuorille: varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Vuotalossa!</p><p>Ilmoittautuminen näytöksiin tapahtuu elokuussa.</p><p>Näytösten tarkka kesto vahvistuu elokuvien vahvistumisen myötä. <br> <br><b>Näytösaikataulu:</b></p><p>ti 22.9. <br>klo 9.00 ja klo 10.15 <br> <br>ke 23.9. <br>klo 9 ja klo 13</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för barn och unga i Helsingfors: småbarnspedagogikgrupper och elever i olika årskurser. I år visas återigen Pulpettikino-filmer också på Nordhuset!</p><p>Anmälan till föreställningarna sker i augusti.</p><p>Den exakta längden på visningarna bekräftas när filmerna har bekräftats.</p><p><b>Föreställningar:</b></p><p>ti 22.9  <br>kl. 9.00 och kl. 10.15</p><p>on 23.9  <br>kl. 9 och kl. 13</p>",
                "en": "<p>Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for children and young people in Helsinki, from early childhood education groups to schoolchildren in different grades. This year, Pulpettikino films are once again screened at Vuosaari House!</p><p>Registration for the screenings will take place in August.</p><p>The exact duration of the screenings will be confirmed as the films are confirmed.</p><p><b>Screening schedule:</b></p><p>Tuesday 22 September  <br>at 9.00 and 10.15</p><p>Wednesday 23 September  <br>at 9.00 and 13.00</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69404/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69403",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:10.852662Z",
                    "last_modified_time": "2026-06-16T09:14:10.852678Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794029.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-16T09:14:10.734490Z",
            "last_modified_time": "2026-07-21T09:14:43.223504Z",
            "date_published": null,
            "start_time": "2026-09-22T07:15:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Vuotalo x Rakkautta & Anarkiaa – Elokuva julkistetaan 1.9.",
                "sv": "Pulpettikino – Nordhuset x Rakkautta & Anarkiaa – Filmen offentliggörs den 1 september",
                "en": "Pulpettikino – Vuosaari House x Love & Anarchy – Film to be announced on 1 September."
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F1963A8D128803871F3EE8FD914AA257/Pulpettikino",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F1963A8D128803871F3EE8FD914AA257/Pulpettikino",
                "en": "http://www.vuotalo.fi/en/events/event/F1963A8D128803871F3EE8FD914AA257/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille lapsille ja nuorille: varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Vuotalossa!</p><p>Ilmoittautuminen näytöksiin tapahtuu elokuussa.</p><p>Näytösten tarkka kesto vahvistuu elokuvien vahvistumisen myötä. <br> <br><b>Näytösaikataulu:</b></p><p>ti 22.9. <br>klo 9.00 ja klo 10.15 <br> <br>ke 23.9. <br>klo 9 ja klo 13</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för barn och unga i Helsingfors: småbarnspedagogikgrupper och elever i olika årskurser. I år visas återigen Pulpettikino-filmer också på Nordhuset!</p><p>Anmälan till föreställningarna sker i augusti.</p><p>Den exakta längden på visningarna bekräftas när filmerna har bekräftats.</p><p><b>Föreställningar:</b></p><p>ti 22.9  <br>kl. 9.00 och kl. 10.15</p><p>on 23.9  <br>kl. 9 och kl. 13</p>",
                "en": "<p>Pulpettikino is a special section for early childhood education and school groups in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for children and young people in Helsinki, from early childhood education groups to schoolchildren in different grades. This year, Pulpettikino films are once again screened at Vuosaari House!</p><p>Registration for the screenings will take place in August.</p><p>The exact duration of the screenings will be confirmed as the films are confirmed.</p><p><b>Screening schedule:</b></p><p>Tuesday 22 September  <br>at 9.00 and 10.15</p><p>Wednesday 23 September  <br>at 9.00 and 13.00</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69403/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69402",
            "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:105/?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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:10.371514Z",
                    "last_modified_time": "2026-06-16T09:14:10.371528Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794028.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385179/?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-06-16T09:14:10.254295Z",
            "last_modified_time": "2026-07-21T09:14:42.928304Z",
            "date_published": null,
            "start_time": "2026-09-22T06:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Vuotalo x Rakkautta & Anarkiaa – Elokuva julkistetaan 1.9.",
                "sv": "Pulpettikino – Nordhuset x Rakkautta & Anarkiaa – Filmen offentliggörs den 1 september",
                "en": "Pulpettikino – Vuosaari House x Love & Anarchy – Film to be announced on 1 September."
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.",
                "en": "Vuosaari House x Love & Anarchy – Film to be announced on 1 September."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D2B68AE8103833517FFEFF2D249C9D6A/Pulpettikino",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/D2B68AE8103833517FFEFF2D249C9D6A/Pulpettikino",
                "en": "http://www.vuotalo.fi/en/events/event/D2B68AE8103833517FFEFF2D249C9D6A/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin varhaiskasvatus- ja kouluryhmien oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille lapsille ja nuorille: varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Vuotalossa!</p><p>Ilmoittautuminen näytöksiin tapahtuu elokuussa.</p><p>Näytösten tarkka kesto vahvistuu elokuvien vahvistumisen myötä. <br> <br><b>Näytösaikataulu:</b></p><p>ti 22.9. <br>klo 9.00 ja klo 10.15 <br> <br>ke 23.9. <br>klo 9 ja klo 13</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Rakkautta & Anarkiaa för daghems- och skolgrupper som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för barn och unga i Helsingfors: småbarnspedagogikgrupper och elever i olika årskurser. I år visas återigen Pulpettikino-filmer också på Nordhuset!</p><p>Anmälan till föreställningarna sker i augusti.</p><p>Den exakta längden på visningarna bekräftas när filmerna har bekräftats.</p><p><b>Föreställningar:</b></p><p>ti 22.9  <br>kl. 9.00 och kl. 10.15</p><p>on 23.9  <br>kl. 9 och kl. 13</p>",
                "en": "<p>Vuosaari House x Love & Anarchy – Film to be announced on 1 September.</p><p>Pulpettikino offers free film screenings for children and young people in Helsinki, from early childhood education groups to schoolchildren in different grades. This year, Pulpettikino films are once again screened at Vuosaari House!</p><p>Registration for the screenings will take place in August.</p><p>The exact duration of the screenings will be confirmed as the films are confirmed.</p><p><b>Screening schedule:</b></p><p>Tuesday 22 September  <br>at 9.00 and 10.15</p><p>Wednesday 23 September  <br>at 9.00 and 13.00</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69402/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69395",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385151,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T10:13:44.847186Z",
                    "last_modified_time": "2026-06-15T10:13:44.847205Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793288.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385151/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T10:13:44.727110Z",
            "last_modified_time": "2026-07-21T09:14:42.636181Z",
            "date_published": null,
            "start_time": "2026-09-21T13:00:00Z",
            "end_time": "2026-09-21T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Nuorten suunnittelemat iltapäivät",
                "sv": "Eftermiddagar planerade av unga",
                "en": "Afternoons planned by young people"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.",
                "sv": "Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.",
                "en": "Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/80CB6DB83E6CB876149B851981F29E42/Nuorten_suunnittelemat_iltapaivat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/80CB6DB83E6CB876149B851981F29E42/Eftermiddagar_planerade_av_unga_",
                "en": "http://www.vuotalo.fi/en/events/event/80CB6DB83E6CB876149B851981F29E42/Afternoons_planned_by_young_people_"
            },
            "description": {
                "fi": "<p>Tervetuloa askartelemaan ja harjoittelemaan kädentaitoja Vuotalon aulaan.</p><p>Työpajojen sisällöt suunnittelevat ja ohjaavat 15–17-vuotiaat, ohjaajan tuella. Teema vaihtuu joka viikko. Voit osallistua kerran tai joka maanantai, viipyä hetken tai vaikka koko kaksi tuntia. Kaikki mahtuvat mukaan!</p><p>Ei työpajaa syyslomaviikolla 12.–18.10.</p><p>Jos haluat työkokemusta osallistumalla suunnitteluun ja ohjaamiseen, niin laita viestiä kulttuuriselle nuoriso-ohjaaja Tytille, 040 683 7096. Ohjaamisesta maksetaan 15–17-vuotiaille palkkaa Seuren kautta.</p><p>Lisätiedot: Nuoriso-ohjaaja Tytti, puh. 040 683 7096</p>",
                "sv": "<p>Välkommen att pyssla och öva på dina hantverksfärdigheter i Nordhusets entréhall.</p><p>Innehållet i verkstäderna planeras och leds av 15–17-åringar, med stöd av en handledare. Varje vecka har ett nytt tema. Du kan delta en gång eller varje måndag, stanna en stund eller till och med hela två timmar. Alla får plats!</p><p>Ingen verkstad under höstlovsveckan 12–18 oktober.</p><p>Om du vill skaffa dig arbetslivserfarenhet genom att delta i planeringen och handledningen, hör av dig till kultur- och ungdomsledare Tytti på telefonnummer 040 683 70 96. Lön för handledningen betalas ut till 15–17-åringar via Seure.</p><p>Mer information: Ungdomsledare Tytti, tfn 040 683 70 96</p>",
                "en": "<p>Join us in the Vuosaari House lobby to do some arts and crafts and practise your manual skills.</p><p>The content of the workshops is planned and led by young people aged 15–17, with the support of an instructor. The theme changes every week. You can take part just once or every Monday and stay for a little while or the whole two hours. There is room for everyone!</p><p>No workshop will be held during the autumn break week 12–18 October.</p><p>If you would like to gain work experience by getting involved in planning and instruction activities, please get in touch with Cultural Youth Instructor Tytti by calling +358 40 683 7096. Instructors aged 15–17 are paid a salary via Seure.</p><p>For more information, please contact: Youth Instructor Tytti, tel. +358 40 683 7096</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69395/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69361",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385289,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-22T13:14:33.380612Z",
                    "last_modified_time": "2026-06-22T13:14:33.380627Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791946.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385289/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-22T13:14:33.230933Z",
            "last_modified_time": "2026-07-21T08:15:34.180706Z",
            "date_published": null,
            "start_time": "2026-09-26T09:00:00Z",
            "end_time": "2026-09-26T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Idän kirjamessut",
                "sv": "Bokmässan i öster",
                "en": "East Helsinki Book Fair"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Idän kirjamessut on koko Itä-Helsingin oma kirjallisuuden juhlapäivä: kaikille kirjanystäville, uteliaille lukijoille ja kirjallisuudesta kiinnostuneille.",
                "sv": "Bokmässan i öster är en riktig litteraturfest för hela östra Helsingfors: för alla bokälskare, nyfikna läsare och litteraturintresserade.",
                "en": "The East Helsinki Book Fair is a celebration of literature for the whole of East Helsinki: for all book lovers, curious readers and anyone interested in literature."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/43645639A404B8082258BFC423B4BA25/Idan_kirjamessut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/43645639A404B8082258BFC423B4BA25/Bokmassan_i_oster_",
                "en": "http://www.stoa.fi/en/events/event/43645639A404B8082258BFC423B4BA25/East_Helsinki_Book_Fair"
            },
            "description": {
                "fi": "<p>Idän kirjamessut on koko Itä-Helsingin oma kirjallisuuden juhlapäivä: kaikille kirjanystäville, uteliaille lukijoille ja kirjallisuudesta kiinnostuneille.</p><p>Kirjailijat, kustantajat, kirjamyyjät sekä keskustelut kootaan saman katon alle yhden lauantaipäivän ajaksi kaikenikäiselle yleisölle.</p><p>Ohjelmassa aiheina on muun muassa Itä-Helsinki, monikielisyys, sarjakuvat ja kääntäminen. Päivän aikana kuullaan keskusteluja, kohdataan tekijöitä ja pohditaan yhdessä, mitä idässä luetaan juuri nyt. Nuoremmille kävijöille on tarjolla ohjelmaa sekä työpajatoimintaa iltapäivän ajan.</p><p>Aulan myyntipöydiltä löydät niin suurten kuin pienten kustantamojen kirjoja, lehtiä ja muita painatteita.</p><p>Kirjamessujen iltaohjelman avaa sanataideduo <b>Marjo Niemi</b> ja <b>Eeva Turunen</b> ja ilta huipentuu suomenkielisen räpin uudisraivaajan <b>Asan</b> keikkaan. Liput iltaohjelmaan tulossa myyntiin kesällä.</p><p>Idän kirjamessut toimii yhteistyössä lokakuussa Messukeskuksessa järjestettävien Helsingin kirjamessujen kanssa. Tapahtuman järjestää Nuoren Voiman Liitto yhteistyössä Stoan ja Itäkeskuksen kirjaston kanssa.</p>",
                "sv": "<p>Bokmässan i öster är en riktig litteraturfest för hela östra Helsingfors: för alla bokälskare, nyfikna läsare och litteraturintresserade.</p><p>Författare, förläggare och bokhandlare samt diskussioner samlas under samma tak under en lördag för en publik i alla åldrar.</p><p>Programmet tar bland annat upp ämnen som Östra Helsingfors, flerspråkighet, serier och översättning. Under dagen får vi lyssna på samtal, träffa olika aktörer och tillsammans fundera över vad man läser i Östra centrum just nu. För de yngre besökarna erbjuds programpunkter och verkstäder under eftermiddagen.</p><p>På försäljningsborden i entréhallen hittar du böcker, tidningar och andra trycksaker från både stora och små förlag.</p><p>Kvällsprogrammet på bokmässan inleds av ordkonstduon <b>Marjo Niemi</b> och <b>Eeva Turunen</b>, och kvällen kulminerar i en spelning av Asa</b>, en pionjär inom finsk rap<b>. Biljetter till kvällsprogrammet börjar säljas under sommaren. <br> <br>Bokmässan i öster samarbetar med Helsingfors bokmässa, som ordnas i Mässcentrum i oktober. Evenemanget ordnas av Nuoren Voiman Liitto i samarbete med Stoa och Östra centrums bibliotek.</p>",
                "en": "<p>The East Helsinki Book Fair is a celebration of literature for the whole of East Helsinki: for all book lovers, curious readers and anyone interested in literature.</p><p>Authors, publishers and booksellers, along with a programme of discussions, come together under one roof for a single Saturday, for an audience of all ages.</p><p>The programme covers topics including East Helsinki, multilingualism, comics and translation. Throughout the day, we listen to discussions, meet authors and reflect together on what people in East Helsinki are reading right now. We also have a programme of activities and workshops for younger visitors throughout the afternoon. <br> <br>On the sales tables in the lobby, you can find books, magazines and other printed materials from publishers both major and minor.  <br> <br>The Book Fair’s evening programme is kicked off by the literary art duo <b>Marjo Niemi</b> and <b>Eeva Turunen</b>, and the evening culminates in a performance by <b>Asa</b>, a pioneer of Finnish-language rap. Tickets for the evening programme will go on sale during the summer.</p><p>The East Helsinki Book Fair is organised in collaboration with the Helsinki Book Fair, which takes place at the Messukeskus exhibition centre in October. The event is organised by the Nuoren Voiman Liitto in collaboration with Stoa and Itäkeskus Library.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69361/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69305",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T14:14:15.030245Z",
                    "last_modified_time": "2026-06-16T14:14:15.030260Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793728.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385195/?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-06-16T14:14:14.938934Z",
            "last_modified_time": "2026-07-21T08:15:32.944841Z",
            "date_published": null,
            "start_time": "2026-09-23T10:15:00Z",
            "end_time": "2026-09-23T10:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Rakkautta & Anarkiaa",
                "sv": "Pulpettikino – Kärlek & Anarki",
                "en": "Pulpettikino – Love & Anarchy"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/7302528695A9463C15CFAE2A2125C3FE/Pulpettikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/7302528695A9463C15CFAE2A2125C3FE/Pulpettikino",
                "en": "http://www.stoa.fi/en/events/event/7302528695A9463C15CFAE2A2125C3FE/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Stoassa peräti neljän näytöksen verran! Ilmoittautuminen näytöksiin tapahtuu elokuussa. Ohjeet tarkentuvat kesän aikana.</p><p>Kesto: noin 35 min  <br>Ikäsuositus: päiväkoti-ikäiset ja alakoululaiset<br>Kieli: sanaton<br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset R&A:n sivuston kautta, kun elokuvat on julkaistu.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för småbarnspedagogikgrupper och elever i olika årskurser i Helsingfors. I år visas återigen Pulpettikino-filmer också på Stoa – hela fyra föreställningar! Anmälan till föreställningarna sker i augusti. Anvisningarna preciseras under sommaren.  <br> <br>Längd: ca 35 min.  <br>Åldersrekommendation: barn i daghemsåldern och lågstadieelever <br>Språk: ordlös <br>Fritt inträde. Obligatorisk förhandsanmälan via R&A:s webbplats när filmerna har offentliggjorts.</p>",
                "en": "<p>Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for Helsinki’s early childhood education groups and schoolchildren in different grades. This year, Pulpettikino films are once again screened at Stoa – with no fewer than four screenings! Registration for the screenings will take place in August. Further details will be provided during the summer.</p><p>Duration: roughly 35 min <br>Recommended age: daycare-age children and primary school pupils <br>Language: non-verbal <br>Free entry. Compulsory advance registration will take place via the L&A website once the films have been published.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69305/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69304",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385194,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T14:14:14.624499Z",
                    "last_modified_time": "2026-06-16T14:14:14.624513Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793727.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385194/?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-06-16T14:14:14.525560Z",
            "last_modified_time": "2026-07-21T08:15:32.705178Z",
            "date_published": null,
            "start_time": "2026-09-23T09:00:00Z",
            "end_time": "2026-09-23T09:35:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Rakkautta & Anarkiaa",
                "sv": "Pulpettikino – Kärlek & Anarki",
                "en": "Pulpettikino – Love & Anarchy"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/61CC5EA2053582C2ED0160B244EBB16E/Pulpettikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/61CC5EA2053582C2ED0160B244EBB16E/Pulpettikino",
                "en": "http://www.stoa.fi/en/events/event/61CC5EA2053582C2ED0160B244EBB16E/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Stoassa peräti neljän näytöksen verran! Ilmoittautuminen näytöksiin tapahtuu elokuussa. Ohjeet tarkentuvat kesän aikana.</p><p>Kesto: noin 35 min  <br>Ikäsuositus: päiväkoti-ikäiset ja alakoululaiset<br>Kieli: sanaton<br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset R&A:n sivuston kautta, kun elokuvat on julkaistu.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för småbarnspedagogikgrupper och elever i olika årskurser i Helsingfors. I år visas återigen Pulpettikino-filmer också på Stoa – hela fyra föreställningar! Anmälan till föreställningarna sker i augusti. Anvisningarna preciseras under sommaren.  <br> <br>Längd: ca 35 min.  <br>Åldersrekommendation: barn i daghemsåldern och lågstadieelever <br>Språk: ordlös <br>Fritt inträde. Obligatorisk förhandsanmälan via R&A:s webbplats när filmerna har offentliggjorts.</p>",
                "en": "<p>Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for Helsinki’s early childhood education groups and schoolchildren in different grades. This year, Pulpettikino films are once again screened at Stoa – with no fewer than four screenings! Registration for the screenings will take place in August. Further details will be provided during the summer.</p><p>Duration: roughly 35 min <br>Recommended age: daycare-age children and primary school pupils <br>Language: non-verbal <br>Free entry. Compulsory advance registration will take place via the L&A website once the films have been published.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69304/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69303",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385193,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T14:14:14.268588Z",
                    "last_modified_time": "2026-06-16T14:14:14.268602Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793726.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385193/?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-06-16T14:14:14.176773Z",
            "last_modified_time": "2026-07-21T08:15:32.530651Z",
            "date_published": null,
            "start_time": "2026-09-23T07:15:00Z",
            "end_time": "2026-09-23T07:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Rakkautta & Anarkiaa",
                "sv": "Pulpettikino – Kärlek & Anarki",
                "en": "Pulpettikino – Love & Anarchy"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BCD6BF941ECE39A03930DB24F92D4E7/Pulpettikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4BCD6BF941ECE39A03930DB24F92D4E7/Pulpettikino",
                "en": "http://www.stoa.fi/en/events/event/4BCD6BF941ECE39A03930DB24F92D4E7/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Stoassa peräti neljän näytöksen verran! Ilmoittautuminen näytöksiin tapahtuu elokuussa. Ohjeet tarkentuvat kesän aikana.</p><p>Kesto: noin 35 min  <br>Ikäsuositus: päiväkoti-ikäiset ja alakoululaiset<br>Kieli: sanaton<br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset R&A:n sivuston kautta, kun elokuvat on julkaistu.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för småbarnspedagogikgrupper och elever i olika årskurser i Helsingfors. I år visas återigen Pulpettikino-filmer också på Stoa – hela fyra föreställningar! Anmälan till föreställningarna sker i augusti. Anvisningarna preciseras under sommaren.  <br> <br>Längd: ca 35 min.  <br>Åldersrekommendation: barn i daghemsåldern och lågstadieelever <br>Språk: ordlös <br>Fritt inträde. Obligatorisk förhandsanmälan via R&A:s webbplats när filmerna har offentliggjorts.</p>",
                "en": "<p>Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for Helsinki’s early childhood education groups and schoolchildren in different grades. This year, Pulpettikino films are once again screened at Stoa – with no fewer than four screenings! Registration for the screenings will take place in August. Further details will be provided during the summer.</p><p>Duration: roughly 35 min <br>Recommended age: daycare-age children and primary school pupils <br>Language: non-verbal <br>Free entry. Compulsory advance registration will take place via the L&A website once the films have been published.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69303/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69302",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385192,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T14:14:13.822839Z",
                    "last_modified_time": "2026-06-16T14:14:13.822853Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793725.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385192/?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-06-16T14:14:13.677894Z",
            "last_modified_time": "2026-07-21T08:15:32.202362Z",
            "date_published": null,
            "start_time": "2026-09-23T06:15:00Z",
            "end_time": "2026-09-23T06:50:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pulpettikino – Rakkautta & Anarkiaa",
                "sv": "Pulpettikino – Kärlek & Anarki",
                "en": "Pulpettikino – Love & Anarchy"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.",
                "sv": "Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.",
                "en": "Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/36BBE25C67323230B23B50CF260BC51B/Pulpettikino",
                "sv": "http://www.stoa.fi/sv/evenemang/event/36BBE25C67323230B23B50CF260BC51B/Pulpettikino",
                "en": "http://www.stoa.fi/en/events/event/36BBE25C67323230B23B50CF260BC51B/Pulpettikino"
            },
            "description": {
                "fi": "<p>Pulpettikino on vuosittain syyskuussa järjestettävän Rakkautta & Anarkiaa -elokuvafestivaalin lasten ja nuorten oma osio.</p><p>Pulpettikino tarjoaa ilmaisia elokuvanäytöksiä helsinkiläisille varhaiskasvatusryhmille ja eri luokka-asteiden koululaisille. Tänä vuonna Pulpettikino-elokuvia katsellaan jälleen myös Stoassa peräti neljän näytöksen verran! Ilmoittautuminen näytöksiin tapahtuu elokuussa. Ohjeet tarkentuvat kesän aikana.</p><p>Kesto: noin 35 min  <br>Ikäsuositus: päiväkoti-ikäiset ja alakoululaiset<br>Kieli: sanaton<br>Vapaa pääsy. Pakolliset ennakkoilmoittautumiset R&A:n sivuston kautta, kun elokuvat on julkaistu.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Pulpettikino är en särskild del av filmfestivalen Kärlek & Anarki för barn och ungdomar som ordnas varje år i september.</p><p>Pulpettikino erbjuder gratis filmvisningar för småbarnspedagogikgrupper och elever i olika årskurser i Helsingfors. I år visas återigen Pulpettikino-filmer också på Stoa – hela fyra föreställningar! Anmälan till föreställningarna sker i augusti. Anvisningarna preciseras under sommaren.  <br> <br>Längd: ca 35 min.  <br>Åldersrekommendation: barn i daghemsåldern och lågstadieelever <br>Språk: ordlös <br>Fritt inträde. Obligatorisk förhandsanmälan via R&A:s webbplats när filmerna har offentliggjorts.</p>",
                "en": "<p>Pulpettikino is a special section for children and young people in the annual Love & Anarchy film festival in September.</p><p>Pulpettikino offers free film screenings for Helsinki’s early childhood education groups and schoolchildren in different grades. This year, Pulpettikino films are once again screened at Stoa – with no fewer than four screenings! Registration for the screenings will take place in August. Further details will be provided during the summer.</p><p>Duration: roughly 35 min <br>Recommended age: daycare-age children and primary school pupils <br>Language: non-verbal <br>Free entry. Compulsory advance registration will take place via the L&A website once the films have been published.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68643",
            "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:32/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385172,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T13:13:26.731082Z",
                    "last_modified_time": "2026-06-15T13:13:26.731095Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385172/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T13:13:26.567763Z",
            "last_modified_time": "2026-07-21T08:15:31.718152Z",
            "date_published": null,
            "start_time": "2026-09-23",
            "end_time": "2026-10-11",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jäljellä on kuva – Läpileikkaus Ismo-Pekka Heikinheimon koreografioista valokuvina",
                "sv": "Det som finns kvar är bilden – Ett tvärsnitt av Ismo-Pekka Heikinheimos koreografier i form av fotografier",
                "en": "A Photo Remains – A photographic overview of Ismo-Pekka Heikinheimo’s choreographies"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Valokuvanäyttely esittelee viidellä eri vuosikymmenellä otettuja teoskuvia Ismo-Pekka Heikinheimon koreografioista.",
                "sv": "Fotoutställningen visar bilder på verk från Ismo-Pekka Heikinheimos koreografier, tagna under fem olika årtionden.",
                "en": "This photography exhibition features photographs of Ismo-Pekka Heikinheimo’s choreographies, taken over five different decades."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/D88C1822202FDD5517A20FB653A6FB51/Jaljella_on_kuva_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/D88C1822202FDD5517A20FB653A6FB51/Det_som_finns_kvar_ar_bilden",
                "en": "http://www.stoa.fi/en/events/event/D88C1822202FDD5517A20FB653A6FB51/A_Photo_Remains_"
            },
            "description": {
                "fi": "<p>Valokuvanäyttely esittelee viidellä eri vuosikymmenellä otettuja teoskuvia Ismo-Pekka Heikinheimon koreografioista.</p><p>Tanssiteosten aiheet käsittelevät ihmisten välistä kommunikaatiota liikkeen, tanssin, tilallisuuden, valon, puvustuksen ja lavastuksen kautta. Erityisinä teemoina ovat sukupuoli, seksuaalisuus, ruumiin estetiikka, tanssin ja arkkitehtuurin suhde sekä tanssijan ja valon kohtaaminen. <br> <br>Heikinheimo on yhteistyökumppaneidensa kanssa luonut useita suurimuotoisia tanssiteoksia Kulttuurikeskus Stoan teatterisaliin, kuten teokset <i>Tule pian sillä näen tähtiä</i> (1992), <i>ToF</i> (1998), <i>Afrodisias</i> (2000) ja <i>Paina Nappia!</i> (2002), joista kolme oli ensi-illassa Helsingin Juhlaviikoilla. Näistä otetut teoskuvat ovat kaikki valokuvaaja <b>Sakari Viikan</b> käsialaa. <br> <br>Sakari Viika on yksi tunnetuimmista tanssia kuvanneista suomalaisista valokuvaajista. Viikan ja Heikinheimon pitkäaikainen yhteistyö alkoi jo vuonna 1991 kun hän kuvasi Tanssiteatteri Hurjaruuthille suunnitellun teoksen <i>Jokamiehen niksikirja</i>. Yhteistyö on jatkunut jo lähes 40 koreografian tallentamiseen valokuvaksi. Kuvat luovat osaltaan näkökulmia suomalaisen tanssitaiteen historiaan. <br> <br>Näyttelyn muut valokuvaajat ovat mm. <b>Minna Hatinen, Matti Häyrynen</b> ja <b>Risto Salmijärvi.</p><p>***<br>Ismo-Pekka Heikinheimo</b> on pitkän linjan tanssitaiteilija, joka on tehnyt yli 60 koreografiaa, mm. kolme tilausteosta Helsingin Juhlaviikoille, koreografioita ulkomaisille tanssiryhmille ja festivaaleille sekä kiertänyt esiintymässä ympäri maailmaa Namibiasta Islantiin 15 eri maassa.  <br> <br>Ismo-Pekka on esiintynyt tunnettujen kansainvälisten koreografien teoksissa, koreografeina mm. Carolyn Carlson, Andrew Degroat, Sylvie Guillermin, Kilina Kremona, Didier Deschamps, Lea Anderson, Jessica Iwanson, Nanna Nilsson, Christine Meldahl ja Ólöf Ingófsdóttir.</p><p>Hän on tanssinut mm. Zodiak – Uuden tanssin keskuksessa, Helsingin kaupunginteatterissa, Aurinkobaletissa, Tanssiteatteri Hurjaruuthissa ja Tanssiteatteri Raatikossa sekä useissa kansainvälissä produktioissa.<br> <br>Ismo-Pekka valmistui tanssija-koreografiksi London Contemporary Dance Schoolista vuonna 1989 ja Taiteen maisteriksi Visuaalisen kulttuurin maisteriohjelmasta Aalto-yliopistosta vuonna 2014.</p><p>Vuosina 1996–2001 Ismo-Pekka toimi tanssijantyön lehtorina Teatterikorkeakoulun tanssitaiteen laitoksella. Hän työskenteli vuosina 2005–2010 Keski-Suomen tanssitaiteen läänintaiteilijana ja perustamansa Tanssin Aika -festivaalin taiteellisena johtajana. Hän on toiminut Ismo Dance Companyn koreografina ja taiteellisena johtajana vuodesta 2003 lähtien.</p><p>Ismo-Pekalle myönnettiin Alfred Kordelinin Säätiön suuri taidepalkinto vuonna 2019. <br> <br><i>“Haluan luoda hetkellisiä, ennen tapahtumattomia ihmisten ja ideoiden kohtaamisia. Koreografisessa työskentelyssäni tavoittelen yhteyttä merkityksen ja olemisen, liikkeen ja tilan, sekä ihmisten välillä. Minulle taide on ihmisten kohtaamisen kautta tapahtuvaa elämyksellisyyttä, kokemuksellisuutta, ajatustenvaihtoa ja itseilmaisua. Taide antaakin mahdollisuuden moninaisten nykyisyyksien ja todellisuuksien tulla esiin. Taide on vuorovaikutuksellista, sillä ihminen on aina suhteessa johonkin.”</i><br>– Ismo-Pekka Heikinheimo</p>",
                "sv": "<p>Fotoutställningen visar bilder på verk från Ismo-Pekka Heikinheimos koreografier, tagna under fem olika årtionden.</p><p>Tematiken i dansverken handlar om kommunikationen mellan människor genom rörelse, dans, rumslighet, ljus, kostymdesign och scenografi. Särskilda teman är kön, sexualitet, kroppens estetik, förhållandet mellan dans och arkitektur samt mötet mellan dansaren och ljuset.</p><p>Heikinheimo har tillsammans med sina samarbetspartner skapat flera storskaliga dansverk för teatersalen på Kulturcentret Stoa, bland annat verken <i>Tule pian sillä näen tähtiä</i> (Kom snart för jag ser stjärnor) (1992), <i>ToF</i> (1998), <i>Afrodisias</i> (2000) och <i>Paina Nappia!</i> (Tryck på knappen!) (2002), varav tre hade premiär under Helsingfors festspel. Bilderna på verken är alla tagna av fotografen <b>Sakari Viika</b>.</p><p>Sakari Viika är en av de mest kända finska fotograferna som har fotograferat dans. Det långvariga samarbetet mellan Viika och Heikinheimo inleddes redan 1991, då han filmade verket <i>Jokamiehen niksikirja</i> (Var mans trickbok), som skapats för dansteatern Hurjaruuth. Samarbetet har nu pågått i nästan 40 fotograferingar av koreografier. Bilderna bidrar till att ge olika perspektiv på den finska danskonstens historia.</p><p>Andra fotografer som medverkar i utställningen är bland annat <b>Minna Hatinen, Matti Häyrynen</b> och <b>Risto Salmijärvi</b>.</p><p>***</p><p><b>Ismo-Pekka Heikinheimo</b> är en danskonstnär med lång erfarenhet som har gjort över 60 koreografier, bland annat tre beställningsverk för Helsingfors festspel, koreografier för utländska dansgrupper och festivaler, samt som har turnerat världen över, från Namibia till Island, i 15 olika länder.</p><p>Ismo-Pekka har medverkat i verk av kända internationella koreografer, bland annat Carolyn Carlson, Andrew Degroat, Sylvie Guillermin, Kilina Kremona, Didier Deschamps, Lea Anderson, Jessica Iwanson, Nanna Nilsson, Christine Meldahl och Ólöf Ingófsdóttir.</p><p>Han har dansat på bland annat Zodiak – Centret för ny dans, Helsingfors stadsteater, Aurinkobaletti, Dansteatern Hurjaruuth och Dansteatern Raatikko samt i flera internationella produktioner.</p><p>Ismo-Pekka tog examen som dansare och koreograf vid London Contemporary Dance School 1989 och magisterexamen i visuell kultur vid Aalto-universitetet 2014.  <br> <br>Under åren 1996–2001 var Ismo-Pekka lektor i dans vid Teaterhögskolans institution för danskonst. Under åren 2005–2010 arbetade han som länskonstnär inom danskonst i Mellersta Finland och som konstnärlig ledare för festivalen Tanssin Aika, som han själv grundat. Han har varit koreograf och konstnärlig ledare för Ismo Dance Company sedan 2003.</p><p>Ismo-Pekka tilldelades Alfred Kordelins stiftelses stora konstpris 2019.</p><p><i>”Jag vill skapa flyktiga möten mellan människor och idéer som aldrig tidigare har ägt rum. I mitt koreografiska arbete strävar jag efter att skapa en koppling mellan innebörd och existens, rörelse och rum samt mellan människor. För mig är konst upplevelser, erfarenheter, utbyte av tankar och självuttryck som skapas genom möten mellan människor. Konsten ger också möjlighet att föra fram många olika slags nutider och verkligheter. Konsten är interaktiv, för människan står alltid i relation till någonting.”</i> <br>– Ismo-Pekka Heikinheimo</p>",
                "en": "<p>This photography exhibition features photographs of Ismo-Pekka Heikinheimo’s choreographies, taken over five different decades.</p><p>The themes of Heikinheimo’s dance works explore communication between people through movement, dance, spatiality, light, costumes and set design. The specific themes include gender, sexuality, the aesthetics of the body, the relationship between dance and architecture, and the way that the dancer interacts with light.</p><p>Together with his collaborators, Heikinheimo has created several large-scale dance productions for the theatre hall of Cultural Centre Stoa, including the works <i>Tule pian sillä näen tähtiä</i> (1992), <i>ToF</i> (1998), <i>Afrodisias</i> (2000) and <i>Paina Nappia!</i> (2002), three of which premiered at the Helsinki Festival. The photos of the works were all taken by photographer <b>Sakari Viika</b>.</p><p>Sakari Viika is one of the best-known Finnish photographers to have captured dance on film. The long-running collaboration between Viika and Heikinheimo began back in 1991 when he filmed the work <i>Jokamiehen niksikirja</i>, which was created for Dance Theatre Hurjaruuth. This collaboration has resulted in the documentation of almost 40 choreographies through photography. The photographs help to shed light on the history of Finnish dance.</p><p>Examples of other photographers featured in the exhibition include <b>Minna Hatinen, Matti Häyrynen</b> and <b>Risto Salmijärvi</b>.</p><p>***</p><p><b>Ismo-Pekka Heikinheimo</b> is a veteran dance artist who has created over 60 choreographies, including three commissioned works for the Helsinki Festival and choreographies for international dance companies and festivals, and has toured the world, performing in 15 different countries from Namibia to Iceland.</p><p>Ismo-Pekka has performed in works by renowned international choreographers, including Carolyn Carlson, Andrew Degroat, Sylvie Guillermin, Kilina Kremona, Didier Deschamps, Lea Anderson, Jessica Iwanson, Nanna Nilsson, Christine Meldahl and Ólöf Ingófsdóttir.</p><p>He has danced in companies such as Zodiak – Centre for New Dance, the Helsinki City Theatre, Aurinkobaletti, Dance Theatre Hurjaruuth and Dance Theatre Raatikko, as well as in numerous international productions.</p><p>Ismo-Pekka graduated as a dancer-choreographer from the London Contemporary Dance School in 1989 and obtained a master of arts degree from the master’s programme in visual culture of Aalto University in 2014.  <br> <br>Between 1996 and 2001, Ismo-Pekka worked as a lecturer in dance at the Department of Dance of the Theatre Academy. From 2005 to 2010, he worked as the regional artist for dance in Central Finland and as the artistic director of the Jyväskylä Dance Festival, which he founded. He has been the choreographer and artistic director of Ismo Dance Company since 2003.</p><p>Ismo-Pekka was awarded the Alfred Kordelin Foundation’s grand art prize in 2019.</p><p><i>“I want to create fleeting, previously unhappened encounters between people and ideas. In my choreographic work, I seek to establish a connection between meaning and being, movement and space, and between people. For me, art is about the experiences, the sense of discovery, the exchange of ideas and self-expression that arise through encounters with other people. Art does indeed provide an opportunity for diverse present-day realities to come to the fore. Art is interactive, because people are always in relation to something.”</i> <br>– Ismo-Pekka Heikinheimo</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68643/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69394",
            "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:105/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385134,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:18:15.829770Z",
                    "last_modified_time": "2026-06-15T09:18:15.829783Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778070.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385134/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-06-15T09:18:15.728262Z",
            "last_modified_time": "2026-07-21T08:15:30.472802Z",
            "date_published": null,
            "start_time": "2026-09-19T07:00:00Z",
            "end_time": "2026-09-19T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kohti tuntematonta -perhepäivä",
                "sv": "Mot det okända familjedagen",
                "en": "Towards the Unknown family day"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Lauantaina vietetään hauskaa perhepäivää Kohti tuntematonta -näyttelyssä.",
                "sv": "På lördag firar vi en trevlig familjedag på utställningen Mot det okända.",
                "en": "On Saturday, we enjoy a fun family day out at the Towards the Unknown exhibition."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6538450085422469D0225E35B1A13E8D/Kohti_tuntematonta_-perhepaiva",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/6538450085422469D0225E35B1A13E8D/Mot_det_okanda_familjedagen",
                "en": "http://www.vuotalo.fi/en/events/event/6538450085422469D0225E35B1A13E8D/Towards_the_Unknown_family_day_"
            },
            "description": {
                "fi": "<p>Lauantaina vietetään hauskaa perhepäivää Kohti tuntematonta -näyttelyssä.</p><p>Kuvittaja <b>Pasi Pitkänen</b> on tavattavissa ja piirtää näyttelytilassa. Tule katsomaan, miten kuvat syntyvät!</p><p>Perheille suunnatuissa työpajoissa päästään tutustumaan kollaasitekniikkaan ja tehdään pinssejä. Satutuokiossa luetaan Pasi Pitkäsen lumoava seikkailukirja <i>Kadonneiden eläinten saari</i>. Näyttelytilaan on koottu laaja valikoima kirjoja, jotka Pitkänen on kuvittanut, ja niitä saa lainata kotiin mukaan.</p><p>Perhepäivän kollaasityöpajassa osallistujat saavat kuvitella ja luoda piirtämällä, leikkaamalla ja repimällä omia outoja otuksia ja taikavoimaisia käärmeitä. Miltä näyttää taikakäärme, jolla on sateenkaaren väriset siivet? Entä voisiko sinun omalla oudolla otuksellasi olla tuntosarvet ja kuori niin kuin etanalla?  Kollaasitekniikalla rakentuvat hassut ja kummalliset otukset voi tehdä aivan itse tai yhdessä oman aikuisen kanssa. Valmiit teokset saa kotiin mukaan.</p><p>Lapsille ja nuorille suunnattu Kohti tuntematonta -näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttely on avoinna 26.9.2026 asti Vuotalon galleriassa.</p>",
                "sv": "<p>På lördag firar vi en trevlig familjedag på utställningen Mot det okända.</p><p>Illustratören <b>Pasi Pitkänen</b> finns på plats och tecknar i utställningslokalen. Kom och se hur bilderna skapas!</p><p>I de familjeinriktade verkstäderna får deltagarna lära sig collageteknik och tillverka pins. Under en sagostund läser vi Pasi Pitkänens fängslande äventyrsbok <i>Kadonneiden eläinten saari</i> (De försvunna djurens ö). I utställningslokalen finns ett stort urval av böcker som Pitkänen har illustrerat, och besökarna kan låna dem med sig hem.</p><p>I familjedagens collageverkstad får deltagarna använda sin fantasi och skapa egna märkliga varelser och magiska ormar genom att rita, klippa och riva. Hur ser en magisk orm med regnbågsfärgade vingar ut? Och skulle din egen märkliga varelse kunna ha känselspröt och ett skal, precis som en snigel? De roliga och märkliga varelserna som skapas med collagetekniken kan du göra helt själv eller tillsammans med en vuxen. De färdiga verken får deltagarna ta med sig hem.</p><p>Utställnings- och evenemangshelheten Mot det okända för barn och unga består av Pasi Pitkänens omfattande illustrationsproduktion. Utställningen är öppen fram till den 26 september 2026 i Nordhusets galleri.</p>",
                "en": "<p>On Saturday, we enjoy a fun family day out at the Towards the Unknown exhibition.</p><p>Illustrator <b>Pasi Pitkänen</b> meets visitors and draws in the exhibition space. Come and see how he creates his pictures!</p><p>In these workshops aimed at families, participants get to learn about the collage technique and make button pins. During story time, we’ll be reading Pasi Pitkänen’s enchanting adventure book <i>Kadonneiden eläinten saari</i> (‘The Island of Lost Animals’). The exhibition space features a wide selection of books illustrated by Pitkänen, which visitors can borrow to take home.</p><p>In the family day collage workshop, participants get to use their imagination and create their own strange creatures and magical snakes by drawing, cutting and tearing. What does a magical snake with rainbow-coloured wings look like? What about your own strange creature – could it have feelers and a shell, like a snail? Children can make these funny and strange creatures, created by using the collage technique, either by themselves or together with their adult. The finished works can be taken home.</p><p>The Kohti tuntematonta (‘Towards the Unknown’) exhibition and event for children and young people is a compilation of Pasi Pitkänen's extensive illustrations. The exhibition will be open until 26 September 2026 in the Vuosaari House gallery.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69394/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69405",
            "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: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:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385162,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T11:13:42.036594Z",
                    "last_modified_time": "2026-06-15T11:13:42.036611Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792296.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385162/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T11:13:41.910301Z",
            "last_modified_time": "2026-07-21T08:15:29.099413Z",
            "date_published": null,
            "start_time": "2026-09-16T14:00:00Z",
            "end_time": "2026-09-16T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Myrskyryhmä: Ellin elokuvahetki",
                "sv": "Myrskyryhmä: Ellin elokuvahetki",
                "en": "Myrskyryhmä: Ellin elokuvahetki"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ellin elokuvahetkessä katsotaan lyhyitä tanssielokuvia ja keskustellaan koetusta.",
                "sv": "Under Ellin elokuvahetki ('Ellis filmstund') tittar vi på korta dansfilmer och diskuterar våra intryck.",
                "en": "At Ellin elokuvahetki ('Elli’s movie moment'), we watch short dance films and discuss our impressions."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA81E543E4BD95A56054B54AB781E43F/Myrskyryhma_Ellin_elokuvahetki",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EA81E543E4BD95A56054B54AB781E43F/Myrskyryhma_Ellin_elokuvahetki",
                "en": "http://www.stoa.fi/en/events/event/EA81E543E4BD95A56054B54AB781E43F/Myrskyryhma_Ellin_elokuvahetki"
            },
            "description": {
                "fi": "<p>Ellin elokuvahetkessä katsotaan lyhyitä tanssielokuvia ja keskustellaan koetusta.</p><p>Ohjelmisto koostuu Myrskyryhmän yhdessä ikäihmisten kanssa valmistamista tanssielokuvista. Yhteisötaiteilija ja tanssipedagogi <b>Elli Isokoski</b> esittelee elokuvat ja ohjaa keskustelua.</p><p>Tervetuloa viihtymään tanssielokuvan pariin!</p><p><b>Ohjelmistosta mm:</p><p>Käy rinnallain (2021)</b><br>Ohjaus: Kati Kallio</p><p>Käy rinnallain kertoo elinikäisestä ystävyydestä, elämän vimmasta ja yksinäisyydestä. Tanssielokuvan tarina kuljettaa katsojaa elämän eri ikäkausiin; lapsuus, nuoruus, ruuhkavuodet ja vanhuus. Niitä sitoo yhteen peilileikki.</p><p><b>Kurkien kutsu (2022)</b><br>Ohjaus: Vilma Tihilä</p><p>Metsässä kulkevat ihmiset kuulevat kurkien kutsun ja sitä seuraten kokoontuvat pellolle.</p><p>Kurkien kutsu on valmistettu yhteistyössä Kanta-Hämeen muistiyhdistyksen Muistijengin kanssa. Työskentelyn lähtökohtana oli Muistijengin kiinnostus luoda jatko-osa Myrskyryhmän elokuvahetkessä näkemäänsä tanssielokuvaan Kurki.<br> <br><b>Oodi iälle (2025)</b><br>Ohjaus: Kati Kallio</p><p>Oodi iälle on tanssielokuva iäkkäistä naisista, jotka saavat tarpeekseen elämän värittömyydestä. Yhteistuumin he riisuvat arkiset kamppeensa ja heittäytyvät ilakoiden ja kurittomina suomalaisen kesän viettoon. Elokuva näyttää, kuinka villi, vapaa ja kaunis on myös vanheneva keho, kuinka turhaa on ryppyjen pelko ja allien kammo. Idea ja käsikirjoitus on syntynyt Idutus-työpajoissa tiiviissä yhteistyössä 75–88-vuotiaiden naisten kanssa.</p><p>***</p><p><b>Myrskyryhmä</b> on vuodesta 2002 toiminut tanssiryhmä. Myrskyryhmä on kehittänyt tanssielokuvan osallistavia menetelmiä tanssielokuvantekijä <b>Kati Kallion</b> ja ikäihmisten kanssa vuodesta 2010. Ryhmän perustaja, tanssitaiteen maisteri <b>Elli Isokoski</b> toimii laaja-alaisesti tanssijana, tuottajana, kouluttajana ja yhteisötaiteilijana. Isokoski arvostaa kohtaamisen hetkiä ja tuo ikäihmiset esille luovina toimijoina.</p><p>Kesto: n. 90 min<br>Paikka: Stoan Teatterisali<br>Hinta: maksuton</p>",
                "sv": "<p>Under Ellin elokuvahetki ('Ellis filmstund') tittar vi på korta dansfilmer och diskuterar våra intryck.</p><p>Programmet består av dansfilmer som Myrskyryhmä har producerat tillsammans med äldre personer. Samhällskonstnären och danspedagogen <b>Elli Isokoski</b> presenterar filmerna och leder diskussionen.</p><p>Välkommen att njuta av dansfilm!</p><p><b>På programmet bland annat: <br> <br>Käy rinnallain (2021)</b> <br>Regi: Kati Kallio <br> <br>Käy rinnallain (Var vid min sida) berättar om livslång vänskap, livsglädje och ensamhet. Handlingen i dansfilmen tar tittaren med på en resa genom livets olika skeden: barndomen, ungdomen, småbarnsåren och ålderdomen. De binds samman av en spegellek.</p><p><b>Kurkien kutsu (2022)</b> <br>Regi: Vilma Tihilä</p><p>Människor som vandrar i skogen hör tranorna kalla och samlas därefter på en åker. <br> <br>Kurkien kutsu (Tranorna kallar) har tagits fram i samarbete med Muistijengi, en minnesförening i Egentliga Tavastland. Utgångspunkten för arbetet var Muistijengis önskan att skapa en uppföljare till dansfilmen Kurki, som de hade sett under Myrskyryhmäs filmstund.</p><p><b>Oodi iälle (2025)</b> <br>Regi: Kati Kallio</p><p>Oodi iälle (En hyllning till åldern) är en dansfilm om äldre kvinnor som tröttnat på livets monotonitet. Tillsammans tar de av sig sina vardagskläder och kastar sig glatt och obekymrat in i den finska sommaren. Filmen visar hur vild, fri och vacker också en åldrande kropp kan vara, och hur meningslöst det är att vara rädd för rynkor och gäddhäng. Idén och manuset har tagit form under Idutus-verkstäder i nära samarbete med kvinnor i åldern 75–88 år.</p><p>***</p><p><b>Myrskyryhmä</b> är en dansgrupp som varit verksam sedan 2002. Myrskyryhmä har sedan 2010 utvecklat inkluderande metoder för dansfilm tillsammans med dansfilmskaparen <b>Kati Kallio</b> och äldre personer. Gruppens grundare, Elli Isokoski, som har en magisterexamen i danskonst, är verksam inom många olika områden som dansare, producent, utbildare och samhällskonstnär. Isokoski värdesätter stunder av möten och lyfter fram äldre som kreativa aktörer.</p>",
                "en": "<p>At Ellin elokuvahetki ('Elli’s movie moment'), we watch short dance films and discuss our impressions.</p><p>The programme consists of dance films produced by the Myrskyryhmä dance group in collaboration with seniors. Community artist and dance educator <b>Elli Isokoski</b> presents the films and leads the discussion.</p><p>Join us for a dance film!</p><p><b>Featuring films such as: <br> <br>Käy rinnallain (2021)</b> <br>Directed by Kati Kallio <br> <br>Käy rinnallain (‘Stay by Me’), is a story of a friendship lasting a lifetime, the frenzy of living, and loneliness. The story of this dance film takes the viewer through the different stages of life: childhood, youth, the years of raising a family and old age. What binds them together is a mirror game.</p><p><b>Kurkien kutsu (2022)</b> <br>Directed by Vilma Tihilä</p><p>People walking through the woods hear the call of cranes and, drawn by it, gather in a field.</p><p>Kurkien kutsu (‘The Call of the Cranes’) was produced in collaboration with Muistijengi, the memory association of Kanta-Häme. The starting point for the project was Muistijengi’s interest in creating a sequel to the dance film Kurki, which they had seen during a Myrskyryhmä film screening.</p><p><b>Oodi iälle (2025)</b> <br>Directed by Kati Kallio <br> <br>Oodi iälle (‘Ode to Age’) is a dance film about elderly women who have had enough of the colourlessness of life. Together, they shed their everyday clothes and throw themselves, carefree and unrestrained, into the Finnish summer. The film shows how wild, free and beautiful even an ageing body is, and how pointless it is to fear wrinkles and dread bingo wings. The idea and script were developed during Idutus workshops in close collaboration with women aged between 75 and 88.</p><p>***</p><p><b>Myrskyryhmä</b> is a dance group that has been active since 2002. Since 2010, Myrskyryhmä has been developing participatory methods for dance films in collaboration with dance filmmaker <b>Kati Kallio</b> and seniors. The group’s founder, Elli Isokoski, holds a master’s degree in dance and is active in a wide range of roles as a dancer, producer, educator and community artist. Isokoski values moments of connection and highlights seniors as creative contributors.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69405/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69388",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jarkko-toivonen-brazilian-trip-vuotalo-21780089/",
                        "sv": "https://www.lippu.fi/event/jarkko-toivonen-brazilian-trip-vuotalo-21780089/",
                        "en": "https://www.lippu.fi/event/jarkko-toivonen-brazilian-trip-vuotalo-21780089/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 €",
                        "sv": "24,80 €",
                        "en": "24,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385131,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-15T09:18:13.607255Z",
                    "last_modified_time": "2026-06-15T09:18:13.607275Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794037.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385131/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-15T09:18:13.497941Z",
            "last_modified_time": "2026-07-21T08:15:27.486048Z",
            "date_published": null,
            "start_time": "2026-09-12T15:00:00Z",
            "end_time": "2026-09-12T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Jarkko Toivonen: Brazilian Trip",
                "sv": "Jarkko Toivonen: Brazilian Trip",
                "en": "Jarkko Toivonen: Brazilian Trip"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Ensi vuonna 40-vuotistaiteilijajuhlaansa viettävä Bossa Nova -kitaristi Jarkko Toivonen konsertoi pitkäaikaisten soittokumppaniensa kanssa.",
                "sv": "Bossa nova-gitarristen Jarkko Toivonen, som nästa år firar sitt 40-årsjubileum som konstnär, ger en konsert tillsammans med sina långvariga musikerkollegor.",
                "en": "Bossa nova guitarist Jarkko Toivonen, who will be celebrating his 40th anniversary as an artist next year, takes to the stage with his long-standing bandmates."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip_",
                "en": "http://www.vuotalo.fi/en/events/event/C294687F545882ED1EB9B2E85FE826A7/Jarkko_Toivonen_Brazilian_Trip_"
            },
            "description": {
                "fi": "<p>Ensi vuonna 40-vuotistaiteilijajuhlaansa viettävä Bossa Nova -kitaristi Jarkko Toivonen konsertoi pitkäaikaisten soittokumppaniensa kanssa.</p><p>Konsertissa Toivosen kanssa esiintyvät perkussionisti Mongo Aaltonen ja basisti Tuure Koski. Materiaalia kuullaan aina Toivosen ensimmäisestä albumista <i>Sambolero</i> (1987) viimeisimpään, viime vuonna ilmestyneeseen albumiin <i>View to Serenity</i> saakka. Kaikkiaan albumeita on ilmestynyt 13.</p><p>Useiden legendaaristen brasilialaistaiteilijoiden, kuten kitaristi Sebastiao Tapajosin, huilisti-laulaja Danilo Caymmin, perkussionisti Marcelo Salazarin ja laulaja Ithamara Kooraxin kanssa konsertoinut Toivonen soittaa konsertissa bossa novan ja samban lisäksi bolero-, choro- ja baiao-tyylejä.</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p><p>Konsertin kesto: n. 2 t, sisältäen väliajan<br>Liput: 24,80 € osoitteesta lippu.fi</p>",
                "sv": "<p>Bossa nova-gitarristen Jarkko Toivonen, som nästa år firar sitt 40-årsjubileum som konstnär, ger en konsert tillsammans med sina långvariga musikerkollegor.</p><p>På konserten uppträder percussionisten Mongo Aaltonen och basisten Tuure Koski tillsammans med Toivonen. Publiken får höra material från Toivonens första album <i>Sambolero</i> (1987) ända fram till det senaste albumet <i>View to Serenity</i>, som släpptes förra året. Totalt har 13 album givits ut.</p><p>På konserten spelar Toivonen, som har uppträtt tillsammans med flera legendariska brasilianska artister, såsom gitarristen Sebastiao Tapajos, flöjtisten och sångaren Danilo Caymmi, percussionisten Marcelo Salazar och sångaren Ithamara Koorax, förutom bossa nova och samba också bolero, choro och baiao.</p><p>Klubbkväll, A-rättigheter. Café Pokkari står för serveringen. Dörrarna öppnas kl. 17.30. Barn under 18 år tillsammans med en vårdnadshavare.</p><p>Konsertens längd: ca 2 h, inklusive paus</p>",
                "en": "<p>Bossa nova guitarist Jarkko Toivonen, who will be celebrating his 40th anniversary as an artist next year, takes to the stage with his long-standing bandmates.</p><p>Performing alongside Toivonen at the concert are percussionist Mongo Aaltonen and bassist Tuure Koski. The songs featured on the setlist range from Toivonen’s first album, <i>Sambolero</i> (1987), all the way to his latest album, <i>View to Serenity</i>, released last year. All in all, Toivonen has released 13 albums.</p><p>Having performed with several legendary Brazilian artists, such as guitarist Sebastiao Tapajos, flautist and singer Danilo Caymmi, percussionist Marcelo Salazar and singer Ithamara Koorax, Toivonen is set to play not only bossa nova and samba but also bolero, choro and baiao styles at this concert.</p><p>Club night, fully licensed bar. Refreshments are served by Café Pokkari. The doors open at 17.30. Persons under the age of 18 must be accompanied by their guardian.</p><p>Concert duration: roughly 2 h, incl. intermission</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69388/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69387",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-atomirotta-vuotalo-21841834/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-atomirotta-vuotalo-21841834/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-atomirotta-vuotalo-21841834/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 / 17 €",
                        "sv": "22 / 17 €",
                        "en": "22 / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385178,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:08.209480Z",
                    "last_modified_time": "2026-06-16T09:14:08.209495Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794036.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385178/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-16T09:14:08.081138Z",
            "last_modified_time": "2026-07-21T08:15:26.857265Z",
            "date_published": null,
            "start_time": "2026-09-11T15:00:00Z",
            "end_time": "2026-09-11T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Atomirotta",
                "sv": "Atomirotta",
                "en": "Atomirotta"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!",
                "sv": "Atomirotta har etablerat sig som ett av landets hårdaste och mest kompromisslösa liveband!",
                "en": "Atomirotta has cemented its reputation as one of the country’s best and most uncompromising live bands!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/682A744B172444F2392DD5A74BDB5FE0/Atomirotta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/682A744B172444F2392DD5A74BDB5FE0/Atomirotta",
                "en": "http://www.vuotalo.fi/en/events/event/682A744B172444F2392DD5A74BDB5FE0/Atomirotta"
            },
            "description": {
                "fi": "<p>Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!</p><p><i>”Aivan mahtavaa jälleen startata Vuotalolta meidän perinteinen Lähiö-rundimme ja tietysti myös toimia legendaarisen venuen syyskauden itseoikeutettuna avaajana!”</i></p><p><i>”Ja nämähän ovat aina todella upeita ja uniikkeja vetoja, koska perheen pienimmätkin pääsevät mukaan joraamaan! Hyvän mielen paikka numero yksi!”</i>, yhtye iloitsee.</p><p>Ystävänpäivänä 2014 perustettu Atomirotta on alusta asti seurannut vanhaa hienoa viisautta: tekemällä oppii! Yhtye on pitänyt aina langat täysin omissa käsissään ja vaalinut tiukasti hienoa DIY-perinnettä. Viisi albumia, lukuisia kulta- ja platinasinkkuja, oma levy-yhtiö, ohjelmatoimisto ja verkkokauppa sekä satoja räjäyttäviä keikkoja ennakkoluulottomasti kuumilta lähiöklubeilta aina suurimmille festarilavoille, joilla Atomirotalle on sementoitu maine yhtenä maamme kovimmista ja tinkimättömimmistä live-bändeistä!</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p><p>Kesto: 75 min (ei väliaikaa)<br>Liput: 22 / 17 €</p>",
                "sv": "<p>Atomirotta har etablerat sig som ett av landets hårdaste och mest kompromisslösa liveband!</p><p><i>”Det är helt fantastiskt att återigen få starta vår traditionella förortsturné på Nordhuset och naturligtvis också att få vara den berättigade öppnaren av den legendariska evenemangsplatsens höstsäsong!</i></p><p><i>Och de här är alltid riktigt bra och unika evenemang, eftersom också familjens yngsta kan vara med! Den främsta platsen för gott humör!”</i>, säger bandet glatt.</p><p>Atomirotta grundades på alla hjärtans dag 2014 och har allt sedan starten följt ett gammalt ordspråk: övning ger färdighet! Bandet har alltid hållit tyglarna helt i sina egna händer och alltid strikt upprätthållit en fin DIY-tradition. Fem album, många guld- och platinasinglar, eget skivbolag, artistförmedling och webbutik, och hundratals explosiva och fördomsfria spelningar, på allt från heta förortsklubbar till de största festivalscenerna, har cementerat Atomirottas rykte som ett av de tuffaste och mest kompromisslösa livebanden i landet!</p><p>Klubbkväll, A-rättigheter. Café Pokkari står för serveringen. Dörrarna öppnas kl. 17.30. Barn under 18 år tillsammans med en vårdnadshavare.</p><p>Längd: 75 min. (ingen paus)</p>",
                "en": "<p>Atomirotta has cemented its reputation as one of the country’s best and most uncompromising live bands!</p><p><i>“It is absolutely great to once again start our traditional Lähiö tour at Vuosaari House and, of course, to also be the self-appointed kickstarter of the autumn season of this legendary venue!</i></p><p><i>And these are always really great and unique gigs, because even the youngest members of the family can join the fun! The number one feelgood place!”</i> the band enthuses.</p><p>Founded on Valentine’s Day 2014, Atomirotta has always followed a great old adage: you learn by doing! The band has always kept the reins completely in their own hands and has always strictly maintained a fine DIY tradition. Five albums, numerous gold and platinum singles, the band’s own record label, promotion agency and online store, and hundreds of explosive gigs with no prejudice from hot suburban clubs to the biggest festival stages, cementing Atomirotta’s reputation as one of the best and most uncompromising live bands in the country!</p><p>Club night, fully licensed bar. Refreshments are served by Café Pokkari. The doors open at 17.30. Persons under the age of 18 must be accompanied by their guardian.</p><p>Duration: 75 min (no intermission)</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69387/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-balalaikkaorkesteri-rakkaus-jaa-vuotalo-21534688/",
                        "sv": "https://www.lippu.fi/event/helsingin-balalaikkaorkesteri-rakkaus-jaa-vuotalo-21534688/",
                        "en": "https://www.lippu.fi/event/helsingin-balalaikkaorkesteri-rakkaus-jaa-vuotalo-21534688/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385177,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-16T09:14:07.314697Z",
                    "last_modified_time": "2026-06-16T09:14:07.314714Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794035.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385177/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-16T09:14:07.172183Z",
            "last_modified_time": "2026-07-21T08:15:25.932671Z",
            "date_published": null,
            "start_time": "2026-09-09T15:00:00Z",
            "end_time": "2026-09-09T17:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsingin Balalaikkaorkesteri: Rakkaus jää – Klubi-ilta",
                "sv": "Helsingfors Balalajkaorkester: Rakkaus jää – Kärleken består",
                "en": "Helsinki Balalaika Orchestra: Rakkaus jää – Love Remains"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Kesäisessä konsertissa kuullaan Helsingin Balalaikkaorkesterin perinteisiä ja yleisön rakastamia kappaleita sekä pianisti-säveltäjä Sergei Sokolovin teoksia.",
                "sv": "Under denna sommarkonsert får publiken höra Helsingfors Balalajkaorkester framföra traditionella stycken och publikfavoriter samt verk av pianisten och kompositören Sergei Sokolov.",
                "en": "This summer concert features traditional pieces by Helsinki Balalaika Orchestra – much loved by audiences – as well as works by pianist and composer Sergei Sokolov."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0DDA7760287891149D593C9CFBFA42BA/Helsingin_Balalaikkaorkesteri_Rakkaus_jaa_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/0DDA7760287891149D593C9CFBFA42BA/Helsingfors_Balalajkaorkester_Rakkaus_jaa_Karleken_bestar_",
                "en": "http://www.vuotalo.fi/en/events/event/0DDA7760287891149D593C9CFBFA42BA/Helsinki_Balalaika_Orchestra_Rakkaus_jaa_Love_Remains_"
            },
            "description": {
                "fi": "<p>Kesäisessä konsertissa kuullaan Helsingin Balalaikkaorkesterin perinteisiä ja yleisön rakastamia kappaleita sekä pianisti-säveltäjä Sergei Sokolovin teoksia.</p><p><b>Pentti Yrjänäinen</b> on tehnyt sovitukset balalaikkaorkesterille Sokolovin sävellyksiin, joissa on vaikutteita klassisesta musiikista, kansanmusiikista, bossa novasta ja jazzista.</p><p>Orkesterin omat laulusolistit <b>Heli Jormanainen</b> ja <b>Slava Druzhinin</b> tulkitsevat tunteikkaasti sekä ikivihreitä lauluja että uusia Sergein sävellyksiä. Lisäksi esiintyvät orkesterin instrumenttisolistit Pentti Yrjänäinen (domra) ja <b>Mihail Vasiljev</b> (haitari). Orkesteria johtaa <b>Gennadi Klykov</b>.</p><p>Konsertin kesto: 2 t 15 min, sisältäen väliajan<br>Liput: 20 / 15 € osoitteesta lippu.fi</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Alle 18-vuotiaat huoltajan seurassa.</p>",
                "sv": "<p>Under denna sommarkonsert får publiken höra Helsingfors Balalajkaorkester framföra traditionella stycken och publikfavoriter samt verk av pianisten och kompositören Sergei Sokolov.</p><p><b>Pentti Yrjänäinen</b> har gjort arrangemangen för balalajkaorkestern av Sokolovs kompositioner, som präglas av influenser från klassisk musik, folkmusik, bossa nova och jazz.</p><p>Orkesterns egna sångsolister <b>Heli Jormanainen</b> och <b>Slava Druzhinin</b> framför både tidlösa klassiker och nya kompositioner av Sergei på ett känslosamt sätt. Dessutom medverkar orkesterns solister Pentti Yrjänäinen (domra) och <b>Mihail Vasiljev</b> (dragspel). Orkestern leds av <b>Gennadi Klykov</b>.</p><p>Konsertens längd: 2 h 15 min., inklusive paus</p><p>Biljetter: 20/15 €, på lippu.fi</p><p>Klubbkväll, A-rättigheter. Café Pokkari står för serveringen. Dörrarna öppnas kl. 17.30. Barn under 18 år tillsammans med en vårdnadshavare.</p>",
                "en": "<p>This summer concert features traditional pieces by Helsinki Balalaika Orchestra – much loved by audiences – as well as works by pianist and composer Sergei Sokolov.</p><p><b>Pentti Yrjänäinen</b> has arranged Sokolov’s compositions for a balalaika orchestra; these pieces draw on influences from classical music, folk music, bossa nova and jazz.</p><p>The orchestra’s own vocal soloists, <b>Heli Jormanainen</b> and <b>Slava Druzhinin</b>, give emotive performances of both timeless classics and new compositions by Sergei. The performance also features the orchestra’s instrumental soloists, Pentti Yrjänäinen (domra) and <b>Mikhail Vasilyev</b> (accordion). The orchestra is led by <b>Gennadi Klykov</b>.</p><p>Duration of the concert: 2 h 15 min, incl. intermission</p><p>Tickets: €20/15 at lippu.fi</p><p>Club night, fully licensed bar. Refreshments are served by Café Pokkari. The doors open at 17.30. Persons under the age of 18 must be accompanied by their guardian.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}