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

{
    "meta": {
        "count": 27757,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=3",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true"
    },
    "data": [
        {
            "id": "kulke:68317",
            "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: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": 1712487,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T13:13:52.432997Z",
                    "last_modified_time": "2026-03-23T13:13:52.433013Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787237.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1712487/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T13:13:52.282960Z",
            "last_modified_time": "2026-03-30T12:13:29.771598Z",
            "date_published": null,
            "start_time": "2026-04-25T07:00:00Z",
            "end_time": "2026-04-25T10:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36F486508E86675E1D6A70D84F1FCE0D/Mainiot_materiaalit_-tyopaja"
            },
            "description": {
                "fi": "<p>Tässä työpajassa roskat muuttuvat uuden materiaalin raaka-aineiksi, kun hedelmän kuorista tehdään muovailtavaa askartelumassaa. <br>Tiesitkö, että levästä voi tehdä hattuja, sahanpurusta purkkeja tai kananmunankuorista keramiikkaa? Tule tekemään hauskoja materiaalikokeiluja biopohjaisista aineista! <br>Materiaalitutkimus on tärkeää, jotta rajalliset luonnonvaramme riittäisivät kaikille nyt ja tulevaisuudessa. Työpajassa käytetään biopohjaisia ainesosia, joita saadaan luonnosta, keittiöstä ja kierrätysastiasta. Työpaja perustuu Mainiot materiaalit -kirjaan ja sen ohjaa Aalto-yliopiston Bioinnovaatiokeskus.</p><p>Työpaja soveltuu kaikenikäisille</p><p>Työpaja on non-stop</p>"
            },
            "name": {
                "fi": "Mainiot materiaalit -työpaja – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68317/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68256",
            "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": 1660944,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-18T07:14:28.381900Z",
                    "last_modified_time": "2026-03-18T07:14:28.381917Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786501.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1660944/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-18T07:14:28.203809Z",
            "last_modified_time": "2026-03-30T12:13:28.454039Z",
            "date_published": null,
            "start_time": "2026-04-21T13:00:00Z",
            "end_time": "2026-04-21T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat",
                "en": "http://www.vuotalo.fi/en/events/event/16C67F9E5022E7B648317EEDFF45912E/Linnunponttopajat"
            },
            "description": {
                "fi": "<p>Kevät on täällä! Pikkulinnut etsivät jo kuumeisesti sopivia pesäpaikkoja.</p><p>Tule auttamaan lintuja ja rakentamaan linnunpönttö oman lapsen tai nuoren, kaverin kersan tai vaikka lapsenlapsen kanssa!</p><p>Pöntön saa valmiiksi ja mukaan heti pajan jälkeen, joten voitte jo etukäteen miettiä sille sopivaa paikkaa.</p><p>Yhteen pajaan mahtuu mukaan seitsemän aikuinen + lapsi (tai lapset) -paria. Saat tarvittavat materiaalit työpajassa. Ilmoittautuminen ja lisätiedustelut: salla.fornaro@hel.fi tai 0405371520.</p><p>Työpaja on osa Vuotalon Ympäristöviikon ohjelmaa. Paja toteutetaan yhteistyössä Helsingin Työväenopiston kanssa, opettajana toimii Sami Paakkanen.</p><p>Kohderyhmä: lapsiperheet, lapset ja isovanhemmat</p><p>Kieli: suomi</p><p>Paikka: Vuotalon K-kerroksen puupaja</p>"
            },
            "name": {
                "fi": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "sv": "Linnunpönttöpajat – Vuotalon Ekoviikko",
                "en": "Linnunpönttöpajat – Vuotalon Ekoviikko"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68256/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67268",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494423,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T09:12:59.604498Z",
                    "last_modified_time": "2026-01-09T09:12:59.604512Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780794.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494423/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T09:12:59.426644Z",
            "last_modified_time": "2026-03-30T09:13:50.808483Z",
            "date_published": null,
            "start_time": "2026-03-30T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.",
                "sv": "Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.",
                "en": "The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_",
                "en": "http://www.kanneltalo.fi/en/events/event/3624D41CAB861F0B2E83F5D16655DDC7/Kino_Kuutamo_Barbie_13_"
            },
            "description": {
                "fi": "<p>Kevätkauden Kino Kuutamoissa nähdään yleisön ehdotuksista valitut kolme elokuvaa.</p><p>Sarjan toisena osana nähdään Greta Gerwigin ohjaama Barbie-elokuva vuodelta 2023. Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p>Barbie<br>Elämä Barbiemaassa on täydellistä. Paitsi jos sinulla on eksistentiaalinen kriisi. Tai jos olet Ken.<br>Barbie on vuonna 2023 ensi-iltansa saanut yhdysvaltalainen satiirinen fantasia-ja komediaelokuva, jonka on ohjannut Greta Gerwig.</p><p>Se on ensimmäinen Barbie-nukkeen perustuva näytelty elokuva. Elokuvassa Barbie (Margot Robbie) ja Ken (Ryan Gosling) kohtaavat eksistentiaalisen kriisin, joka saa heidät kyseenalaistamaan itsensä ja maailmansa.</p><p>”Valtavasti hehkutettu Barbie-elokuva vastaa suuriin odotuksiin ja jopa yllättää.”</p><p>HS Leena Virtanen ★★★★</p><p>Kesto: 1 t 54 min<br>Ikäraja: K13. 12-18-vuotiaille varataan 20 paikkaa Pulssitoiminnan kautta. Muuten kuin Pulssitoiminnan kautta tulevat alle 18-vuotiaat elokuvaan vain huoltajan seurassa. Tulethan ajoissa, näytös alkaa täsmällisesti eikä myöhästyneitä oteta saliin näytännön aikana. Ei leffaherkkuja saliin.<br>Ohjaaja: Greta Gerwig<br>Pääosissa: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Ensi-ilta: 21.7.2023</p><p>Vapaa pääsy.</p>",
                "sv": "<p>Under vårsäsongen på Kino Kuutamo visas tre filmer som valts ut bland publikens nomineringar.</p><p>Den andra delen av serien blir Barbie-filmen från 2023, i regi av Greta Gerwig. FD Harri Kilpi, expert på filmhistoria, ger en inledning till filmen kl. 17–17.45. Gratisvisningen av filmen börjar kl. 18.</p><p>Barbie<br>Livet i Barbieland är perfekt. Såvida du inte har en existentiell kris. Eller om du är Ken.<br>Barbie är en amerikansk satirisk fantasy- och komedifilm som hade premiär 2023 och är regisserad av Greta Gerwig.</p><p>Den är den första spelfilmen som baserar sig på Barbiedockan. I filmen ställs <br>Barbie (Margot Robbie) och Ken (Ryan Gosling) inför en existentiell kris, som får dem att ifrågasätta sig själva och världen.</p><p>”Den enormt hypade Barbie-filmen lever upp till de höga förväntningarna och överraskar till och med.”</p><p>HS Leena Virtanen ★★★★</p><p>Längd: 1 h 54 min.<br>Åldersgräns: 13 år<br>Regi: Greta Gerwig<br>I huvudrollerna: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiär: 21.7.2023</p><p>Fritt inträde</p>",
                "en": "<p>The spring season at Kino Kuutamo will feature three films selected from suggestions submitted by the public.</p><p>The second part of the series will be Barbie from 2023, directed by Greta Gerwig. Film historian Harri Kilpi, PhD, will introduce the evening's film from 17.00 to 17.45. The free screening will begin at 18.00.</p><p>Barbie<br>Life in Barbieland is perfect. Unless you have an existential crisis. Or if you are Ken.<br>Barbie, premiered in 2023, is an American satirical fantasy and comedy film, directed by Greta Gerwig.</p><p>It is the first live-action film based on the Barbie doll. In the film Barbie (Margot Robbie) and Ken (Ryan Gosling) encounter an existential crisis that causes them to question themselves and their world.</p><p>\"The hugely hyped Barbie film lives up to high expectations and even surprises.\"</p><p>HS Leena Virtanen ★★★★</p><p>Duration: 1 hour 54 min<br>Age limit: 13 and older<br>Director: Greta Gerwig<br>Leads: Margot Robbie, Ryan Gosling, America Ferrera, Kate McKinnon, Michael Cera, Ariana Greenblatt, Issa Rae, Will Ferrell, Helen Mirren<br>Premiere: 21 July 2023</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Kino Kuutamo: Barbie (13) – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Barbie (13) – Avgiftsfria måndagar",
                "en": "Kino Kuutamo: Barbie (13) – Free Mondays"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67268/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67815",
            "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:351/?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:p2625/?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": 1710077,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:05.181126Z",
                    "last_modified_time": "2026-03-23T07:13:05.181140Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782928.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710077/?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-03-23T07:13:05.074298Z",
            "last_modified_time": "2026-03-30T07:13:21.298281Z",
            "date_published": null,
            "start_time": "2026-05-28T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/F46C54BFCC85A9E6781E77E5CB36112B/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67815/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67814",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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": 1710076,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:04.816624Z",
                    "last_modified_time": "2026-03-23T07:13:04.816639Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782927.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710076/?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-03-23T07:13:04.684671Z",
            "last_modified_time": "2026-03-30T07:13:21.124224Z",
            "date_published": null,
            "start_time": "2026-05-28T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut",
                "en": "http://www.stoa.fi/en/events/event/EA6E041ED1B7F131C30E9778FBBFF007/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67814/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67813",
            "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:351/?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:p2625/?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": 1710074,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:03.162794Z",
                    "last_modified_time": "2026-03-23T07:13:03.162809Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782925.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710074/?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-03-23T07:13:03.049479Z",
            "last_modified_time": "2026-03-30T07:13:20.004794Z",
            "date_published": null,
            "start_time": "2026-05-21T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/26858B40DDEB500EEC406CF896627905/Jussin_metsasadut_"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.    <br>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran. Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.  <br>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi      <br>Vapaa pääsy  <br>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch 13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen. Den pålitliga utflyktsgitarren följer med.</p><p>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt.</p><p>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar<br>Längd: ca 45 min.<br>Språk: finska</p><p>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk. <br>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67813/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67812",
            "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:351/?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:p2625/?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": 1710073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T07:13:02.752322Z",
                    "last_modified_time": "2026-03-23T07:13:02.752340Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782924.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710073/?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-03-23T07:13:02.629024Z",
            "last_modified_time": "2026-03-30T07:13:19.788191Z",
            "date_published": null,
            "start_time": "2026-05-21T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.",
                "sv": "Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.",
                "en": "Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut_",
                "en": "http://www.stoa.fi/en/events/event/A804EED9EEBFBD27EC109A90553D81BF/Jussin_metsasadut"
            },
            "description": {
                "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana.</p><p>Mukana kulkee uskollinen retkikitara. <br>Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Myös perheet ovat tuokioihin tervetulleita!<br>  <br>Paikkana on Karhukallion metsä Roihupellossa. Tapaamispaikka Viilarintien ja Holkkitien risteyksessä. Raidejokerin pysäkki (linja 15): Kauppamyllyntie.</p><p>Ikäsuositus: 3–7-vuotiaat      <br>Kesto: n. 45 min  <br>Kieli: suomi</p><p>Vapaa pääsy</p><p>Päiväkotiryhmille pakolliset ennakkoilmoittautumiset: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch<br>13.1. klo 10 alkaen</p>",
                "sv": "<p>Tillsammans med Jussi Ollila hittar vi de mest spännande sagorna och de mest magiska berättelserna i skogen.</p><p>Berättelserna föds ur barnens idéer genom improvisation och inspireras av livet i skogen.</p><p>Den pålitliga utflyktsgitarren följer med.<br>Ifall det blir stormigt väder flyttas sagostunden till en senare tidpunkt. <br>Lämplig för barn över 3 år, eller barn som kan gå en kort sträcka i skogen.</p><p>Platsen är Björnklippans skog i Kasåkern. Mötesplats i korsningen mellan Filarvägen och Holkvägen. Spårjokerns hållplats: (linje 15): Handelskvarnsvägen.</p><p>Åldersrekommendation: 3–7-åringar</p><p>Längd: ca 45 min.<br>Språk: finska     <br>Fritt inträde</p><p>Avsedd för daghemsgrupper och familjer.</p><p>Obligatorisk förhandsanmälan för grupper: https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch från 13.1 kl. 10.00</p>",
                "en": "<p>Jussi Ollila takes you on a trip to the forest to find the most exciting fairy tales and the most magical stories.</p><p>Stories are born from the children's minds, inspired by improvisation and the forest life they find. The ever-loyal travelling guitar is, naturally, there too.</p><p>In case of inclement weather, the fairy tales will be postponed to a later date.</p><p>Suitable for children over 3 years of age, or for children who can walk the length of a small forest walk.</p><p>The location is the Karhukallio forest in Roihupelto. The group meets at the intersection of Viilarintie and Holkkitie. Tram stop (line 15): Kauppamyllyntie.</p><p>Age recommendation: Ages 3–7<br>Duration: approx. 45 min<br>Language: Finnish</p><p>Free of charge</p><p>Intended for day-care groups and families.</p><p>Pre-registration for groups required at https://kultus.hel.fi/fi/event/kultus:agny4kuete?text=jussin+mets%C3%A4sadut&returnPath=%2Fsearch from 13 January at 10 am</p>"
            },
            "name": {
                "fi": "Jussin metsäsadut – Tarinallinen saturetki Karhukallion metsässä",
                "sv": "Jussin metsäsadut – En sagoutflykt i Björnklippans skog",
                "en": "Jussin metsäsadut – Storytelling tour in Karhukallio forest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67812/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68285",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1710479,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T08:13:17.421680Z",
                    "last_modified_time": "2026-03-23T08:13:17.421695Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786383.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1710479/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T08:13:17.199846Z",
            "last_modified_time": "2026-03-30T06:14:07.890880Z",
            "date_published": null,
            "start_time": "2026-06-02",
            "end_time": "2026-08-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit",
                "en": "http://www.malmitalo.fi/en/events/event/93BA4D6E613749A36B00797EBBC1C3B7/Kaupunkitanssit"
            },
            "description": {
                "fi": "<p>Tervetuloa tanssimaan Malmille kesätiistaisin kello 16–16.45!</p><p>Kaupunkitanssit tarjoaa maksutonta paritanssiopetusta kesäaikaan eri puolilla pääkaupunkiseutua.</p><p>Kaupunkitanssit sopivat niin aloittelijoille kuin kokeneimmillekin tanssijoille, opetus mukautetaan aina osallistujien taitotasoon. Tanssimaan voi tulla yksin tai parin kanssa, eikä ennakkoilmoittautumista tarvita.</p><p>Opetuksesta vastaavat koulutetut tanssinopettajat. Sadesäällä tanssitaan Malmitalon aulassa. Kaupunkitanssit järjestää Tanssiteatteri Tsuumi yhteistyössä Malmitalon kanssa.</p><p>\"Kaupunkitanssien kaltaiset matalan kynnyksen tapahtumat tuovat tanssin ilon kaikkien ulottuville!\"</p><p><b>OPETUSOHJELMA</b><br>Ti 2.6. klo 16–16.45<br>Ti 9.6. klo 16–16.45 <br>Ti 16.6. klo 16–16.45<br>Ti 23.6. klo 16–16.45 <br>Ti 30.6. klo 16–16.45 <br>Ti 7.7. klo 16–16.45 <br>Ti 14.7. klo 16–16.45 <br>Ti 21.7. klo 16–16.45 <br>Ti 28.7. klo 16–16.45 <br>Ti 4.8. klo 16–16.45 <br>Ti 11.8. klo 16–16.45 <br>Ti 18.8. klo 16–16.45 <br>Ti 25.8. klo 16–16.45</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Kaupunkitanssit – Malmin tapahtumakesä 2026",
                "sv": "Kaupunkitanssit",
                "en": "Kaupunkitanssit"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68285/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68335",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "sv": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/",
                        "en": "https://www.lippu.fi/sv/artist/helsingin-kulttuurikeskus-vuotalo/klubb-ankdamm-jukka-gustavson-meets-ben-granfelt-3712789/"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1748665,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-27T07:13:56.979376Z",
                    "last_modified_time": "2026-03-27T07:13:56.979392Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787736.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1748665/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T07:13:56.859274Z",
            "last_modified_time": "2026-03-27T07:13:57.113540Z",
            "date_published": null,
            "start_time": "2026-05-20T15:00:00Z",
            "end_time": "2026-05-20T16:40:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_",
                "en": "http://www.vuotalo.fi/en/events/event/35234A4ADC77831A7C43D9A2C05D958F/The_Dance_Club_12_"
            },
            "description": {
                "fi": "<p>Miksi niin monet voivat huonosti, vaikka meillä voisi olla niin hyvin? Psykiatrisella vastaanotolla Carella voitto asetetaan hyvinvoinnin edelle, ja mitä enemmän diagnooseja, sitä suurempi tuotto.</p><p>Psykologian opiskelija Johannes ei sovi lainkaan harjoittelupaikkaansa Careen, mutta pian hän tapaa potilaat: Rosen, jolla on intiimialueeseen liittyviä ongelmia, kiinteistönvälittäjä Markuksen, joka itkee esittelyissä, Emilyn, jota tutkitaan ADHD:n varalta, sekä performanssitaiteilija Rakelin, joka vastaa henkilökohtaisiin vääryyksiin tanssin avulla. Yhdessä he muodostavat oudon ryhmän – The Dance Clubin – jossa he tutkivat, löytyisikö diagnoosien ja lääkkeiden lisäksi muitakin keinoja lievittää pinnan alla kuplivaa kipua.</p><p>Käsikirjoituksesta ja ohjauksesta vastaa Lisa Langseth. Rooleissa nähdään Alva Bratt, Nils Wetterholm, Evelyn Mok, Matias Varela, Julia Franzén sekä Pernilla August.</p><p>GENRE Komedia<br>KOHDEYRHMÄ ruotsinkielisen aikuiset, K-12<br>PAIKKA Vuosali<br>KIELI ruotsi, ei tekstitystä</p>",
                "sv": "<p>Varför mår så många dåligt när vi kan ha det så bra? På psykiatrimottagningen Care prioriteras vinst över välmående och flest diagnoser ger störst utdelning. Psykologistudenten Johannes passar inte alls in på sin praktikplats Care, men snart träffar han patienterna Rose som har problem med snippan, mäklaren Markus som gråter på visningar, Emily som utreds för ADHD och så performancekonstnären Rakel som slår tillbaka mot personliga orättvisor med dans. Tillsammans bildar de en udda grupp - The Dance Club, där de utforskar om det finns andra botemedel än diagnoser och tabletter för att lindra smärtan som bubblar under ytan.</p><p>Lisa Langseth står för manus och regi. I rollerna ser vi Alva Bratt, Nils Wetterholm, Evelyn Mok, Matias Varela, Julia Franzén samt Pernilla August.</p><p>\"en snärtig och träffsäker kritik mot vår absurda samtid\" SDS<br> \"Det finns ingenting subtilt med filmen (...) Samtidigt vilar det ett slags klarsynt renhet över den\" SvD<br> \"en riktigt ojämn film, men långtråkig är den inte\" SVT</p><p>GENRE Komedi<br>MÅLGRUPP Svenskspråkiga vuxna, åldersgräns F12<br>PLATS Nordsalen<br>SPRÅK Svenska, ingen textning</p>",
                "en": "<p>When the eccentric psychology student Johannes meets the charismatic performance artist Rakel, a radical idea is born. Together, they start a secret club where the members—his own patients—are encouraged to confront those who have caused them pain. But as the club grows and the methods become increasingly extreme, things get complicated when Johannes inconveniently falls head over heels for Rakel.</p><p>GENRE Comedy<br>TARGET GROUP Swedish-speaking adults<br>LOCATION Nordsalen<br>LANGUAGE Swedish, no subtitles</p>"
            },
            "name": {
                "fi": "The Dance Club (12) – Onsdagsbio",
                "sv": "The Dance Club (12) – Onsdagsbio",
                "en": "The Dance Club (12) – Onsdagsbio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68335/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68337",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1748664,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-27T07:13:51.549684Z",
                    "last_modified_time": "2026-03-27T07:13:51.549698Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787735.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1748664/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-27T07:13:51.389512Z",
            "last_modified_time": "2026-03-27T07:13:51.738272Z",
            "date_published": null,
            "start_time": "2026-04-22T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Petra, 50, näyttää saaneen kaiken – täydellisen avioliiton, menestyksekkään uran ja kaksi ihanaa lasta.",
                "sv": "Petra, 50, verkar ha allt – det perfekta äktenskapet, en framgångsrik karriär och två underbara barn.",
                "en": "Petra’s seemingly perfect life unravels when her husband has an affair."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B49A994EBC878F4A89A11EB0AAD7B01/Det_ar_nagot_som_inte_stammer",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B49A994EBC878F4A89A11EB0AAD7B01/DET_AR_NAGOT_SOM_INTE_STAMMER",
                "en": "http://www.vuotalo.fi/en/events/event/1B49A994EBC878F4A89A11EB0AAD7B01/LITTLE_DID_I_KNOW"
            },
            "description": {
                "fi": "<p>Petra, 50, näyttää saaneen kaiken – täydellisen avioliiton, menestyksekkään uran ja kaksi ihanaa lasta.</p><p>Mutta vähitellen hän alkaa aavistaa, että jokin on vialla.</p><p>Pian hän huomaa, että hänen miehensä, jonka hän luuli olevan elämänsä rakkaus, on uskoton ja haluaa erota.</p><p>Samalla tutustumme 15-vuotiaaseen Petran, villiin teiniin, joka etsii todellista onnea ja rakkautta.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>",
                "sv": "<p>Petra, 50, verkar ha allt – det perfekta äktenskapet, en framgångsrik karriär och två underbara barn.</p><p>Men sakta börjar hon ana att något inte står rätt till.</p><p>Snart upptäcker hon att hennes man, som hon trodde var hennes livs kärlek, har en affär och vill skiljas.</p><p>Parallellt lär vi känna Petra, 15, en vild och sökande tonåring på jakt efter sann lycka och kärlek.</p><p>Det är en berättelse om att finna sig själv och bli den person man alltid var menad att vara. En resa genom två kärlekshistorier i olika skeden av livet.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>",
                "en": "<p>Petra’s seemingly perfect life unravels when her husband has an affair.</p><p>Meanwhile, young Petra embarks on finding true love.</p><p>Two women’s journeys of self-discovery span different life stages, offering a hopeful yet painful view on love.</p><p>Regi: Martina Haag, Magnus Bengtsson, Rebecka Cutic, Yana Martsynkevych, Fabian Vreede</p><p>I huvudrollerna: Shanti Roney, Kardo Razzazi, Gustaf Hammarsten, Jessica Liedberg, Alexandra Rapaport</p><p>KOHDEYRHMÄ Svenskspråkiga vuxna, åldersgräns F12</p><p>KIELI Svenska, ingen textning.</p><p>KESTO 1h 40 min.</p>"
            },
            "name": {
                "fi": "Det är något som inte stämmer – Onsdagsbio",
                "sv": "DET ÄR NÅGOT SOM INTE STÄMMER – Onsdagsbio",
                "en": "LITTLE DID I KNOW – Onsdagsbio"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68337/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67215",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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: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": 1494811,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-09T13:14:25.379072Z",
                    "last_modified_time": "2026-02-09T13:14:25.379088Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778684.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494811/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-09T13:14:25.121031Z",
            "last_modified_time": "2026-03-26T09:13:58.024711Z",
            "date_published": null,
            "start_time": "2026-05-05",
            "end_time": "2026-05-23",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Leijuu – unelmia ja utopioita -näyttely huipentaa Helsingin kuvataidelukion satavuotisjuhlavuoden 2025–26.",
                "sv": "Utställningen Leijuu – unelmia ja utopioita är höjdpunkten på Helsingin kuvataidelukios hundraårsjubileum 2025–2026.",
                "en": "The Leijuu – unelmia ja utopioita (‘Floating – Dreams and Utopias’) exhibition will be the culmination of 2025–2026, the centenary year of Helsinki Upper Secondary School of Visual Arts."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta",
                "sv": "http://www.caisa.fi/sv/evenemang/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta",
                "en": "http://www.caisa.fi/en/events/event/17449BAAD2C1158A38ABB569A60AB363/Leijuu_unelmia_ja_utopioita_Helsingin_kuvataidelukio_100_vuotta_"
            },
            "description": {
                "fi": "<p>Leijuu – unelmia ja utopioita -näyttely huipentaa Helsingin kuvataidelukion satavuotisjuhlavuoden 2025–26.</p><p>Näyttelyn teemana on tulevaisuuteen katsominen, utopiat ja unelmat. Millaisia tulevaisuudenvisioita lukioikäisillä nuorilla on tulevaisuuden mahdollisista maailmoista?<br>Juhlavuoden aikana eri kursseilla monin eri tekniikoin toteutettuja teoksia yhdistää pyöreä muoto. Se assosioituu ikuisuuteen, jatkuvuuteen ja yhtenäisyyteen, ja toisaalta myös esimerkiksi kaukoputkesta avautuvaan näkymään, tulevaisuuden paljastavaan kristallipalloon tai tuntemattomaan avautuvaan portaaliin.<br>Näyttelyssä on kymmenien eri kuvataidelukiolaisten teoksia. Kutsumme kaikenikäiset vierailijat tarkastelemaan nuorten kokemuksia tästä ajasta, sekä heidän tulkintojaan tulevaisuudesta.</p><p>Näyttelyyn järjestetään viittomakielinen opastus suomeksi la 16.5.2026 klo 13–14.</p>",
                "sv": "<p>Utställningen Leijuu – unelmia ja utopioita är höjdpunkten på Helsingin kuvataidelukios hundraårsjubileum 2025–2026.</p><p>Temat för utställningen är framtidsutsikter, utopier och drömmar. Vilka framtidsvisioner har unga i gymnasieåldern om framtidens möjliga världar?<br>Verken, som skapats under olika kurser och med många olika tekniker under jubileumsåret, förenas av en rund form. Den förknippas med evighet, kontinuitet och enhetlighet, och å andra sidan också till exempel den vy som öppnar sig i en kikare, en kristallkula som berättar om framtiden eller en portal till det okända.<br>I utställningen ingår verk av tiotals studerande vid bildkonstgymnasiet. Vi bjuder in besökare i alla åldrar att utforska unga människors upplevelser av den här tiden och deras tolkningar av framtiden.</p><p>En guidning på finskt teckenspråk ordnas lördagen den 16 maj 2026 kl. 13–14.</p>",
                "en": "<p>The Leijuu – unelmia ja utopioita (‘Floating – Dreams and Utopias’) exhibition will be the culmination of 2025–2026, the centenary year of Helsinki Upper Secondary School of Visual Arts.</p><p>The theme of the exhibition is looking to the future, utopias and dreams. What kind of visions do young people of upper secondary school age have regarding potential future worlds?<br>The works, created with a variety of techniques on different courses during the centenary year, share a round shape. It is associated with eternity, continuity and unity, but also with imagery such as the view through a telescope, a crystal ball revealing the future or a portal opening into the unknown.<br>The exhibition features works by dozens of different art students. We are inviting visitors of all ages to come and explore young people’s experiences of this era, as well as their interpretations of the future.</p><p>A Finnish Sign Language guided tour of the exhibition will also be held on Saturday 16 May 2026 at 13.00–14.00. See you there!</p>"
            },
            "name": {
                "fi": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – Helsingin kuvataidelukio 100 vuotta",
                "sv": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – Helsingin kuvataidelukio 100 år",
                "en": "Leijuu — unelmia ja utopioita – Helsingin kuvataidelukio 100 vuotta – 100 years of Helsinki Upper Secondary School of Visual Arts"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67215/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68331",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1722883,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T15:13:23.284161Z",
                    "last_modified_time": "2026-03-24T15:13:23.284178Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785214.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1722883/?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-03-24T15:13:23.113039Z",
            "last_modified_time": "2026-03-25T13:14:02.473190Z",
            "date_published": null,
            "start_time": "2026-06-08T07:00:00Z",
            "end_time": "2026-06-12T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.",
                "sv": "På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.",
                "en": "During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/ED4DCD9E32DEC64648CC445411E403AC/Lavastettu_juttu",
                "sv": "http://www.caisa.fi/sv/evenemang/event/ED4DCD9E32DEC64648CC445411E403AC/En_iscensatt_affar",
                "en": "http://www.caisa.fi/en/events/event/ED4DCD9E32DEC64648CC445411E403AC/A_Staged_Affair"
            },
            "description": {
                "fi": "<p>Kurssilla pohditaan mediataiteen ja esitystaiteen keinoin medialukutaitoa ja suunnitellaan esitys, joka videoidaan.</p><p>Mitä medialukutaito tarkoittaa? Mistä tietää onko jokin asian totta? Miltä voi tuntua, kun jokin paljastuu valheeksi? Millä tavoilla meidän käsityksiämme todellisuudesta rakennetaan?</p><p>Kurssin aikana suunnitellaan ja toteutetaan leikin kautta esitys, jossa kesäkurssilaiset pohtivat medialukutaitoa ja omaa suhdettaan esitettyyn todellisuuteen. Esitys suunnitellaan ja käsikirjoitetaan yhdessä. Harjoiteltu esitys kuvataan ja editoidaan valmiiksi videoteokseksi.</p><p>Tutustumme esityksen valmistamisen päävaiheisiin, joihin kuuluu lavastus, puvustus, kuvaaminen ja videoeditointi helpoilla editointiohjelmilla. Tutustumme näyttelemiseen ja esiintymiseen kehollisten harjoitteiden ja leikin avulla.</p><p>Kurssi on tarkoitettu 7–12-vuotiaille. Kurssi ei edellytä ennakko-osaamista. Valmiit videoteokset jaetaan osallistujille kurssin päätteeksi. Kuvattuja materiaaleja ei käytetä tai säilytetä kurssin jälkeen. Osallistuminen edellyttää kuvauslupaa edellä mainittuun tarkoitukseen.</p><p>Kurssiin ei sisälly ruokailua, joten lapsilla tulee olla mukana omat eväät ja juomapullo.</p><p>Ohjaajina toimivat taidekasvattajat Andra Sarenius ja Saban Ramadani.</p><p>Kielet: suomi ja englanti tarvittaessa.</p><p><b>Ilmoittautuminen</b><br>Ilmoittaudu mukaan hauskalle ja leikkisälle Caisan kesäkurssille! Ilmoittautuminen on sitova. Mahdolliset peruutukset mahdollisimman ajoissa. Vahvistamme ilmoittautumisen sähköpostitse.</p><p>Kurssikokonaisuus vk 24 8.6–12.6. ma–pe klo 10–14. <br>Ilmoittaudu tästä viikon 24 kesäkurssille (aukeaa pian)</p><p>Kysymykset ja tiedustelut: teemu.savikurki@hel.fi</p>",
                "sv": "<p>På kursen används mediekonst och scenkonst för att reflektera över medieläskunnighet och planera en föreställning som videofilmas.</p><p>Vad är medieläskunnighet? Hur vet man om något är sant? Hur kan det kännas när något avslöjas som en lögn? På vilket sätt är våra verklighetsuppfattningar konstruerade?</p><p>Under kursen planeras och genomförs en lekfull föreställning där kursdeltagarna reflekterar över medieläskunnighet och sin egen relation till den verklighet som presenteras. Föreställningen är planerad och skriven tillsammans. Den inövade föreställningen filmas och redigeras till ett färdigt videoverk.</p><p>Vi bekantar oss med de viktigaste skeden i att göra en föreställning, inklusive scenografi, kostymdesign, filmning och videoredigering med lättanvänd programvara före redigering. Vi lär oss om skådespeleri och uppträdande genom fysiska övningar och lek.</p><p>Kursen är avsedd för 7–12-åringar. Inga förkunskaper krävs för att delta i kursen. De färdiga videoverken kommer att delas ut till deltagarna i slutet av kursen. Det filmade materialet kommer inte att användas eller förvaras efter kursen. Deltagande kräver ett filmningstillstånd för ovanstående ändamål.</p><p>I kursen ingår inga måltider, så barnen bör ta med sig egen matsäck och en vattenflaska.</p><p>Projektet leds av konstpedagogerna Andra Sarenius och Saban Ramadani.</p><p>Språk: finska och engelska</p><p>Anmälan<br>Anmäl dig till Caisas roliga och lekfulla sommarkurs! Anmälan är bindande. Eventuella avbokningar ska göras så tidigt som möjligt.</p><p>Kurspaket v 24, 8.6–12.6. må–fre 10–14</p><p>Anmälan här: (Öppnas snart)</p>",
                "en": "<p>During the course, media literacy is explored through the means of media arts and performance art. Children will create a performance which is recorded and edited into a short movie.</p><p>What does media literacy mean? How do you know if something is true? How does it feel when something turns out to be a lie? In what ways are our perceptions of reality constructed?</p><p>During the course, a performance is planned and implemented through play. The summer course participants reflect on media literacy and their own relationship with represented reality. The performance is planned and scripted together. The rehearsed performance is filmed and edited into a finished video work.</p><p>We will get to know the main stages of making a show, which include staging, costuming, filming and video editing with easy editing programs. We get to know acting and performing through physical exercises and play.</p><p>The course is intended for 7–12-year-olds. The course does not require prior knowledge. The finished video works will be distributed to the participants at the end of the course. The described materials are not used or stored after the course. Participation requires a photography permit for the aforementioned purpose.</p><p>The course does not include meals, so children must bring their own snacks and a drinking bottle.</p><p>The instructors are art educators Andra Sarenius and Saban Ramadani.</p><p>Language: Finnish & English</p><p>Registration<br>Sign up for the fun and playful Caisa summer course! Registration is binding. Possible cancellations as early as possible. Two options to choose from:</p><p>Course 1, week 23, 1.6.–5.6. mon–fri 10 am–2 pm<br>REGISTER VIA THIS LINK: (link opens soon)</p>"
            },
            "name": {
                "fi": "Lavastettu juttu – kesäkurssi 7–12-vuotiaille lapsille",
                "sv": "En iscensatt affär – sommarkurs för barn i åldern 7–12 år",
                "en": "A Staged Affair – summer course for children aged 7–12"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67214",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": 1494349,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-02T10:13:37.602824Z",
                    "last_modified_time": "2026-01-02T10:13:37.602838Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778654.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494349/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-02T10:13:37.466048Z",
            "last_modified_time": "2026-03-25T13:13:46.454803Z",
            "date_published": null,
            "start_time": "2026-03-27",
            "end_time": "2026-04-25",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "“ ... maan luvalla, puun luvalla, kaiken kartanon luvalla, …”",
                "sv": "På utställningen visas verk av bildkonstnären Hanneriina Moisseinen, keramikkonstnären och kulturantropologen Heli Halme och illustratören Ilona Partanen samt ett verk av videokonstnärsduon Annu & Kerttu.",
                "en": "“... with the blessing of the earth, the blessing of the trees, the blessing of all living space, …” This exhibition features works by video artist duo Annu & Kerttu, ceramic artist and cultural anthropologist Heli Halme, visual artist Hanneriina Moisseinen and illustrator Ilona Partanen."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/975D2AEA636230778CE58626AAFFBB98/MAAN_LUVALLA",
                "sv": "http://www.caisa.fi/sv/evenemang/event/975D2AEA636230778CE58626AAFFBB98/MAAN_LUVALLA",
                "en": "http://www.caisa.fi/en/events/event/975D2AEA636230778CE58626AAFFBB98/MAAN_LUVALLA"
            },
            "description": {
                "fi": "<p>“ ... maan luvalla, puun luvalla, kaiken kartanon luvalla, …”</p><p>Näyttelyn taiteilijat ovat toteuttaneet karjalaisen nykytaidenäyttelyn omien juuriensa, eli näyttelyn nimen mukaisesti “Maan luvalla”. Eri puolilta Karjalaa useina toisintoina kerätty loitsu on aiemmin ollut käytössä karjaa laitumelle laskettaessa, levotonta lasta nukuttaessa, vieraassa paikassa nukkumaan mennessä ja hautausmaan ohi ajettaessa, \"ettei kalman väki tarttuisi\".</p><p>Nyt sen mukaan on nimetty näyttely, joka pohtii, mitä on nykykarjalaisuus taiteessa. Nykykarjalaisuuteen liittyy monia kysymyksenasetteluita: kuka on karjalainen? Mitä karjalaisuus merkitsee ja miten se ilmenee? Karjalaisessa yhteisössä eläminen ei välttämättä ole enää karjalaisen taiteilijan omaa henkilöhistoriaa ja kokemus omasta karjalaisuudesta voi olla ainakin osin fragmentoitunut. Karjalaisen identiteetin määrittely ei ole yksinkertaista, sillä karjalaisuuksia on niin monia.</p><p>Viiden taiteilijan teoksia yhteen tuova Maan luvalla -näyttely käsittelee karjalaisuuksien monimuotoisuutta. Se tuo suuren yleisön eteen nykykarjalaisuuden käsitettä sekä siitä nousevia teemoja, kuten tämän päivän karjalaista kulttuuria, vähemmistökielen asemaa ja karjalaiseen identiteettiin liittyviä kysymyksiä.</p><p>Tekijöiden juuret ovat eri puolilla Karjalaa: Pohjois-Aunuksessa, Laatokan Karjalassa, Raja-Karjalassa, Kannaksella sekä nykyisessä Suomen Karjalassa. Näyttelyn oheisohjelmana on Studia Generalia -luentosarja teemalla karjalainen taide ja kulttuuri. Luentosarja toteutetaan yhteistyössä Karjalan Sivistysseuran kanssa.</p><p>Näyttelyn taiteilijat: <br>Annu & Kerttu, <br>Heli Halme, <br>Hanneriina Moisseinen, <br>Ilona Partanen</p><p>Näyttelyn teosten valmistamista ovat tukeneet Taiteen edistämiskeskus, AVEK ja Sortavala-säätiö. Karjalan Sivistysseura on toteuttanut näyttelytekstien karjalankieliset käännökset.</p>",
                "sv": "<p>På utställningen visas verk av bildkonstnären Hanneriina Moisseinen, keramikkonstnären och kulturantropologen Heli Halme och illustratören Ilona Partanen samt ett verk av videokonstnärsduon Annu & Kerttu.</p><p>Ett program har planerats i anslutning till utställningen.<br>Utställningen Maan luvalla och det tillhörande programmet lyfter fram frågor kring karelsk kultur, minoritetsspråk och karelsk identitet i ett brett perspektiv. Det karelska och olika sätt att vara karelare tas upp på många olika sätt, till exempel autoetnografiskt, ur ett generationsöverskridande perspektiv och med fokus på det kollektiva minnet. Konstnärerna i utställningen berättar i sin konst om hur de rör sig vid sina rötter, som utställningens namn säger ”med markens tillåtelse”. Konstnärerna har sina rötter i olika delar av Karelen: I norra Olonets, Ladogakarelen, Gränskarelen, på Karelska näset och i den nuvarande finska Karelen.</p><p>I samband med utställningen ordnas en Studia Generalia-föreläsningsserie på temat karelsk konst och kultur.</p><p>Utställningens texter är på finska, karelska och engelska.</p><p>En guidning på finskt teckenspråk ordnas lördagen den 11 april 2026 kl. 13–14.</p><p>Konstnärer: Bildkonstnären Hanneriina Moisseinen, keramikkonstnären Heli Halme, illustratören Ilona Partanen, bildkonstnären Annu Timonen och bildkonstnären Kerttu Malinen</p><p>Vi samarbetar med Karjalan Sivistysseura. Föreningens verksamhet främjar det karelska språket, kulturen och upplevelsen av karelsk identitet. KSS stöder utställningen ekonomiskt med ett litet stipendium.</p>",
                "en": "<p>“... with the blessing of the earth, the blessing of the trees, the blessing of all living space, …” This exhibition features works by video artist duo Annu & Kerttu, ceramic artist and cultural anthropologist Heli Halme, visual artist Hanneriina Moisseinen and illustrator Ilona Partanen.</p><p>The group exhibition ”With the Blessing of the Earth” discusses the diversity of Karelianity. It introduces the concept of contemporary Karelianity to the public and the themes that appear in it, such as today's Karelian culture, the status of the minority language and issues related to Karelian identity. The artists have their roots in different parts of Karelia: North Aunus, Ladoga Karelia, Border Karelia, the Karelian Isthmus and present-day Finnish Karelia.</p><p>The texts of the exhibition are in Finnish, Karelian and English.</p><p>A Finnish sign language guided tour of the exhibition will also be held on Saturday 11 April 2026 at 13.00–14.00. See you there!</p><p>Artist: Visual artists Annu & Kerttu, ceramic artist Heli Halme, visual artist Hanneriina Moisseinen and illustrator Ilona Partanen.</p><p>The exhibition is accompanied by the Studia Generalia lecture series on the theme of Karelian art and culture. The lecture series is carried out in cooperation with the Karelian Culture Society.</p><p>The production of the works in the exhibition has been supported by the Arts Promotion Centre Finland, AVEK and the Sortavala Foundation. The Karelian translations of the exhibition texts have been carried out by the Karelian Culture Society. The Evergone sound work has been created by the media artist Kalle Kuisma.</p>"
            },
            "name": {
                "fi": "MAAN LUVALLA – Karjalainen nykytaidenäyttely",
                "sv": "MAAN LUVALLA – Maan luvalla är en utställning av karelsk samtidskonst.",
                "en": "MAAN LUVALLA – Maan luvalla (‘With the Blessing of the Earth’) is a Karelian contemporary art exhibition."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67214/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68244",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1642332,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T11:13:55.438157Z",
                    "last_modified_time": "2026-03-16T11:13:55.438172Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786454.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1642332/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-16T11:13:55.285013Z",
            "last_modified_time": "2026-03-25T12:13:55.576083Z",
            "date_published": null,
            "start_time": "2026-03-30",
            "end_time": "2026-04-02",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36FF1CA0CFFDFB8E45BFB4E203C9AB63/Made_in_Vuosaari_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/36FF1CA0CFFDFB8E45BFB4E203C9AB63/Made_in_Vuosaari",
                "en": "http://www.vuotalo.fi/en/events/event/36FF1CA0CFFDFB8E45BFB4E203C9AB63/Made_in_Vuosaari_"
            },
            "description": {
                "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Asukkaita pyydetään lahjoittamaan projektin käyttöön omia, tarpeettomaksi käyneitä tavaroita. Tavara voi olla mikä tahansa pienehkö esine, esimerkiksi virheostos, lelu tai astia.</p><p>Niistä tehdään esinekoosteita kirjaston elämäkertaosastoille. Esinekoosteet näyttäytyvät alueen asukkaiden muotokuvina.<br>Ne rakennetaan lahjoitetuista esineistä, 3D-skannataan ja tulostetaan. Näin näyttelyn osaksi tuodaan paikallisten asukkaiden läsnäoloa ja mikrohistoriaa.</p><p>Anne Roininen on paikalla Vuotalossa vastaanottamassa tavaroita seuraavasti:</p><p>ma 30.3. klo 16–18<br>ti 31.3. klo 10–12<br>ke 1.4. klo 16–18<br>to 2.4. klo 10–12</p><p>Tavaroita voi myös tuoda muina aikoina Vuotalon aulassa olevaan kottikärryyn. Kirjoita tavaraan oma nimesi maalarinteipillä. Nimettömiä tavaroita ei voida käyttää esinekoosteissa.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Lue lisää: https://anneroininen.com/</p>"
            },
            "name": {
                "fi": "Made in Vuosaari – Vuosaarelaisten tarpeettomien tavaroiden keräys",
                "sv": "Made in Vuosaari – Vuosaarelaisten tarpeettomien tavaroiden keräys",
                "en": "Made in Vuosaari – Vuosaarelaisten tarpeettomien tavaroiden keräys"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68244/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68185",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1586459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T09:13:03.464813Z",
                    "last_modified_time": "2026-03-10T09:13:03.464827Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786067.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2026-03-10T09:13:03.291753Z",
            "last_modified_time": "2026-03-24T14:13:28.180542Z",
            "date_published": null,
            "start_time": "2026-03-24",
            "end_time": "2026-04-26",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita",
                "sv": "http://www.stoa.fi/sv/evenemang/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita",
                "en": "http://www.stoa.fi/en/events/event/AB05968384638A5B33C31501442D3639/Iiris_Laurikainen_Kontufestarit_2025_-_Tekijoita_ja_kokijoita"
            },
            "description": {
                "fi": "<p>”Tää osui jengillä johonkin hermoon”, sanoo Notkea Rotta -yhtyeen jäsen Rautaperse. (HS)<br> <br>“Puhelin alkoi piristä ja sähköpostia tulla. Viesti kaikilta oli, että ”tehdään sitten ite”! Sitä ei voinut vastustaa! ”<br>- Sampo Laurikainen, tuottaja.<br> <br>Talkoolaisia alkoi tulla ovista ja ikkunoista; järjestyshenkilöiksi, ensiapuryhmään, rakentajiksi, siivoukseen, tiedotukseen, spiikkereiksi, esiintyjien huoltoon, alueen koristeluun ja moneen muuhun.<br>Yhtäkkiä kasassa oli osaava porukka, jolla oli tekemisen meininkiä ja reilua asennetta.<br> <br>Syntyi juhlien juhla, rauhallinen ja iloinen kaiken kansan festari talkoilla ja yhdessä, asukkaiden, esiintyjien ja yritysten yhteistyöllä.<br> <br>Kelkkapuisto, josta kaikki alkoi vuonna 2003, keräsi ennätyksellisen määrän yleisöä ja Kontufestarit nousivat kerralla yhdeksi stadin suurimmista kaupunginosajuhlista.<br> <br>Tästä olemme erittäin ylpeitä ja haluamme esitellä tapahtumaa ja erityisesti sen tekijöitä valokuvaaja Iiris Laurikaisen kuvin. Hän oli yhtenä vapaaehtoisista valokuvaamassa tapahtumaa. Näyttelyssä pääset seikkailemaan yleisön seassa, jännittämään bäkkärillä, rakentamaan lavaa ja näkemään kuinka kessa tyhjenee juhlahumusta. <br> <br>Eläköön Kontula, Kontufestarit sekä sen tekijät ja kokijat, jotka yhdessä saivat aikaan juhlan!</p>"
            },
            "name": {
                "fi": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita",
                "sv": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita",
                "en": "Iiris Laurikainen: Kontufestarit 2025 - Tekijöitä ja kokijoita"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68185/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68324",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1721275,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T11:14:12.015114Z",
                    "last_modified_time": "2026-03-24T11:14:12.015135Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785923.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721275/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T11:14:11.879655Z",
            "last_modified_time": "2026-03-24T12:13:53.296960Z",
            "date_published": null,
            "start_time": "2026-06-04",
            "end_time": "2026-06-13",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026",
                "en": "http://www.malmitalo.fi/en/events/event/5DAD7B3D863A88635448462D6610CAED/Malmin_tapahtumakesa_2026"
            },
            "description": {
                "fi": "<p>Malmin oma kaupunkifestivaali elävöittää Ala-Malmin toria konserteilla, työpajoilla, lasten tapahtumilla ja muulla yhteisellä tekemisellä!</p><p>Malmin tapahtumakesä 2026 käynnistyy 4.6. uudessa tapahtumapaikassa Ala-Malmin torilla, kun Ala-Malmin puistoa remontoidaan.</p><p>Kesäkuun aikana torin Konttilavalla nähdään mm. Vimma, Nyrkkitappelu, Tuula Amberla & Pieni Jazzorkesteri, Mara Balls ja Rosettes.</p><p><b>Malmin tapahtumakesä 2026 kesäkuun ohjelma</b></p><p><b>Torstai 4.6. Vimma, Dragsvik ja luovaa tekemistä kaikille</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa luovaa toimintaa kaikenikäisille<br>17.30–18.20 Dragsvik <br>19.00–20.00 Vimma<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/BC7E23145ED3EE112007BDC5171F83A3/Vimma__Dragsvik_ja_luovaa_tekemist__kaikille\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 5.6. Nyrkkitappelu, Saa kiljua ja ympäristöteemaista tekemistä </b><br>14.30–18.30 ympäristöteemaista toimintaa kaikenikäisille <br>17.30–18.20 Saa kiljua <br>19.00–20.00 Nyrkkitappelu<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/07AA5D12A68CB870C58948E46914D876/Nyrkkitappelu__Saa_kiljua_ja_ymp_rist_teemaista_tekemist_\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 6.6. Lasten lauantai: Rokkasoppa, riemukas perhemuskari, kirjaston lukukeidas ja työpajoja</b><br>10.00–16.00 Kirjaston lukukeidas<br>12.00–16.00 Malmin nuorisotyöyksikön kesätyönuorten ideoimia pelejä ja leikkejä perheen pienille <br>12.00–14.00 Pukinmäen taidekoulu: Klovni Dattarataa <br>12.00–14.00 Pohjois-Helsingin kuvataidekoulun pinssityöpaja <br>12.00–14.00 Yksin hanke: Kollaasitaidetta ja tikkariperhosia <br>13.00–13.30 Riemukas perhemuskari<br>14.00–14.45 Rokkasoppa<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CF826880E5BB479091D11E88120EA497/Lasten_lauantai__Rokkasoppa__Riemukas_perhemuskari__kirjaston_lukukeidas_ja_ty_pajoja\">Katso päivän ohjelma</a></u></p><p><b>Tiistai 9.6. Tuula Amberla & Pieni Jazzorkesteri, Kaupunkitanssit ja kirjaston lukuhetki</b><br>13.00–14.00 Kirjaston lukuhetki <br>16.00–16.45 Kaupunkitanssit<br>19.00–20.00 Tuula Amberla & Pieni Jazzorkesteri<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/A6FD16785CE476C66954F655A87939CC/Tuula_Amberla___Pieni_Jazzorkesteri__Kaupunkitanssit_ja_kirjaston_lukuhetki\">Katso päivän ohjelma</a></u></p><p><b>Keskiviikko 10.6. Mara Balls ja Satanen</b><br>17.30–18.20 Satanen <br>19.00–20.00 Mara Balls<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/AA3A2D05D104F072E0A9A7FA1A40039E/Mara_Balls_ja_Satanen\">Katso päivän ohjelma</a></u></p><p><b>Torstai 11.6. Suuri sambapäivä: Samigo & Samba Amigos, sambatyöpaja, tanssiopetusta ja kulkue</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa kisailua ja visailua kaiken ikäisille 17.00–17.30 Samigon Sambapaja kaikille <br>17.30–18.00 Samigo & Samba Amigos: 1. setti <br>18.00–18.20 Samba-tanssin opetusta <br>18.30–19.15 Samigo & Samba Amigos: 2. setti <br>19.15–19.30 Samba-show <br>19.30–19.50 Samba-rumpuryhmän ja tanssijoiden johtama sambakulkue<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/CDF84A0B7E02853CCDF416B49B787E89/Suuri_sambap_iv___Samigo___Samba_Amigos__sambaty_paja__tanssiopetusta_ja_kulkue\">Katso päivän ohjelma</a></u></p><p><b>Perjantai 12.6. Helsinki päivä</b><br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/01BA3D940BFC1583059744C211303906/Helsinki-p_iv__Malmilla\">Katso päivän ohjelma</a></u></p><p><b>Lauantai 13.6. Rosettes, Nevala ja Malmin nuorisotyöyksikön ideoimaa kesätekemistä ja kohtaamisia</b><br>14.30–18.30 Malmin nuorisotyöyksikön kesätyönuorten ideoimaa kivaa kesätekemistä ja kohtaamisia kaiken ikäisille<br>15.00–16.00 Nevala <br>17.00–18.00 Rosettes<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/27A936EFADAC1A0D50FED0CE4AE42AAA/Rosettes__Nevala___kes_tekemist__ja_kohtaamisia\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy! Muutokset ovat mahdollisia. Rankkasateen sattuessa tapahtumat siirtyvät sisätiloihin Malmitaloon.</p><p>Malmin tapahtumakesä jatkuu elokuussa 13.8. alkaen.</p>"
            },
            "name": {
                "fi": "Malmin tapahtumakesä 2026 – kesäkuun ohjelma",
                "sv": "Malmin tapahtumakesä 2026",
                "en": "Malmin tapahtumakesä 2026"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67928",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494398,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-08T09:12:58.930989Z",
                    "last_modified_time": "2026-01-08T09:12:58.931005Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780468.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494398/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-08T09:12:58.836801Z",
            "last_modified_time": "2026-03-24T09:13:20.753431Z",
            "date_published": null,
            "start_time": "2026-03-30T07:15:00Z",
            "end_time": "2026-05-25T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tanssin ja leikin maailmaan!",
                "en": "Welcome to the world of dance and play!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/BA6CE2C6D6D62DD7FE76D4D7013CAF91/The_dance_and_play"
            },
            "description": {
                "fi": "<p>Tervetuloa tanssin ja leikin maailmaan!</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3- vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata kävellä.</p><p>Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.<br>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä.</p><p>Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereidensa kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.<br>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p><b>Huom! Työpajaa ei järjestetä 16.2., 6.4. eikä 20.4.</b></p><p><b>Osallistuminen </b><br>Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>",
                "en": "<p>Welcome to the world of dance and play!</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Toddler should be able to walk.</p><p>Suitable for participants with different abilities, including special needs. Older siblings are welcome to join.<br>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone.</p><p>The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>Workshop is directed by Vera Lapitskaya, dance artist and inclusive dance director.<br>Language: Finnish (English, Russian, Spanish if necessary)</p><p><b>Please note! The workshop will not be held on 16.2., 6.4. or 20.4.</b></p><p><b>Participation</b> <br>You can participate in the workshop whenever it suits you, all times or just some. Choose the workshop that suits you and arrive on time. No pre-registration, places will be filled in the order they arrive. The first 12 children with an adult can join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen",
                "sv": "Dans och lek – Verkstaden för småbarn",
                "en": "The dance and play – Workshop for toddlers and their parents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67928/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67926",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1494397,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-08T09:12:58.584975Z",
                    "last_modified_time": "2026-01-08T09:12:58.584989Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780466.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494397/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-08T09:12:58.475770Z",
            "last_modified_time": "2026-03-24T09:13:20.577694Z",
            "date_published": null,
            "start_time": "2026-03-30T06:15:00Z",
            "end_time": "2026-05-25T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa tanssin ja leikin maailmaan!",
                "en": "Welcome to the world of dance and play!"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/955001E3E341352D22B3996DDBEB66B6/Tanssi_ja_leikki",
                "sv": "http://www.caisa.fi/sv/evenemang/event/955001E3E341352D22B3996DDBEB66B6/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/955001E3E341352D22B3996DDBEB66B6/The_dance_and_play"
            },
            "description": {
                "fi": "<p>Tervetuloa tanssin ja leikin maailmaan!</p><p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta. Työpaja on suunnattu 1–3- vuotiaille taaperoille ja heidän aikuisilleen. Taaperon tulisi osata kävellä.</p><p>Sopii osallistujille erilaisilla kyvyillä, myös erityistarpeet huomioiden. Vanhemmat sisarukset ovat tervetulleita mukaan.</p><p>Työpajassa lapset leikkivät, kommunikoivat ja ilmaisevat itseään liikkeen ja tanssin kautta. Liike toimii kaikille yhteisenä kielenä.</p><p>Työpajat on suunniteltu huomioimaan osallistujien yksilöllisiä tarpeita osana sosiaalista ryhmätilannetta. Tavoitteena on kehittää sosiaalisia suhteita ikätovereidensa kanssa, sekä löytää uusia vuorovaikutuksen tapoja oman aikuisen kanssa. Turvallisessa ja ystävällisessä ilmapiirissä syntyvät positiiviset kokemukset edesauttavat osallistujia oppimaan uusia taitoja.</p><p>Työpajan ohjaa Vera Lapitskaya, tanssitaiteilija ja inklusiivinen tanssiohjaaja.<br>Opetuskieli: suomi (englanti, venäjä, espanja tarvittaessa)</p><p><b>Huom! Työpajaa ei järjestetä 16.2., 6.4. eikä 20.4.</b></p><p><b>Osallistuminen </b><br>Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä lasta aikuisen seurassa.</p><p>Tiedustelut ja kysymykset: teemu.savikurki@hel.fi</p>",
                "en": "<p>Welcome to the world of dance and play!</p><p>The dance and play workshops introduce children to the world of dance through movement, music and play. The workshop is aimed at toddlers aged 1–3 and their adults. Toddler should be able to walk.</p><p>Suitable for participants with different abilities, including special needs. Older siblings are welcome to join.</p><p>In the workshop, children play, communicate and express themselves through movement and dance. Movement acts as a common language for everyone.</p><p>The workshops are designed to take into account the individual needs of the participants as part of a social group situation. The goal is to develop social relationships with their peers, and to find new ways of interacting with their own adult. The positive experiences created in a safe and friendly atmosphere help participants learn new skills.</p><p>Workshop is directed by Vera Lapitskaya, dance artist and inclusive dance director.<br>Language: Finnish (English, Russian, Spanish if necessary)</p><p><b>Please note! The workshop will not be held on 16.2., 6.4. or 20.4.</b></p><p><b>Participation </b><br>You can participate in the workshop whenever it suits you, all times or just some. Choose the workshop that suits you and arrive on time. No pre-registration, places will be filled in the order they arrive. The first 12 children with an adult can join.</p><p>Questions and inquiries: teemu.savikurki@hel.fi</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja taaperoille (1–3 vuotta) ja heidän aikuisilleen",
                "sv": "Dans och lek – Verkstaden för småbarn",
                "en": "The dance and play – Workshop for toddlers and their parents"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67926/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68180",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1532266,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-05T13:13:16.854391Z",
                    "last_modified_time": "2026-03-05T13:13:16.854405Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780744.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1532266/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-05T13:13:16.714990Z",
            "last_modified_time": "2026-03-23T15:13:00.176610Z",
            "date_published": null,
            "start_time": "2026-05-23T13:00:00Z",
            "end_time": "2026-05-23T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Idän kyläjuhla täyttää jo 10 vuotta!",
                "sv": "Byafesten Idän kyläjuhla fyller 10 år!",
                "en": "Idän kyläjuhla (Eastern village party) turns 10!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla",
                "en": "http://www.stoa.fi/en/events/event/6DE394B567870095CEAE7F7BB42C9F7E/Idan_kylajuhla"
            },
            "description": {
                "fi": "<p>Idän kyläjuhla täyttää jo 10 vuotta!</p><p>Jo perinteeksi muodostuneet juhlat ovat täydellinen aloitus kesälle, elämys aisteille ja toukokuun parhaat bileet. <br>Toukokuinen lauantai tarjoaa herkullisen musiikkikattauksen, taidetta ja tekemistä monissa muodoissa, Eliökuntalaisten niityn avajaiset sekä tietenkin hyväntuulista hengailua. Ota mukaan kaverit, perhe ja piknik-henkeä - ihana Itä-Helsinki toivottaa juuri sinut tervetulleeksi luomaan juhlatunnelmaa!<br> <br>Aikataulu:<br>klo 16.15 Big Wolf Company: Three Sisters<br>klo 17.00 Rebekka Holi<br>klo 17.45 Big Wolf Company: Three Sisters<br>klo 18.30 Absoluuttinen nollapiste</p><p><b> Absoluuttinen nollapiste</b> on pitkän linjan suomalainen yhtye, joka nousi tunnetuksi omintakeisella musiikillaan. Bändiä kutsutaankin parhaaksi suomenkieliseksi proge-pop –bändiksi. Absoluuttinen Nollapiste julkaisee myös uuden albumin ”Magneettipohjoinen” vuoden 2026 aikana.</p><p><b> Rebekka Holi</b> on helsinkiläinen laulaja-lauluntekijä, jonka musiikissa sekoittuu niin herkkä folk, leikkisä tarinankerronta kuin rouhea räimekin. Artisti on vakiinnuttanut paikkansa Suomen indiemusiikin kentällä. Eläytyvän ja persoonallisen esiintymisen omaava Holi tunnetaan myös oivaltavista sävellyksistä ja humoristisista sanoituksista.</p><p><b> Big Wolf Company (Viro) </b><br>Big Wolf Company on Viron ensimmäinen ammattimainen nykysirkusryhmä. Baltian maiden suurista naisista kertovassa Three Sisters -esityksessä ilma-akrobatia, käsilläseisonta ja akrotanssi yhdistyvät nokkelaan komediaan, maustettuna yhteiskunnallisella kritiikillä ja eeppisillä tanssiosuuksilla. <br>Tekijät ja esiintyjät: Alise Bokaldere (LV), Grete Gross (EE), Lizeth Wolk (EE) <br>Taiteellinen dialogi: Ghia Fieandt (FI), Noora Pasanen (FI) <br>Outside Eye: Kati Kivitar (EE)</p><p>Tapahtuman juontajana loistaa taiteilija ja kulttuurityöntekijä <b> Caroline Suinner</b>!<br>Lisäksi erilaisia työpajoja Stoan aukiolla klo 16-19.</p><p>Idän kyläjuhlassa vietetään Eliökuntalaisten niityn avajaisia. Stoan aukion viereen syntyvälle uudelle viheralueelle kylvetään kevään tullen niittysiemeniä, istutetaan monivuotista kasvillisuutta ja tuodaan lahopuita, jotka tarjoavat elinympäristöjä monenlaisille hyönteisille. Alueen maisemointi on osa Omastadin Nurmialueita niityiksi -hankkeen toteutusta.</p><p>Kahvila Stoasta saatavilla virvokkeita ja herkkuja tapahtuman ajan.</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Byafesten Idän kyläjuhla fyller 10 år!</p><p>En lördag i maj bjuds det på ett läckert urval av musik, konst och aktiviteter i olika former, och naturligtvis också trevlig samvaro. Ta med dig vännerna, familjen och ett gott picknickhumör – det underbara östra Helsingfors hälsar just dig varmt välkommen!</p><p>Programmet preciseras senare.</p><p>Språk: flerspråkig<br>Fritt inträde!</p>",
                "en": "<p>Idän kyläjuhla (Eastern village party) turns 10!</p><p>Come along on a Saturday in May to enjoy a delicious spread of music, arts and crafts in many forms and, of course, good-humoured hanging out. Bring your friends and family along with some picnic spirit – the wonderful East Helsinki would like to offer a heartfelt welcome to you!</p><p>Further details to be announced later.</p><p>Language: multilingual<br>Free entry!</p>"
            },
            "name": {
                "fi": "Idän kyläjuhla",
                "sv": "Idän kyläjuhla",
                "en": "Idän kyläjuhla – Eastern village party"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68180/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67573",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1494749,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T15:13:50.396667Z",
                    "last_modified_time": "2026-02-05T15:13:50.396685Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494749/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T15:13:50.229223Z",
            "last_modified_time": "2026-03-23T11:13:43.378651Z",
            "date_published": null,
            "start_time": "2026-03-27",
            "end_time": "2026-05-03",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Olemme kolmen taiteilijan muodostama työryhmä, joka työskentelee monialaisesti eri medioiden parissa.",
                "sv": "En arbetsgrupp på tre konstnärer visar sin utställning Alkumaisema, vars tema är naturmaterial, i Stoas galleri. Utställningen består av målningar, fotografier och skulpturer.",
                "en": "A group of three artists will bring their exhibition Alkumaisema (primeval landscape) with the theme of natural materials to the Stoa gallery. The exhibition will feature paintings, photographs and sculptures."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_",
                "en": "http://www.stoa.fi/en/events/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_"
            },
            "description": {
                "fi": "<p>Olemme kolmen taiteilijan muodostama työryhmä, joka työskentelee monialaisesti eri medioiden parissa.</p><p>Yhteisnäyttelymme koostuu maalauksista, sekä veistoksista, jotka on valmistettu kasvimateriaalista, kasvivärjätystä kankaista ja keramiikasta.</p><p>Ryhmämme jäseniä yhdistää luonnonmateriaalien, kuten kasvien ja maa-aineksien, käyttäminen työskentelyssä. Lähestymme aihetta tarkastelemalla luontoa temaattisesti materiaalien kautta ja pohtimalla niiden yksilöllisiä merkityksiä omassa työskentelyprosessissamme.</p><p><b> Anne-Mari Alrsumi</b></p><p>Olen Helsingissä asuva ja työskentelevä kuvanveistäjä. Näyttelyssä olevat teokset tutkivat luontoa ruumiillisena, sisäisenä ja haavoittuvana ilmiönä. Luonnon elinvoimassa ja hauraudessa, jossa kukoistus ja tuhoutuminen tapahtuvat rinnakkain, pohdin Ihmisen ja luonnon välisen rajan hämärtymistä. Missä kulkee luonnon ja rakennetun raja – ja onko sitä lopulta olemassa?</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna</p><p><b> Henna Parkkinen</b></p><p>Olen Helsingissä asuva muotoilija ja tekstiiliartesaani. Työskentelen tekstiiliveistosten, keramiikan ja valokuvauksen parissa. Työskentely eri medioiden parissa on tutkivaa ja kokeileva. Luontoteema toteutuu teoksissa materiaalilähtöisesti ja värimaailman kautta. Praktiikkani ydin on työskennellä käytettyjen materiaalien parissa, jotta materiaalit pysyvät kiertotalouden mukaisesti kierrossa.</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen</p><p><b> Piia Suomi</b></p><p>Olen helsinkiläinen kuvataiteilija ja taidemaalari. Maalaan maisemallisia ja puoliabstrakteja aiheita maapigmenttejä hyödyntäen. Luontoteema näkyy teoksissani pyrkimyksenä hahmotella koskematonta alkumaisemaa, jota ihmisen kädenjälki ei ole muokannut. Tuhoutumisen keskellä tavoittelen maalauksia, jotka heijastavat pysyvyyden ja säilymisen teemoja.</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi</p><p>Avajaiset torstaina 26.3. klo 18-20.<br>Avajaisissa esiintyy klo 18.30 <br>Mikko Sarvanne: <br>Syklit jotka puhkeavat -performanssi, 20 min<br>Tervetuloa!</p><p>Vapaa pääsy</p>",
                "sv": "<p>En arbetsgrupp på tre konstnärer visar sin utställning Alkumaisema, vars tema är naturmaterial, i Stoas galleri. Utställningen består av målningar, fotografier och skulpturer.</p><p>Anne-Mari Alrsumi, Henna Parkkinen och Piia Suomi bildar en konstnärsgrupp som utforskar sina teman genom att arbeta med material från naturen. Verken är gjorda av bland annat växter, växtfärgade tyger och keramik. <br> <br>Anne-Mari Alrsumi <br>”Jag är en bildkonstnär som bor och arbetar i Helsingfors. Mina verk skapas som en reaktion på sensoriska upplevelser av världen omkring mig, vilket ger mig en bild i huvudet som jag bearbetar genom materialet. Personlighet, intimt samspel och hantering av svåra känslor är naturliga utgångspunkter i mitt arbete.<br> <br>Jag är också materialist, så materialet fungerar ofta som en inspirationsresa i processen att skapa verket och blir en del av det objekt jag studerar.<br>Användningen av lera och växter har fört in olika aspekter av temporalitet och fått mig att reflektera över verkets livscykel. Naturen som tema visar sig i mina verk, förutom genom hanteringen av materialet, som en sorts apokalyptisk tolkning och syftar på tragedin i det naturliga växandet som ebbar ut.”</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna<br>@annemarijohanna</p><p>Henna Parkkinen<br>”Jag är formgivare och textilartesan. Just nu arbetar jag med textilskulpturer och fotografering. Det som fascinerar mig är slutresultatet, som inte är helt klart. Jag tilltalas också av den jordnära känslan i att skapa samt de experiment och reflektioner som sker vid sidan av arbetet. <br> <br>Kärnan i min verksamhet är att arbeta med begagnade material för att hålla dem i omlopp i en cirkulär ekonomi. Jag vill minimera det avfall som uppstår i mitt arbete. Jag färgar tyger med avokadoskal och -kärnor, lök- och citrusskal. Jag är fascinerad av arbete som tar tid: färgningen i sig är en konstnärlig process. Inom fotografering är praktiken experimentell och slumpmässig. Jag fotograferar huvudsakligen på film och dokumenterar sådant som sker i livet. Jag vill inte påverka motivet, utan avbilda det så autentiskt som möjligt. Fotografierna i utställningen har jag kombinerat med torkade växter.”</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen<br>@hennaparkkinen</p><p>Piia Suomi<br>”Jag är bildkonstnär och konstmålare från Helsingfors. Jag målar landskapsmässiga och halvabstrakta teman med hjälp av jordpigment. Naturtemat syns i mina verk som en strävan efter att gestalta ett orört urlandskap, som inte har formats av människan. Mitt i förstörelsen strävar jag efter målningar som återspeglar teman kring permanens och bevarande.</p><p>Mina verk betonar landskapet och sammanflätningen av tid och rum. Jag är fascinerad av att abstrahera motiv på ett sätt som suddar ut gränserna mellan den upplevda och den icke upplevda världen och ger tillgång till fantasi, känslor och förnimmelser.</p><p>På det här sättet upplever jag att jag kommer närmare en delad upplevelse av mänsklighet och till ett område där kommunikationen inte sker genom språk, utan genom omedelbara känslor.”</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi<br>@piiasuomi</p><p>Fritt inträde</p>",
                "en": "<p>A group of three artists will bring their exhibition Alkumaisema (primeval landscape) with the theme of natural materials to the Stoa gallery. The exhibition will feature paintings, photographs and sculptures.</p><p>Anne-Mari Alrsum, Henna Parkkinen and Piia Suomi are a group of artists exploring their subject through the use of materials from nature. Their works are made from plants, fabrics dyed with vegetable dye and ceramics. <br> <br>Anne-Mari Alrsumi <br>\"I am a visual artist living and working in Helsinki. My works are created as a reaction to sensory experiences of the world around me. They bring an image to my mind, which I then work on through the material. Personal matter, intimate interaction and dealing with difficult emotions is a natural starting point in my work.<br> <br>I am also a materialist, so the material often acts as an inspirational journey in the process of creating the work and becomes part of the object of study.<br>The use of clay and plants has brought in different aspects of temporality and made me reflect on the life cycle of the work. As a theme in my work, nature represents a kind of apocalyptic interpretation and refers to the tragedy of the depletion of natural growth, in addition to being the material that is processed.\"</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna<br>@annemarijohanna</p><p>Henna Parkkinen<br>\"I am a designer and textile artisan. I am currently working on textile sculptures and photography. What fascinates me is the end result, which is not always entirely clear. I am also attracted by the grounding emotional state of making things and the experimentation and reflection that happens while working. <br> <br>The core of my practice is to work with used materials to keep them in circulation in keeping with the principles of the circular economy. I want to minimise the waste generated by my work. I dye fabrics using avocado skins and seeds and onion and citrus peels. I'm fascinated by work that takes time: dyeing itself is an artistic process. In photography, the practice is experimental and random. I mainly shoot on film and record things that happen in life. I don't want to influence the subject, I want to capture the subject as authentically as possible. I have combined dried plants with the photographs in the exhibition. \"</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen<br>@hennaparkkinen</p><p>Piia Suomi<br>\"I am a visual artist and painter based in Helsinki. I paint landscapes and semi-abstract subjects using earth pigments. The theme of nature appears in my works as an attempt to sketch an untouched primeval landscape that has not been shaped by humans. In the midst of destruction, I try to create paintings that reflect themes of permanence and survival.</p><p>My works emphasise landscapes and the intertwining of space and time. I am fascinated by abstracting subjects in a way that blurs the boundaries between the perceived and non-perceived worlds, allowing access to imagination, emotion and sensation. In this way, I feel I am getting closer to a shared experience of humanity and to a space where communication takes place not so much through language but through immediate sensations.\"</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi<br>@piiasuomi</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Alrsumi, Parkkinen, Suomi: Alkumaisema",
                "sv": "Alrsumi, Parkkinen, Suomi: Alkumaisema",
                "en": "Alrsumi, Parkkinen, Suomi: Alkumaisema"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67573/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}