Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

Default ordering is descending order by -last_modified_time. You may also order results by start_time, end_time, name, duration, enrolment_start_time, enrolment_end_time, registration__enrolment_start_time, registration__enrolment_end_time, enrolment_start and enrolment_end. Descending order is denoted by adding - in front of the parameter, default order is ascending.

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 23636,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=35",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=33"
    },
    "data": [
        {
            "id": "kulke:66663",
            "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:104/?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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146922,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T09:12:49.566338Z",
                    "last_modified_time": "2025-06-30T09:12:49.566354Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771139.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146922/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T09:12:49.444631Z",
            "last_modified_time": "2025-07-16T11:12:49.051840Z",
            "date_published": null,
            "start_time": "2025-08-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Caisa Poetry Night – Runokuu",
                "sv": "Caisa Poetry Night – Runokuu",
                "en": "Caisa Poetry Night – Runokuu"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!",
                "sv": "Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!",
                "en": "Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night",
                "sv": "http://www.caisa.fi/sv/evenemang/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night",
                "en": "http://www.caisa.fi/en/events/event/43F711EBCA1299A52BE0F46FB3295647/Caisa_Poetry_Night"
            },
            "description": {
                "fi": "<p>Runokuu-kirjallisuusfestivaali tuo kansainvälisiä runoilijoita Caisan lavalle 21. elokuuta 2025!</p><p>Runokuu ilahduttaa runouden ystäviä Helsingissä ja sen lähialueilla joka vuosi aina elokuussa. Kansainvälinen runoilta Caisassa kokoaa yhteen elävän ja monimuotoisen joukon ääniä eri puolilta maailmaa. Illan esiintyjinä mm. irakilainen kirjailija Yaseen Ghaleb, kurdilainen runoilija Abdulla Pashew ja saksalainen kirjoittaja Simoné Goldschmidt-Lechner.</p><p>Kesto: 1,5 tuntia, ei väliaikaa<br>Ikäsuositus: 12+<br>Kieli: englanti</p><p>Vapaa pääsy</p>",
                "sv": "<p>Litteraturfestivalen Runokuu för med sig internationella poeter till Caisas scen den 21 augusti 2025!</p><p>Runokuu gläder poesiälskare i Helsingfors och dess närområden varje år i augusti. Den internationella poesikvällen på Caisa samlar en levande och mångsidig grupp röster från hela världen. Under kvällen uppträder bland annat den irakiska författaren Yaseen Ghaleb, den kurdiska poeten Abdulla Pashew och den tyska skribenten Simoné Goldschmidt-Lechner.</p><p>Längd: 1,5 timmar, utan paus<br>Åldersrekommendation: +12<br>Språk: engelska</p><p>Fritt inträde</p>",
                "en": "<p>Poetry Moon Literature Festival brings international poets to the stage of Caisa in 21st of August 2025.</p><p>Runokuu / Poetry Moon Literature Festival delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 21st of August 2025 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by Iraqi author Yaseen Ghaleb, Kurdish poet Abdulla Pashew and German writer Simoné Goldschmidt-Lechner.</p><p>Duration: 1.5 hours, no intermission<br>Age recommendation: 12+<br>Language: English</p><p>Organised by Runokuu / Poetry Moon festival. <br>Performers: Yaseen Ghaleb, Abdulla Pashew and Simoné Goldschmidt-Lechner.</p><p>In Collaboration with Cultural Centre Caisa and Goethe-Institut Finnland.</p><p>Free entry</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66663/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66606",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836",
                        "sv": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836",
                        "en": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836"
                    },
                    "description": null,
                    "price": {
                        "fi": "5–25 €",
                        "sv": "5–25 €",
                        "en": "5–25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146921,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T09:12:48.846319Z",
                    "last_modified_time": "2025-06-30T09:12:48.846334Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771228.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146921/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T09:12:48.728794Z",
            "last_modified_time": "2025-07-16T11:12:48.801598Z",
            "date_published": null,
            "start_time": "2025-08-20T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "OAF X Caisa: Homa Shokri - Ashla اشلاء",
                "sv": "OAF X Caisa: Homa Shokri - Ashla اشلاء",
                "en": "OAF X Caisa: Homa Shokri - Ashla اشلاء"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.",
                "sv": "Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.",
                "en": "The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_",
                "en": "http://www.caisa.fi/en/events/event/FDD8C52A5F9B6E7CC330B37CB86E356C/OAF_X_Caisa_Homa_Shokri_-_Ashla_"
            },
            "description": {
                "fi": "<p>Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.</p><p>Teos tutkii, miten piilevä väkivalta hajottaa kehoa – sekä fyysisesti että psyykkisesti – liikkeen ja kuvan kautta. Ashlassa fantasia, teknosta inspiroitunut liike ja kollektiivinen kehollisuus yhdistyvät vastustamaan huomaamattomia pelon ja kontrollin rakenteita.</p><p>Teos luodaan yhteistyössä työryhmän kanssa, johon kuuluvat: Homa Shokri (konsepti ja ohjaus), Christy MA (koreografia), Sonjis Laine, Sointu Saraste, Chen Nadler (esiintyjät), Logane Rime (äänisuunnittelu) ja Oskari Kaarne (valosuunnittelu).</p><p>Homa Shokri on helsinkiläinen esitys- ja videotaiteilija, jonka teokset käsittelevät poliittista väkivaltaa ja kehollisuutta. Shokrin teokset ammentavat usein henkilökohtaisista ja kollektiivisista sorron kokemuksista. Ohjaaja- ja dramaturgitaustaisen Shokrin taiteellinen praktiikka haastaa vallitsevat käsitykset pelosta ja väkivallasta, ja siitä miten ne liikuttavat kehoja.</p><p>*(Ashla اشلاء) on arabialaisperäinen sana, joka viittaa ruumiiseen, joka on revitty brutaalisti kappaleiksi.</p><p>Liput ovat myynnissä maksa mitä jaksat -periaatteella (5–25 €).<br>Ikäsuositus: +12</p><p>Lue lisää: https://outsiderart.fi/homa-shokri-ashla/</p>",
                "sv": "<p>Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.</p><p>Verket undersöker hur dolt våld bryter ner kroppen – både fysiskt och psykiskt – genom rörelse och bild. Ashla kombinerar fantasi, technoinspirerad rörelse och kollektiv kroppslighet för att göra motstånd till obemärkta strukturer av rädsla och kontroll.</p><p>Verket skapas i samarbete med en arbetsgrupp som består av: Homa Shokri (koncept och regi), Christy MA (koreografi), Sonjis Laine, Sointu Saraste, Chen Nadler (artister), Logane Rime (ljuddesign) och Oskari Kaarne (ljusdesign).</p><p>Homa Shokri är en preformance- och videokonstnär från Helsingfors vars verk behandlar politiskt våld och kroppslighet. Shokris verk bygger ofta på personliga och kollektiva erfarenheter av förtryck. Med en bakgrund inom regi och dramaturgi utmanar Shokri i sin konstnärliga praktik rådande föreställningar om rädsla och våld och hur de påverkar kropparna.</p><p>*(Ashla اشلاء) är ett arabiskt ord som syftar på en kropp som har blivit brutalt söndersliten.</p><p>Biljetterna säljs enligt principen ”betala vad du kan” (5–25 euro).<br>Åldersrekommendation: +12</p><p>Läs mer: https://outsiderart.fi/homa-shokri-ashla/</p>",
                "en": "<p>The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name.</p><p>The work investigates how hidden violence dismembers the body—physically and psychologically—through movement and image. Ashla integrates fantasy, techno-inspired movement and collective bodily scores as responses to unseen structures of fear and control.</p><p>This project is a collaborative and process-based work developed together with the following working group: Homa Shokri (concept and direction), Christy MA (choreography), Sonjis Laine, Sointu Saraste, Chen Nadler (performers), Alina Ostrogradskaya (sound design) and Oskari Kaarne (light design).</p><p>Homa Shokri is a Helsinki-based performance and video artist. Her work explores political violence and the uninhabitability of bodies, often drawing from personal and collective experiences of oppression. With a background in dramaturgy and directing, her practice challenges dominant narratives about how fear and violence mobilise bodies, engaging with themes such as necropolitics and resistance.</p><p>*(Ashla اشلاء), derived from Arabic word, refers to a body that has been brutally torn into pieces.</p><p>Tickets: pay what you can (5-25€)</p><p>Read more: https://outsiderart.fi/en/homa-shokri-ashla/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66607",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836",
                        "sv": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836",
                        "en": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108836"
                    },
                    "description": null,
                    "price": {
                        "fi": "5–25 €",
                        "sv": "5–25 €",
                        "en": "5–25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146920,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T09:12:48.432717Z",
                    "last_modified_time": "2025-06-30T09:12:48.432734Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771226.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146920/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T09:12:48.295173Z",
            "last_modified_time": "2025-07-16T11:12:48.691135Z",
            "date_published": null,
            "start_time": "2025-08-19T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "OAF X Caisa: Homa Shokri - Ashla اشلاء",
                "sv": "OAF X Caisa: Homa Shokri - Ashla اشلاء",
                "en": "OAF X Caisa: Homa Shokri - Ashla اشلاء"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.",
                "sv": "Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.",
                "en": "The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_",
                "en": "http://www.caisa.fi/en/events/event/672CAD3EC2D0520A30FF498F805D350A/OAF_X_Caisa_Homa_Shokri_-_Ashla_"
            },
            "description": {
                "fi": "<p>Esitystaiteilija Homa Shokri tuo Outsider Art Festivalille esityksen nimeltä Ashla: 00:00:01, joka pohjautuu samannimiseen, käynnissä olevaan projektiin.</p><p>Teos tutkii, miten piilevä väkivalta hajottaa kehoa – sekä fyysisesti että psyykkisesti – liikkeen ja kuvan kautta. Ashlassa fantasia, teknosta inspiroitunut liike ja kollektiivinen kehollisuus yhdistyvät vastustamaan huomaamattomia pelon ja kontrollin rakenteita.</p><p>Teos luodaan yhteistyössä työryhmän kanssa, johon kuuluvat: Homa Shokri (konsepti ja ohjaus), Christy MA (koreografia), Sonjis Laine, Sointu Saraste, Chen Nadler (esiintyjät), Logane Rime (äänisuunnittelu) ja Oskari Kaarne (valosuunnittelu).</p><p>Homa Shokri on helsinkiläinen esitys- ja videotaiteilija, jonka teokset käsittelevät poliittista väkivaltaa ja kehollisuutta. Shokrin teokset ammentavat usein henkilökohtaisista ja kollektiivisista sorron kokemuksista. Ohjaaja- ja dramaturgitaustaisen Shokrin taiteellinen praktiikka haastaa vallitsevat käsitykset pelosta ja väkivallasta, ja siitä miten ne liikuttavat kehoja.</p><p>*(Ashla اشلاء) on arabialaisperäinen sana, joka viittaa ruumiiseen, joka on revitty brutaalisti kappaleiksi.</p><p>Liput ovat myynnissä maksa mitä jaksat -periaatteella (5–25 €).<br>Ikäsuositus: +12</p><p>Lue lisää: https://outsiderart.fi/homa-shokri-ashla/</p>",
                "sv": "<p>Performancekonstnären Homa Shokri framför verket Ashla: 00:00:01 på Outsider Art Festival. Ashla grundar sig på ett pågående projekt med samma namn.</p><p>Verket undersöker hur dolt våld bryter ner kroppen – både fysiskt och psykiskt – genom rörelse och bild. Ashla kombinerar fantasi, technoinspirerad rörelse och kollektiv kroppslighet för att göra motstånd till obemärkta strukturer av rädsla och kontroll.</p><p>Verket skapas i samarbete med en arbetsgrupp som består av: Homa Shokri (koncept och regi), Christy MA (koreografi), Sonjis Laine, Sointu Saraste, Chen Nadler (artister), Logane Rime (ljuddesign) och Oskari Kaarne (ljusdesign).</p><p>Homa Shokri är en preformance- och videokonstnär från Helsingfors vars verk behandlar politiskt våld och kroppslighet. Shokris verk bygger ofta på personliga och kollektiva erfarenheter av förtryck. Med en bakgrund inom regi och dramaturgi utmanar Shokri i sin konstnärliga praktik rådande föreställningar om rädsla och våld och hur de påverkar kropparna.</p><p>*(Ashla اشلاء) är ett arabiskt ord som syftar på en kropp som har blivit brutalt söndersliten.</p><p>Biljetterna säljs enligt principen ”betala vad du kan” (5–25 euro).<br>Åldersrekommendation: +12</p><p>Läs mer: https://outsiderart.fi/homa-shokri-ashla/</p>",
                "en": "<p>The performance artist Homa Shokri presents Ashla, a performance developed from an ongoing choreographic performance project of the same name.</p><p>The work investigates how hidden violence dismembers the body—physically and psychologically—through movement and image. Ashla integrates fantasy, techno-inspired movement and collective bodily scores as responses to unseen structures of fear and control.</p><p>This project is a collaborative and process-based work developed together with the following working group: Homa Shokri (concept and direction), Christy MA (choreography), Sonjis Laine, Sointu Saraste, Chen Nadler (performers), Alina Ostrogradskaya (sound design) and Oskari Kaarne (light design).</p><p>Homa Shokri is a Helsinki-based performance and video artist. Her work explores political violence and the uninhabitability of bodies, often drawing from personal and collective experiences of oppression. With a background in dramaturgy and directing, her practice challenges dominant narratives about how fear and violence mobilise bodies, engaging with themes such as necropolitics and resistance.</p><p>*(Ashla اشلاء), derived from Arabic word, refers to a body that has been brutally torn into pieces.</p><p>Tickets: pay what you can (5-25€)</p><p>Read more: https://outsiderart.fi/en/homa-shokri-ashla/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66607/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66498",
            "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": 1001175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-12T08:13:57.907771Z",
                    "last_modified_time": "2025-06-12T08:13:57.907787Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774728.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1001175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-12T08:13:57.819850Z",
            "last_modified_time": "2025-07-16T11:12:48.034271Z",
            "date_published": null,
            "start_time": "2025-08-14T13:00:00Z",
            "end_time": "2025-08-15T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "OAF X Caisa: Ksenia Voy Kheninen & Zherbin - Plants",
                "sv": "OAF X Caisa: Ksenia Voy Kheninen & Zherbin - Plants",
                "en": "OAF X Caisa: Ksenia Voy Kheninen & Zherbin - Plants"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Taiteilijaduo Ksenia Voy Kheninen ja Zherbin esittävät Outsider Art Festivalin avajaisviikonloppuna installaation nimeltä Plants.",
                "sv": "Konstnärsduon Ksenia Voy Kheninen och Zherbin framför en installation kallad Plants under öppningshelgen på Outsider Art Festival.",
                "en": "The artist duo Ksenia Voy Kheninen ja Zherbin present their installation called Plants."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/D7EBD455F636B87AAD43FA146166BCFE/OAF_X_Caisa_Ksenia_Voy_Kheninen_Zherbin_-_Plants_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/D7EBD455F636B87AAD43FA146166BCFE/OAF_X_Caisa_Ksenia_Voy_Kheninen_Zherbin_-_Plants_",
                "en": "http://www.caisa.fi/en/events/event/D7EBD455F636B87AAD43FA146166BCFE/OAF_X_Caisa_Ksenia_Voy_Kheninen_Zherbin_-_Plants_"
            },
            "description": {
                "fi": "<p>Taiteilijaduo Ksenia Voy Kheninen ja Zherbin esittävät Outsider Art Festivalin avajaisviikonloppuna installaation nimeltä Plants.</p><p>Plants on keinotekoisesti ääntelevä puutarha; tekoälytaidetta ilman tekoälyä; savesta, ääniaalloista ja löydetyistä esineistä kasvavia vuorovaikutteisia sähkökasveja. Plants tutkii veistoksia kuolemattomina, keinotekoisina objekteina, jotka muistuttavat orgaanista maailmaa. Ne toimivat muistomerkkinä ajalle, jossa teknologia yrittää sinnikkäästi jäljitellä kuolevaisia.</p><p>Zherbin on karjalainen noiseartisti, muusikko ja soitinrakentaja, joka vaikuttaa monipuolisesti marginaalikulttuurin kentällä. Ksenia Voy Kheninen on taiteilija ja käsityöläinen, joka luo veistoksia yhdistelemällä savea, tekstiiliä, löydettyjä materiaaleja, esineitä, maalia, kirjontaa, metallia, lasia ja tekstiä.</p><p>Lue lisää: https://outsiderart.fi/kheninen-zherbin-plants/</p>",
                "sv": "<p>Konstnärsduon Ksenia Voy Kheninen och Zherbin framför en installation kallad Plants under öppningshelgen på Outsider Art Festival.</p><p>Plants är en artificiellt ljudande trädgård; AI-konst utan artificiell intelligens; interaktiva elektriska växter som träder fram ur lera, ljudvågor och upphittade föremål. Plants utforskar skulpturer som odödliga, artificiella objekt, som liknar den organiska världen. De fungerar som ett minnesmärke över den tid då tekniken ihärdigt försöker efterlikna de dödliga.</p><p>Zherbin är en karelsk noiseartist, musiker och instrumentmakare som har ett mångsidigt inflytande inom marginalkulturens fält. Ksenia Voy Kheninen är en konstnär och hantverkare som skapar skulpturer genom att kombinera lera, textil, upphittade material, föremål, färg, broderi, metall, glas och text.</p>",
                "en": "<p>The artist duo Ksenia Voy Kheninen ja Zherbin present their installation called Plants.</p><p>Plants is space turned into an artificial sounding garden; AI art without the AI; clay, sound waves, and found objects grown into interactive electronic plants. Plants explores sculptures as immortal artificial objects that are reminiscent of the organic world. They are commemorating the time when technology is relentlessly trying to replicate the mortals.</p><p>Zherbin is a Karelian noise artist, musician, builder of electronic and acoustic instruments, and a figure in the margins of culture. Ksenia Voy Kheninen is an artist and craftswoman who creates sculptures that combine clay, textile, found materials and objects, paint, embroidery, metal, glass and text.</p><p>Read more: https://outsiderart.fi/en/kheninen-zherbin-plants/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66498/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66320",
            "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:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 919061,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-02T10:13:48.717435Z",
                    "last_modified_time": "2025-06-02T10:13:48.717450Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773347.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/919061/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-02T10:13:48.597999Z",
            "last_modified_time": "2025-07-16T11:12:47.765642Z",
            "date_published": null,
            "start_time": "2025-08-14",
            "end_time": "2025-08-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,
            "name": {
                "fi": "OAF X Caisa: Tulevaisuus-näyttely",
                "sv": "OAF X Caisa: Framtidsexpo",
                "en": "OAF X Caisa: Future exhibition"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Miltä maailma näyttää outsider-taiteilijan näkökulmasta? Entä miltä se voisi näyttää?",
                "sv": "Hur ser världen ut ur en outsiderkonstnärs perspektiv? Och hur skulle den kunna se ut?",
                "en": "What does the world look like from the perspective of an outsider artist? And what could it look like?"
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B31BE69F0F041E1246E9A16446CF1A9D/OAF_X_Caisa_Tulevaisuus-nayttely_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B31BE69F0F041E1246E9A16446CF1A9D/OAF_X_Caisa_Framtidsexpo",
                "en": "http://www.caisa.fi/en/events/event/B31BE69F0F041E1246E9A16446CF1A9D/OAF_X_Caisa_Future_exhibition"
            },
            "description": {
                "fi": "<p>Miltä maailma näyttää outsider-taiteilijan näkökulmasta? Entä miltä se voisi näyttää?</p><p>Outsider Art Festivalin (OAF) kuvataiteen ohjelma vastaa näihin kysymyksiin levittäytymällä Kulttuurikeskus Caisan galleriaan ja Pertin Valinnan galleriaan 14.–23.8.2025. Ryhmänäyttelyt esittelevät monipuolisesti outsider-kuvataiteen kenttää.</p><p>Kulttuurikeskus Caisan Tulevaisuus -näyttely tarkastelee tulevaisuutta ulkopuolisen näkökulmasta. Tulevaisuuden mahdollisuuksia ja uhkia pohditaan niin minuuden kuin menneisyydenkin kautta.</p><p>Näyttelyt järjestetään Caisan Galleriassa ja Pertin Valinnan Galleriassa Hakaniemessä.</p><p>Caisan näyttelyssä ovat mukana ovat seuraavat taiteilijat: <b>Silja Tusa, Mika Mäkiranta, John Reis, Calvin Guillot</b> ja <b>Neea Haapala.</b><br> <br>Caisan Gallerian ryhmänäyttelyn kaikille avoimet avajaiset järjestetään Taiteiden yönä 14.8. klo 15.00-15.45, tervetuloa!</p><p>Näyttely on toteutettu inklusiivisesti kuratoiden. Näyttelyn suunnittelusta ja toteutuksesta vastaa kuvataiteen taiteellinen työryhmä, johon kuuluvat kuraattorit <b>Johanna Konttinen</b> ja <b>Jaana Miettinen</b> sekä mentorit <b>Christine Langinauer</b> ja <b>Jani Leinonen</b>.</p><p>Lue lisää: https://outsiderart.fi/oaf-x-caisa-taidenayttely/</p>",
                "sv": "<p>Hur ser världen ut ur en outsiderkonstnärs perspektiv? Och hur skulle den kunna se ut?</p><p>OAF:s program för bildkonst svarar på dessa frågor genom att sprida ut sig på Kulturcentret Caisas galleri och Pertin Valintas galleri 14–23.8.2025.<br>Grupputställningarna presenterar ett brett spektrum av outsiderkonst. Framtidsexpon på Kulturcentret Caisa iakttar framtiden ur en utomståendes perspektiv. Framtidens möjligheter och hot utforskas genom både det egna jaget och det förflutna.</p><p>Följande konstnärer deltar i Caisas utställning: Silja Tusa, Mika Mäkiranta, John Rice, Calvin Guillot och Neea Haapala.</p><p>Vernissagen av grupputställningen på Caisas Galleri, som är öppen för alla, äger rum på Konstens natt den 14 augusti kl. 15.00–15.45, välkommen!<br> <br>Utställningen är kuraterad på ett inkluderande sätt. Utställningen planeras och genomförs av en konstnärlig grupp för bildkonsten, som består av kuratorerna Johanna Konttinen och Jaana Miettinen samt mentorerna Christine Langinauer och Jani Leinonen.</p>",
                "en": "<p>What does the world look like from the perspective of an outsider artist? And what could it look like?</p><p>OAF’s visual arts programme will answer these questions by spreading out to the gallery of Cultural Centre Caisa and Pertti’s Choice Gallery from 14 to 23 August 2025.</p><p>The group exhibitions present a diverse range of outsider art. The Future exhibition at Cultural Centre Caisa explores the theme of the future from an outsider perspective. The exhibition explores the possibilities and threats of the future through both the self and the past.</p><p>The exhibition at Caisa features the following artists: Silja Tusa, Mika Mäkiranta, John Rice, Calvin Guillot and Neea Haapala.</p><p>The opening of the group exhibition at the gallery of Caisa is open to all and will take place on the Night of the Arts on 14 August at 15.00–15.45. We hope to see you there!</p><p>The exhibition has been curated inclusively. The planning and execution were carried out by the artistic team for visual arts, which includes curators Johanna Konttinen and Jaana Miettinen, and mentors Christine Langinauer and Jani Leinonen. <br> <br>Read more: https://outsiderart.fi/en/oaf-x-caisa-art-exhbition/</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66320/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65855",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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"
                },
                {
                    "@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": 745677,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-12T10:14:17.449892Z",
                    "last_modified_time": "2025-05-12T10:14:17.449914Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767687.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/745677/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-05-12T10:14:17.353484Z",
            "last_modified_time": "2025-07-16T11:12:46.479714Z",
            "date_published": null,
            "start_time": "2025-07-16T12:00:00Z",
            "end_time": "2025-07-16T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hulvaton aurinkomatka: pomppivat auringot – Kanneltalon Kesäkeidas",
                "sv": "En lustig solresa: studsande solar – Gamlasgårdens Sommaroas",
                "en": "The joyous journey of the suns: bouncing suns – Kanneltalo summer oasis"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "SIIRRETTY AULAAN! Tervetuloa nauttimaan työpajasta ja musiikista.",
                "sv": "Välkommen att njuta av workshop och musik.",
                "en": "Come and enjoy a workshop and some music."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/ABD002B353A4BBAD8E2AA025400CAC0A/Hulvaton_aurinkomatka_pomppivat_auringot_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/ABD002B353A4BBAD8E2AA025400CAC0A/En_lustig_solresa_studsande_solar_",
                "en": "http://www.kanneltalo.fi/en/events/event/ABD002B353A4BBAD8E2AA025400CAC0A/The_joyous_journey_of_the_suns_bouncing_suns_"
            },
            "description": {
                "fi": "<p>SIIRRETTY AULAAN! Tervetuloa nauttimaan työpajasta ja musiikista.</p><p>HUOMIO! Helteen vuoksi työpaja on siirretty Kanneltalon aulaan!</p><p>Voit loikoilla rantatuolilla, bongata värikkään jättidonitsin ja nauttia aurinkovarjojen loisteesta. Kokeile leikkisää kalastusta veikeällä lötköpötkö-ongella, nappaako kala? Keidas on katettu viherkasveilla ja värikkäillä kukilla. Sopii koko perheelle ja kaikenikäisille..</p><p><b>OHJELMA</p><p>Työpaja: Hulvaton aurinkomatka – pomppivat auringot </b><br>Hupsansaan työpajassa askarrellaan värikkäitä ja pomppivia aurinkoja. Loihditaan pomppivista auringoista pieni pallopeli, jolla voi harjoitella leikin kautta motorisia taitoja. Muotoillaan sulaneita jäätelötötteröitä ja valmistetaan värikkäistä kartioista veikeät kiikarit. Askartelussa hyödynnetään kierrätysmateriaaleja.</p><p><b>Musiikkia: DJ Koo-Blank </b><br>Dj Koo-Blank ilahduttaa monipuolisilla rytmeillään Sitratorilla. Torilla soi anatonialainen funk, afrikkalainen highlife, pop ja miksei iskelmäkin! Luvassa myös paljon muuta sielukasta musiikkia.</p><p><b>Kanneltalon Kesäkeidas Sitratorilla 11.6., 18.6., 16.7. ja 14.8.</b><br>Kesäkeidas johdattaa koko perheen monipuolisten ja riemukkaiden työpajojen äärelle.</p><p>Työpajoissa loihditaan kukkakoristeita, istutetaan yllätyskasveja ja pelataan juhannusbingoa. Loihdimme myös metsän materiaaleista asetelmia.</p><p>Vapaa pääsy</p>",
                "sv": "<p>Välkommen att njuta av workshop och musik.</p><p>OBS! På grund av värmen har workshoppen flyttat inomhus till Gamlasgården!</p><p>Du kan slappa i en solstol, hitta den färgglada jättedonitsen och njuta av de skinande parasollen. Prova på det lekfulla fisket med en poolnudel, nappar fisken? Oasen är täckt med grönväxter och färgglada blommor. Lämpar sig för hela familjen och personer i alla åldrar.</p><p><b>PROGRAM<br>Workshop: En lustig solresa – studsande solar </b><br>I Hupsansaas workshop pysslar vi färgglada och studsande solar. Vi skapar ett litet bollspel av de studsande solarna och tränar på motoriska färdigheter via leken. Vi formar glasstrutar som smält och tillverkar lustiga kikare av färgglada koner. Vi pysslar med återvunnet material.</p><p><b>Musik: DJ Koo-Blank </b><br>DJ Koo-Blank förtjusar åhörarna med sina mångsidiga rytmer på Cittertorget. På torget ljuder anatonisk funk, afrikansk highlife, pop och varför inte också schlager! Det bjuds också på mycket annan själfull musik!</p><p><b>Gamlasgårdens sommaroas på Sitratorget 11.6, 18.6, 16.7 och 14.8 </b><br>Sommaroasen leder hela familjen till mångsidiga och glada verkstäder.</p><p>Workshopparna bjuder på blomsterdekorationer, vi planterar överraskningsväxter och spelar midsommarbingo. Vi skapar också stilleben av skogens material.</p><p>Fritt inträde</p>",
                "en": "<p>Come and enjoy a workshop and some music.</p><p>ATTENTION! Due to the heat the workshop has moved Kanneltalo indoors!</p><p>You can lounge on deckchairs, spot the colourful giant donut and enjoy the sparkle of sunshades. Try playful fishing with a fun pool noodle fishing rod. Will you have any luck? The oasis is decorated with green plants and colourful flowers. Suitable for the entire family and people of all ages.</p><p><b>PROGRAMME</p><p>Workshop: The joyous journey of the suns – bouncing suns </b><br>The Hupsansaa workshop focuses on colourful and bouncing suns. Participants can create a small ball game by using bouncy suns to practise motor skills through play. You can also design melted ice cream cones and make fun binoculars out of colourful cones. Recycled materials are used for the crafts.</p><p><b>Music: DJ Koo-Blank </b><br>Enjoy the diverse beats of Dj Koo-Blank on Sitratori square. Listen to Anatolian funk, African highlife, pop and schlager on the square. The set also includes plenty of soulful tunes.</p><p><b>Kanneltalo Summer Oasis at Sitratori on June 11, June 18, July 16 and August 14.</b><br>The summer oasis (Kesäkeidas) introduces the entire family to versatile and enjoyable workshops.</p><p>The workshop activities include making flower decorations, planting mystery seeds and playing Midsummer bingo. We will also conjure up still lives made from forest materials.</p><p>Free entry</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65855/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66770",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?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: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:758/?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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-skidit-esittaeae-hattivattidisko-vuotalo-20369500/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1270153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-16T07:12:45.606491Z",
                    "last_modified_time": "2025-07-16T07:12:45.606504Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774773.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1270153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-16T07:12:45.541730Z",
            "last_modified_time": "2025-07-16T08:12:52.967922Z",
            "date_published": null,
            "start_time": "2025-10-11T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skidit Hattivattidisko",
                "sv": "Skidit Hattivattidisko",
                "en": "Children’s Saturday: Skidit Hattivattidisko️ – Hattifatteners Disco"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Skidit Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan.",
                "sv": "Skidit Hattivattidisko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld.",
                "en": "Skidit Hattifatteners Disco will take dancers on a musical journey into the mysterious mindscape of the strange Moomin characters, Hattifatteners."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/306F47536C160B66019C9049C46A9A32/Skidit_Hattivattidisko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/306F47536C160B66019C9049C46A9A32/Skidit_Hattivattidisko",
                "en": "http://www.vuotalo.fi/en/events/event/306F47536C160B66019C9049C46A9A32/Children_s_Saturday_Skidit_Hattivattidisko_Hattifatteners_Disco"
            },
            "description": {
                "fi": "<p>Skidit Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan.</p><p>Kyseessä on visuaalinen tarina, jossa elektroninen DJ-musiikki ja tanssinohjaaja kuljettavat bileisiin keskelle autiota saarta. Luvassa on surinaa ja pörinää Hattivattien mielenmaisemissa!</p><p>Muututaan ihanan sähköisiksi DJ-setin ja tanssiohjaajan kanssa. Tampataan yhdessä autiolla saarella ja koetaan iloinen sadetanssi ukkostaivaan alla. Säristään ja ollaan elossa kaikin voimin!<br>Hattivattidiskossa lähdetään musamatkalle hattivattien mystiseen mielenmaisemaan. Kyseessä on visuaalinen tarina, jossa elektroninen DJ-musiikki ja tanssinohjaaja kuljettavat bileisiin keskelle autiota saarta.</p><p>Diskon aikana koetaan äkillinen myrsky, Hattivattien säpinäsormet-koreografia, auringon esiintulo, sekä yhteinen hypnoottinen tanssi. Elektroninen musiikki luo latauksen, joka purkautuu hattivattien tyyliin sähköisenä tanssina ja biittinä, joka vie mukanaan.<br>“Mutta kun ne tulivat sähköisiksi, ne elivät, vihdoin, kaikin voimin ja suurin, kiihkein tuntein.”</p><p>Hattivattidiskon on ideoinut Skidit-kollektiivi, joka liputtaa leikkisän elämän puolesta. Kollektiivi toteuttaa supersuosittuja tapahtumia, kuten Skidit festarit, -risteilyt ja -diskot. Hattivattidiskon ensiesitys tehtiin yhteistyössä Helsingin kaupunginmuseo HAM:n kanssa.</p><p>Kesto: 40 min<br>Kohdeyleisö: Koko perheelle</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>",
                "sv": "<p>Skidit Hattivattidisko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld.</p><p>Det är en visuell berättelse där elektronisk DJ-musik och en dansinstruktör för oss till en fest mitt på en öde ö. Det kommer att bli surr och snurr i hattifnattarnas sinnen!</p><p>Låt oss bli härligt elektriska med elektroniska DJ-set och dansinstruktören. Vi stampar tillsammans på den öde ön och upplever en glädjefylld regndans under ett åskväder. Vi surrar och lever till fulla sinnen!</p><p>Hattifnattarnas disko tar oss med på en musikalisk resa in i hattifnattarnas mystiska tankevärld. Det är en visuell berättelse där elektronisk DJ-musik och en dansinstruktör för oss till en fest mitt på en öde ö.</p><p>Under diskot får du uppleva en plötslig storm, hattifnattarnas sprakande fingerkoreografi, se hur solen kommer fram och delta i en kollektiv hypnotisk dans. Den elektroniska musiken skapar en laddning som laddas ur i hattifnattarnas stil som elektronisk dans och en beat som förtrollar.</p><p>\"Men när de blev elektriska levde de, äntligen, av alla krafter och med stora häftiga känslor.\"</p><p>Hattivattidisko är skapat av kollektivet Skidit, som förespråkar en lekfull livsstil. Kollektivet arrangerar superpopulära evenemang som Skidit-festivaler, -kryssningar och -diskon. Hattivattidiskos första uppträdande gjordes i samarbete med Helsingfors stadsmuseum HAM.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 7–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">HÄR</a></u></p>",
                "en": "<p>Skidit Hattifatteners Disco will take dancers on a musical journey into the mysterious mindscape of the strange Moomin characters, Hattifatteners.</p><p>In this visual story, electronic music played by a DJ and a dance instructor transport you to a party in the middle of a deserted island. You’ll get to enjoy the hustle and bustle of Hattifatteners’ mindscape!</p><p>Let's get electrical with DJ set and a dance instructor. We waddle together on a deserted island and experience a jubilant rain dance under a thundering sky. Let's buzz and be alive with all our might!<br>In Hattifatteners’ Disco, you will embark on a musical journey into the mystical mindscape of the Hattifatteners. In this visual story, electronic music played by a DJ and a dance instructor transport you to a party in the middle of a deserted island.</p><p>During the disco, you will experience a sudden storm, the Hattifattener choreography of sparkling fingers, the re-emergence of the sun, and a collective hypnotic dance. The electronic music creates an electric charge. Like Hattifatteners, it finally discharges as an electronic dance and a beat that draws you in.</p><p>\"But when they became electric, they lived, at last, with all their might and with their greatest, most intense feelings.\"</p><p>The Hattifatteners’ Disco is the brainchild of the Skidit collective, which promotes playful life. The collective organises super-popular events such as Skidit festivals, cruises and discos. The first performance of the Hattifatteners Disco was created in collaboration with the Helsinki City Museum HAM.</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 7–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-helsingin-kaupunki-nuorisolippu-vuotalo-20470582/?affiliate=FSF#tab=\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66770/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66765",
            "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: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 1264196,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T12:12:48.781611Z",
                    "last_modified_time": "2025-07-15T12:12:48.781626Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775804.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1264196/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-15T12:12:48.716547Z",
            "last_modified_time": "2025-07-15T12:12:48.866654Z",
            "date_published": null,
            "start_time": "2025-08-07T13:00:00Z",
            "end_time": "2025-08-07T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla",
                "sv": "Skeittipakus sommarskateboardskola i Stoa",
                "en": "Skateboard Truck summer school at Stoa square"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.",
                "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.",
                "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/712591297CA659BFD336E6683E25289E/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/712591297CA659BFD336E6683E25289E/Skeittipakus_sommarskateboardskola_i_Stoa",
                "en": "http://www.stoa.fi/en/events/event/712591297CA659BFD336E6683E25289E/Skateboard_Truck_summer_school_at_Stoa_square"
            },
            "description": {
                "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>",
                "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>",
                "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66765/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66763",
            "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: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p28435/?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": 1264195,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T12:12:48.318878Z",
                    "last_modified_time": "2025-07-15T12:12:48.318892Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775295.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1264195/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-15T12:12:48.213712Z",
            "last_modified_time": "2025-07-15T12:12:48.436730Z",
            "date_published": null,
            "start_time": "2025-08-04T13:00:00Z",
            "end_time": "2025-08-04T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Skeittipakun kesäskeittikoulu Stoan aukiolla",
                "sv": "Skeittipakus sommarskateboardskola i Stoa",
                "en": "Skateboard Truck summer school at Stoa square"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.",
                "sv": "Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.",
                "en": "Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1986690410D76A8C805160481AAB2F16/Skeittipakun_kesaskeittikoulu_Stoan_aukiolla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1986690410D76A8C805160481AAB2F16/Skeittipakus_sommarskateboardskola_i_Stoa",
                "en": "http://www.stoa.fi/en/events/event/1986690410D76A8C805160481AAB2F16/Skateboard_Truck_summer_school_at_Stoa_square"
            },
            "description": {
                "fi": "<p>Tule tutustumaan skeittipakuun ja kokeilemaan miltä meno maistuu laudalla rullaillen! Skeittipakusta löytyy lainaksi rullalautoja ja suojavarusteita.</p><p>Opettajana toimii ammattiskeittaaja <b>Petrus Marttila</b>, joka on kiertänyt skeittipakun kanssa päiväkodeissa, kouluissa, nuorisotaloilla sekä eri tapahtumissa jo vuodesta 2012.</p><p>“Kesäskeittikoulussa käydään läpi skeittauksen perusteet, sitten siirrytään kokeilemaan ja keksimään sitä omaa tapaa toteuttaa itseään tällä monipuolisella välineellä.</p><p>Skeittauskulttuurissa on jonkin verran kirjoittamattomia sääntöjä, jotka koskevat esimerkiksi skeittipuistokäyttäytymistä, kuinka pitää yllä turvallista & hyvää ilmapiiriä, antaa muille tilaa, mutta ottaa sitä myös itse ja skeitata omalla vuorollaan jne. Skeittikursseilla avaammekin tätä kirjoittamatonta kulttuuria, tehden siitä helpommin lähestyttävää sekä turvallisempaa.</p><p>Alkeiden opettelun jälkeen rullalautailu antaa avaimet liikkua ja ulkoilla kavereiden kanssa paikkaa, aikaa tai rahatilannetta katsomatta.” opettaja Petrus Marttila kertoo.</p><p>Ei ennakkoilmoittautumista! Saavu paikalle joko oman skeitin ja suojien kanssa tai lainaa pakusta omalla vuorollasi välineet.</p><p>Kesto: 2 tuntia <br>Ikäsuositus: 7+<br>Kieli: monikielinen</p>",
                "sv": "<p>Kom och bekanta dig med skateboardpaketbilen ”Skeittipaku” och testa hur det är att rulla på brädan! Skeittipaku lånar ut skateboards och skyddsutrustning.</p><p>Lärare är yrkesskateboardare <b>Petrus Marttila</b>, som har åkt runt med paketbilen på daghem, skolor, ungdomsgårdar och olika evenemang sedan 2012.</p><p>”I sommarskateboardskolan går vi igenom grunderna i skateboarding, sen prövar vi på och hittar vårt sätt att förverkliga oss med detta mångsidiga redskap.”</p><p>Det finns en del oskrivna regler i skateboardkulturen, till exempel hur man beter sig i skateparker, hur man upprätthåller en trygg och god stämning, ger andra utrymme, men också tar utrymme själv och skateboardar på sin egen tur. På skateboardkurserna förklarar vi denna oskrivna kultur, gör den lättare att närma sig och tryggare.</p><p>Efter de första lärdomarna ger skateboard nycklarna att röra sig och med kompisar utomhus, oberoende av plats, tid eller penningsituation.” berättar Petrus Marttila.</p><p>Ingen förhandsanmälan krävs! Kom på plats med antingen egen skateboard och skydd eller låna utrustning från paketbilen då det är din tur.</p><p>Längd: 2 timmar<br>Åldersrekommendation: 7 +<br>Språk: flerspråkig</p>",
                "en": "<p>Come along and explore the Skateboard Truck and what it feels like to skate along! You can borrow skateboards and protective equipment from the Skateboard Truck.</p><p>The instructor at the truck will be professional skateboarder <b>Petrus Marttila</b>, who has toured daycare centres, schools, youth centres and various events with the Skateboard Truck since 2012.</p><p>“At the summer skateboarding school, participants will learn the basics of skateboarding and then move on to experimentation and inventing unique forms of self-expression using this versatile piece of equipment.</p><p>There are some unwritten rules in skateboarding culture concerning, for example, skate park behaviour, maintaining a safe and good atmosphere, giving others space, but also taking it for yourself and skating in your own turn, etc. During the skateboarding courses, we will explain these unwritten rules and make skateboarding more approachable and safe.</p><p>After learning the basics, skateboarding allows you to move around freely and spend time with your friends outdoors regardless of time, place or financial situation,” teacher Petrus Marttila says.</p><p>No advance registration required! Bring your own skateboard and protective equipment or borrow them from the truck.</p><p>Duration: 2 hours<br>Recommended age: 7+<br>Language: multilingual</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66763/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66761",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1263881,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-15T11:13:29.047221Z",
                    "last_modified_time": "2025-07-15T11:13:29.047234Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774915.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1263881/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-15T11:13:28.975963Z",
            "last_modified_time": "2025-07-15T11:13:29.136036Z",
            "date_published": null,
            "start_time": "2025-10-01T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)",
                "sv": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)",
                "en": "Keskiviikkokino: Toisenlaiset kesäkaverit (7)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Toisenlaiset kesäkaverit on hyvänmielen komedia rikoskaksikosta, jotka ovat toteuttaneet vuosisadan ryöstökeikan."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_",
                "en": "http://www.vuotalo.fi/en/events/event/1B5E52219B62B14C8715184F7AC4C47E/Keskiviikkokino_Toisenlaiset_kesakaverit_7_"
            },
            "description": {
                "fi": "<p>Toisenlaiset kesäkaverit on hyvänmielen komedia rikoskaksikosta, jotka ovat toteuttaneet vuosisadan ryöstökeikan.</p><p>Paetessaan poliisia he päätyvät yllättävään piilopaikkaan – vammaisten kesäleirille – tekeytyen asukkaaksi ja hänen ohjaajakseen. Tästä käynnistyy odottamaton ja silmiä avaava kokemus, joka muuttaa heidän elämänsä pysyvästi.<br>Elokuva nousi Ranskassa vuoden ilmiöksi, keräten yli 10 miljoonaa katsojaa.</p><p>Elokuva yhdistää huumorin ja koskettavat hetket. Toisenlaiset kesäkaverit saa katsojan nauramaan, liikuttumaan ja pohtimaan omaa suhtautumistaan erilaisuuteen. Upeat näyttelijäsuoritukset tuovat tarinaan aitoutta.</p><p>Elokuvan on ohjannut näyttelijä, koomikko ja ohjaaja Victor Artus Solaro aka Artus.</p><p>Ikäraja: 7<br>Kesto:100 min<br>Ohjaus: Artus<br>Kieli: ranska, tekstitykset: suomi, ruotsi</p><p>Vapaa pääsy</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66761/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66464",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 828179,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-22T12:12:42.577551Z",
                    "last_modified_time": "2025-05-22T12:12:42.577582Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765239.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/828179/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-22T12:12:42.524633Z",
            "last_modified_time": "2025-07-15T08:14:18.313990Z",
            "date_published": null,
            "start_time": "2025-07-16T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut",
                "sv": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut",
                "en": "Aino & Hajonneet - Huom! Esiintyjä vaihtunut"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Syyskuussa 2024 kolmannen albuminsa ”Enemmän kuin mitään muuta” julkaissut Aino & Hajonneet on 2020 perustettu yhtye, jonka musiikilliset juuret ovat melodisen suomipunkin ja powerpopin risteyksessä."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut",
                "en": "http://www.espanlava.fi/en/events/event/BFDC36D49B3F3888E92985C74C874D6A/Aino_Hajonneet_-_Huom_Esiintyja_vaihtunut"
            },
            "description": {
                "fi": "<p>Syyskuussa 2024 kolmannen albuminsa ”Enemmän kuin mitään muuta” julkaissut Aino & Hajonneet on 2020 perustettu yhtye, jonka musiikilliset juuret ovat melodisen suomipunkin ja powerpopin risteyksessä.</p><p>Yhtye on kerännyt mainetta erittäin energisenä lavabändinä. Aino & Hajonneet oli Indie Awards 2025 -gaalassa ehdolla sarjassa ”Vuoden rock”. 5.9. yhtyeeltä ilmestyy tupla-livealbumi \"Livee & Lovee\"</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66464/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66759",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 1256678,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T12:22:35.448912Z",
                    "last_modified_time": "2025-07-14T12:22:35.448927Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771178.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1256678/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-14T12:22:35.288204Z",
            "last_modified_time": "2025-07-14T12:22:35.651593Z",
            "date_published": null,
            "start_time": "2025-09-26T07:00:00Z",
            "end_time": "2025-09-26T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Vauvan päivä – Vauvoissa on ilo",
                "sv": "Babydagen",
                "en": "Baby’s Day"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 26.9.2025 aamupäivällä ennen päiväuniaikaa.",
                "sv": "Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 26.9.2025 på förmiddagen innan det är dags att sova middag.",
                "en": "The national Baby’s Day event takes over Vuotalo on Fri, 26 September 2025 in the morning before naptime."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/391525A73883568E09CA7175C9F883A5/Vauvan_paiva",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/391525A73883568E09CA7175C9F883A5/Babydagen",
                "en": "http://www.vuotalo.fi/en/events/event/391525A73883568E09CA7175C9F883A5/Baby_s_Day"
            },
            "description": {
                "fi": "<p>Valtakunnallinen Vauvan päivä -tapahtuma valtaa Vuotalon pe 26.9.2025 aamupäivällä ennen päiväuniaikaa.</p><p>Vauvan päivä toteutetaan yhteistyössä mm. neuvolan, seurakunnan, lapsiperheiden sosiaaliohjauksen, päivähoidon, Mannerheimin lastensuojeluliiton, alueen Perhetalo Kajuutan ja leikkipuistojen kanssa. Ohjelmaa vauvoille ja heidän aikuisilleen Vuotalossa klo 10–12.</p><p>Kieli: suomi<br>Ikäsuositus: vauvat ja vauvaperheet<br>Vapaa pääsy</p>",
                "sv": "<p>Det nationella evenemanget Babydagen erövrar Nordhuset fredagen 26.9.2025 på förmiddagen innan det är dags att sova middag.</p><p>Babydagen genomförs i samarbete med bland annat barnrådgivningen, församlingen, socialhandledningen för barnfamiljer, dagvården, Mannerheims barnskyddsförbund, områdets familjehus Kajutan och lekparkerna. Program i Nordhusets aula kl. 10–12.</p>",
                "en": "<p>The national Baby’s Day event takes over Vuotalo on Fri, 26 September 2025 in the morning before naptime.</p><p>The Baby’s Day event is organised in cooperation with the child health clinic, the parish, social counselling for families with children, daycare, the Mannerheim League for Child Welfare, the local family house Kajuutta and play parks, among others. The programme takes place in the lobby of Vuotalo from 10.00 to 12.00.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66759/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66668",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "sv": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/",
                        "en": "https://www.lippu.fi/event/lastenmusiikkiyhtye-sukkalukko-vuotalo-20369505/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1148243,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T13:12:57.781085Z",
                    "last_modified_time": "2025-06-30T13:12:57.781102Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771194.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1148243/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-06-30T13:12:57.673701Z",
            "last_modified_time": "2025-07-14T12:22:32.501053Z",
            "date_published": null,
            "start_time": "2025-09-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sukkalukko",
                "sv": "Sukkalukko",
                "en": "Sukkalukko"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”",
                "sv": "”Vi gör musik om världens bästa typer, alltså barn!”",
                "en": "“We make music about the best people on earth – children!”"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko",
                "en": "http://www.vuotalo.fi/en/events/event/7EB567A656CE9DFDC52449523C8A9350/Sukkalukko"
            },
            "description": {
                "fi": "<p>“Me tehdään musaa maailman parhaimmista tyypeistä eli lapsista!”</p><p>Sukkalukko on keväällä 2023 perustettu lastenmusiikkiyhtye. Yhtyeen muodostavat Susanna Volanto ja Tomi Rajala. Tomi tunnetaan parhaiten The Bätmäns -yhtyeestä ja Susanna on monille tuttu television lastenohjelmista. Musiikkitaustaa molemmilta löytyy monista eri yhteyksistä sekä kokemusta lastenkulttuurin parissa työskentelystä monessa eri muodossa. Sukkalukon bändikeikoilla on lisäksi mukana rumpuja paukuttelemassa Janne Mathlin sekä basson varressa Kalle Ylitalo.</p><p>Sukkalukko on julkaissut viisi singleä ja kesäkuussa ilmestyi yhtyeen debyyttialbumi 10/10. Sukkalukon useampi biisi on jo sujahtanut Spotifyn viralliselle 'Parasta lastenmusiikkia' -soittolistalle. Sukkalukko oli myös ehdolla vuoden 2024 Jellonagaalassa Vuoden tulokkaaksi.</p><p>Musiikillisesti Sukkalukon kappaleet ovat vauhdikasta pop-musiikkia. Sanoituksiin on löytynyt inspiraatio lapsiperheiden päivittäisestä elämästä; pihaleikeistä, ystävistä, nuhapöpöistä ja vaikkapa sukista! Kappaleet pursuavat iloa sekä riemua ja ovat sokerisen tarttuvia. Vanhemmille kappaleet tarjoavat vertaistukea hektisen perhe-elämän keskellä. Sukkalukon keikalla ei tarvitse istuskella, vaan jokainen saa hyppiä, laulaa ja hassutella mukana. Sukkalukot tiukalle - se on menoa nyt!</p>",
                "sv": "<p>”Vi gör musik om världens bästa typer, alltså barn!”</p><p>Sukkalukko är en barnmusikorkester som grundades våren 2023. Orkestern består av Susanna Volanto och Tomi Rajala. Tomi är känd från gruppen The Bätmäns och Susanna från barnprogram på tv. Båda har en musikalisk bakgrund från många olika sammanhang och erfarenhet av att arbeta med barnkultur i olika former.</p><p>Sukkalukko har gett ut fyra singlar, och tre av dem har tagit sig in på Spotifys officiella spellista för den bästa barnmusiken. Sukkalukko var också nominerad som årets nykomling på Jellonagalan 2024. Och i juni utlovas feststämning när Sukkalukko ger ut sitt första album!</p><p>Musikaliskt representerar Sukkalukkos låtar en fartfylld popmusik. Texterna är inspirerade av barnfamiljens vardag: lekar på gården, vänner, snuva och kanske strumpor! Låtarna sprudlar av glädje och är väldigt medryckande. För föräldrarna kan låtarna vara ett stöd i det hektiska familjelivet. På Sukkalukkos spelningar behöver man inte sitta stilla, utan alla får hoppa, sjunga och busa till musiken. Sukkalukko är här – nu kör vi!</p>",
                "en": "<p>“We make music about the best people on earth – children!”</p><p>Sukkalukko is a children’s music group founded in spring 2023. The band consists of Susanna Volanto and Tomi Rajala. Tom is best known for The Bätmäns and Susanna is known for her appearances on children's programmes on television. Both have diverse musical backgrounds and experience in working with children’s culture.</p><p>Sukkalukko have released four singles, and three of them have shot to the official 'Parasta lastenmusiikkia' (best children’s music) playlist on Spotify. Sukkalukko was also nominated in the 2024 Jellonagaala as newcomer of the year (Vuoden tulokas). June spells celebration for the group, as they release their debut album!</p><p>Musically, Sukkalukko’s songs are energetic pop. The lyrics have been inspired by daily life in families with children: playing outside, friends, runny noses and socks, why not! The songs brim with joy and delight and are sweet and catchy. Parents will find peer support in the songs in the middle of hectic family life. You are not supposed to sit down during a Sukkalukko performance; instead, you are encouraged to jump, sing and play along. Hold on to your socks – here we go!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66668/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66751",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255415,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T08:14:35.841775Z",
                    "last_modified_time": "2025-07-14T08:14:35.841793Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764482.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255415/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T08:14:35.717101Z",
            "last_modified_time": "2025-07-14T08:14:35.983002Z",
            "date_published": null,
            "start_time": "2025-12-12T12:00:00Z",
            "end_time": "2025-12-12T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lucia-kulkue",
                "sv": "Lucia-kulkue",
                "en": "Lucia-kulkue"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue",
                "en": "http://www.malmitalo.fi/en/events/event/93225A4648841E7B0354B0CBC4463D26/Lucia-kulkue"
            },
            "description": {
                "fi": "<p>Kesto: 1 tunti<br>Vapaa pääsy!<br>Yhteistyö: Aula, kokoushuone 3</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66751/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66098",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1255101,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-14T07:14:26.183131Z",
                    "last_modified_time": "2025-07-14T07:14:26.183147Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-14T07:14:26.071859Z",
            "last_modified_time": "2025-07-14T07:14:26.333367Z",
            "date_published": null,
            "start_time": "2025-12-06T13:00:00Z",
            "end_time": "2025-12-06T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Itsenäisyyspäivän juhla",
                "sv": "Itsenäisyyspäivän juhla",
                "en": "Itsenäisyyspäivän juhla"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla",
                "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ohjelmassa on salitapahtumaa ja kahvitarjoilu sekä kaunis Maamme-laulun esitys.</p><p>Lisätietoa ohjelmasta tulossa loppuvuodesta 2025.</p><p>Kesto: 1 tunti<br>Vapaa pääsy!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?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:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 986339,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-10T13:14:02.402423Z",
                    "last_modified_time": "2025-06-10T13:14:02.402439Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767630.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/986339/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-10T13:14:02.303430Z",
            "last_modified_time": "2025-07-11T13:14:56.738895Z",
            "date_published": null,
            "start_time": "2025-08-28T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Pelko – Open Stage / Itämeripäivä",
                "sv": "Pelko – Open Stage / Östersjödagen",
                "en": "Pelko – Open Stage / Baltic Sea Day"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Suomi-indien aallokossa jo vuosikymmenen uiskennellut Pelko on tunnettu intensiivisistä klubikeikoistaan.",
                "sv": "Pelko, som redan i ett decennium flutit omkring i Finlands indievågor, är känd för sina intensiva klubbspelningar.",
                "en": "Pelko have been navigating the depths of Finnish indie music for a decade and are known for their intensive club gigs."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/558EC20E0E9A771152F53DC2F556634A/Pelko",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/558EC20E0E9A771152F53DC2F556634A/Pelko",
                "en": "http://www.espanlava.fi/en/events/event/558EC20E0E9A771152F53DC2F556634A/Pelko"
            },
            "description": {
                "fi": "<p>Suomi-indien aallokossa jo vuosikymmenen uiskennellut Pelko on tunnettu intensiivisistä klubikeikoistaan.</p><p>Nyt show nähdään Itämeripäivän kunniaksi Espan lavalla Suomenlahden välittömässä läheisyydessä!</p><p>Yhtyeen uusin albumi Punainen kirja (2025) tutkii ja ihmettelee ihmisenä olemista sukupuuttojen ja metsäpalojen keskellä.</p><p>Pelko julkaisi uuden musiikin ohessa myös ensimmäisen kirjansa. Kirja syntyi luonnosten pohjalta, jotka kappaleiden kirjoittaja Niilo Tenkanen kuvitti Suomesta kadonneista eläinlajeista levyntekoprosessin aikana.</p><p>Uudistuneen kokoonpanon myötä sovituksiin on tuotu elektronisia äänivyöryjä ja sinfonisia maisemia jo edellisellä Sukupuuttoaalto-levyllä (2019) kuultujen kitaravallien ja tarttuvien melodioiden lisäksi.</p><p>Tervetuloa Esplanadille kokemaan katarttisen kiihkeä Pelko! Ja tervetuloa takaisin Itämereen, atlantinsampi!</p><p>Pelko:<br>Saara Kemppainen – laulu, basso<br>Niilo Tenkanen – kitara, laulu<br>Kristian Autio – kitara, koskettimet<br>Niilo Suihko – rummut</p>",
                "sv": "<p>Pelko, som redan i ett decennium flutit omkring i Finlands indievågor, är känd för sina intensiva klubbspelningar.</p><p>Nu ser vi showen till Östersjödagens ära på Esplanadestraden direkt invid Finska viken.</p><p>Gruppens senaste album Punainen kirja (2025) utforskar och funderar på hur det är att vara människa bland utrotningshotade arter och skogsbränder.</p><p>Pelko gav vid sidan av den nya musiken också ut sin första bok. Boken kom till utifrån skisser som låtskrivaren Niilo Tenkanen under skivskapandeprocessen tecknade av de djurarter som försvunnit från Finland.</p><p>I och med den förnyade sammansättningen har bandet tillfört elektroniska jordskred och symfoniska landskap i arrangemanget, utöver de gitarrvallar och medryckande melodier som hördes redan på den tidigare skivan Sukupuuttoaalto (2019).<br> <br>Välkommen till Esplanaden för att uppleva den katartiskt intensiva Pelko! Och välkommen tillbaka till Östersjön, atlantstören!</p><p>Pelko:<br>Saara Kemppainen – sång, basgitarr<br>Niilo Tenkanen – gitarr, sång<br>Kristian Autio – gitarr, keyboard<br>Niilo Suihko – trummor</p>",
                "en": "<p>Pelko have been navigating the depths of Finnish indie music for a decade and are known for their intensive club gigs.</p><p>Now, to celebrate Baltic Sea Day, the show will be performed on Espa Stage, right next to the Baltic Sea!</p><p>The most recent album of the band, Punainen kirja (2025), studies and explores the state of being human in the middle of extinctions and forest fires.</p><p>In addition to new music, Pelko also published their first book. The book was born from sketches of animal species that have disappeared from Finland that the band’s songwriter, Niilo Tenkanen, made during the album’s creation process.</p><p>With the changed composition of the band, the song arrangements have integrated electronic sounds and symphonic soundscapes in addition to the guitar walls and catchy melodies familiar from the band’s previous album, Sukupuuttoaalto (2019).</p><p>Welcome to Esplanadi to experience the cathartic, intensive Pelko! And welcome back to the Baltic Sea, Atlantic sturgeon!</p><p>Pelko:<br>Saara Kemppainen – vocals, bass<br>Niilo Tenkanen – guitar, vocals<br>Kristian Autio – guitar, keyboard<br>Niilo Suihko – drums</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66414",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1232725,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-11T07:14:27.360443Z",
                    "last_modified_time": "2025-07-11T07:14:27.360460Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774127.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1232725/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-11T07:14:27.215736Z",
            "last_modified_time": "2025-07-11T07:14:27.529278Z",
            "date_published": null,
            "start_time": "2025-11-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Yleisön suosikit: Maria (12)",
                "sv": "Yleisön suosikit: Maria (12)",
                "en": "Yleisön suosikit: Maria (12)"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_",
                "en": "http://www.malmitalo.fi/en/events/event/03760C14C9F9879F243AED915FE22D7A/Yleison_suosikit_Maria_12_"
            },
            "description": {
                "fi": "<p>Venetsian elokuvafestivaalilla lähes kymmenminuuttiset aplodit saaneen Maria-elokuvan on ohjannut palkittu Pablo Larraín, joka jatkaa elokuvallaan tunnettujen naisten kohtaloiden kuvaamista, elokuvien Spencer ja Jackie jälkeen.</p><p>Oopperalaulaja Maria Callasista kertovan elokuvan pääosassa loistaa parhaan naispääosan Oscar-veikkauksiin jo noussut 49-vuotias Angelina Jolie, joka tekee täten näyttävän paluun valkokankaille.</p><p>1970-luvulla myrskyisän elämän elänyt näyttämöiden kuningatar Maria Callas viettää tietämättään Pariisissa viimeisiä vuosiaan. Sydämensä useasti rakkauden tähden särkenyt Callas menehtyi vain 53-vuotiaana.</p><p>Ikäraja: 12<br>Kesto: 2 t 3 min<br>Kieli: englanti, tekstitys suomi</p><p>Vapaa pääsy</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66414/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66410",
            "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:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "sv": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/",
                        "en": "https://www.lippu.fi/event/henna-ja-supersankarit-malmitalo-20285453/"
                    },
                    "description": null,
                    "price": {
                        "fi": "8€",
                        "sv": "8€",
                        "en": "8€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227260,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.296490Z",
                    "last_modified_time": "2025-07-10T14:13:03.296502Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774102.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227260/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-10T14:13:03.245419Z",
            "last_modified_time": "2025-07-10T14:13:03.540990Z",
            "date_published": null,
            "start_time": "2025-11-22T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Henna ja Supersankarit",
                "sv": "Henna ja Supersankarit",
                "en": "Henna ja Supersankarit"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit",
                "en": "http://www.malmitalo.fi/en/events/event/CBE8877B5B813BD9810E44D22848B06F/Henna_ja_Supersankarit"
            },
            "description": {
                "fi": "<p>Suuren suosion saavuttanut lastenmusiikkiyhtye Henna ja Supersankarit esittää uutta rytmimusiikkipohjaista lastenmusiikkia!</p><p>Hennan ja Supersankareiden musiikki innostaa kaikenikäiset kuulijat lauluun, tanssiin, leikkiin ja nauruun! Konserteissa on voimassa voimakas Hyväntuulen varoitus!</p><p>Riemukkaassa Malmitalon lastenkonsertissa matkustetaan Ystävyyden saarelle, jossa juhlitaan ystävyyttä sekä ihanaa luontoa.</p><p>Yhtyeen kappaleita pääsee joraamaan mm. Spotifystä sekä Henna ja Supersankareiden Youtube-kanavalta, joka on kerännyt lyhyessä ajassa yli 100 000 katselukertaa!  <br>Henna ja Supersankareiden lauluja on voinut kuulla Pikku Kakkosen televisioiduissa lastenkonserteissa sekä Yle Areenasta löytyvistä musiikkipodcasteista!</p><p>Yhtye on ollut ehdolla Lastenmusiikin Jellonagaalassa useissa kategorioissa: Vuoden Tulokas, Vuoden Yhtye, Vuoden Lastenmusiikkialbumi, Vuoden Lastenlaulu ja Vuoden Lastenmusiikintekijä!</p><p><b>Malmitalolla lavalle nousevat:</b><br>Henna-Maija Kuki, laulu ja harmonikka <br>Susanna Lukkarinen, taustalaulu ja piano  <br>Alina Kivivuori, taustalaulu ja viulu <br>Teemu Keränen, basso <br>Teemu Eronen, rummut</p><p>Kesto: n. 35 min</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66410/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66073",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "sv": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/",
                        "en": "https://www.lippu.fi/event/topi-saha-ylva-haru-malmitalo-20296422/"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,90 € / 24,80 €",
                        "sv": "29,90 € / 24,80 €",
                        "en": "29,90 € / 24,80 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1227259,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T14:13:03.082209Z",
                    "last_modified_time": "2025-07-10T14:13:03.082221Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1227259/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T14:13:03.009351Z",
            "last_modified_time": "2025-07-10T14:13:03.167545Z",
            "date_published": null,
            "start_time": "2025-11-21T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Topi Saha & Ylva Haru: Kipinöitä II",
                "sv": "Topi Saha & Ylva Haru: Kipinöitä II",
                "en": "Topi Saha & Ylva Haru: Kipinöitä II"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_",
                "en": "http://www.malmitalo.fi/en/events/event/7113976A0E17D1ECD1455406B9CE1CF5/Topi_Saha_Ylva_Haru_Kipinoita_II_"
            },
            "description": {
                "fi": "<p>Arvostetut lauluntekijät Topi Saha ja Ylva Haru yhdistävät jälleen voimansa intiimin ja ainutlaatuisen Kipinöitä II -yhteiskiertueen merkeissä.</p><p>Tarina saa jatkoa viiden vuoden takaisesta Kipinöitä-konseptista, jossa taiteilijat esittivät yhdessä toistensa kappaleita duettomuodossa.</p><p>Tulevilla keikoilla kuullaan taiteilijoiden omaa tuotantoa – uutta ja vanhaa – yksin ja yhdessä: illan aikana on luvassa niin uudet soolokattaukset kuin myöskin duettomuotoinen yhteissetti, jossa lauluntekijät esittävät vanhojen suosikkien lisäksi ennen kuulemattomia lauluja tulevilta albumeiltaan.</p><p>”Ylva Haru on paitsi lempilauluntekijäni myös rakas ystäväni. Muutama vuosi sitten aloitimme yhteiskiertueen, jonka pandemia harmillisesti katkaisi. Tuolloin löysimme nopeasti yhteisen sävelen, ja on ihanaa viimein jatkaa siitä mihin jäimme”, kertoo Topi Saha.</p><p>”On suuri ilo saada jälleen soida rakkaan ja lahjakkaan ystäväni kanssa! Topi on kuin sielunveli, niin ihmisenä kuin myös soitannollisesti ja laulullisesti. Tuntuu antoisalta ja luontevalta jatkaa kappaleiden versioimista yhdessä”, kommentoi Ylva Haru.</p><p>Topi Sahan musiikkia on kuvailtu haikeaksi, kaihoisaksi ja surumieliseksi. Omasta mielestään hän on väärinymmärretty humoristi. Sahan odotettu viides sooloalbumi <i>Öitä</i> ilmestyi tammikuussa 2025.</p><p>Vahvoista melodioista ja pohtivista, runomaisista teksteistä kiitelty Ylva Haru työstää parhaillaan uutta albumia. Intiimeillä keikoilla on mahdollisuus päästä syvemmälle herkän ytimen ääreen, kun laulut soivat kaikkein riisutuimmassa muodossa.</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66073/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66123",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/",
                        "sv": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/",
                        "en": "https://www.lippu.fi/event/dr-helander-third-ward-wjantso-jokelin-malmitalo-20206198/"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,80 €/ 20,30 €",
                        "sv": "24,80 €/ 20,30 €",
                        "en": "24,80 €/ 20,30 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1226611,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-10T12:14:24.291735Z",
                    "last_modified_time": "2025-07-10T12:14:24.291755Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772215.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1226611/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-10T12:14:24.163352Z",
            "last_modified_time": "2025-07-10T14:13:02.776012Z",
            "date_published": null,
            "start_time": "2025-11-18T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Dr. Helander & Third Ward feat. Jantso Jokelin",
                "sv": "Dr. Helander & Third Ward feat. Jantso Jokelin",
                "en": "Dr. Helander & Third Ward feat. Jantso Jokelin"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Malmitalon konsertin aiheena yhtyeen käsillä oleva neljäs kiekko, joka luonnollisesti siivittää kohti rytmikästä iltaa!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin",
                "en": "http://www.malmitalo.fi/en/events/event/6AFFA12C6B8FCACBA00BA50B7F3D71D7/Dr_Helander_Third_Ward_feat_Jantso_Jokelin"
            },
            "description": {
                "fi": "<p>Malmitalon konsertin aiheena yhtyeen käsillä oleva neljäs kiekko, joka luonnollisesti siivittää kohti rytmikästä iltaa!</p><p>Vuodesta 2017 saakka samalla kokoonpanolla Helander-Kuloniemi-Leppänen toiminut Dr. Helander & Third Ward on julkaissut albumeita tasaiseen tahtiin. Bluesistahan tässä on edelleen kyse – musiikista, jonka ei tarvitse valtavasti uudistua, mutta joka kestää uuden ja vanhan, oman ja lainatun, ja muhiessaan vain paranee näiden veteraanimuusikoiden käsittelyssä. Mukana albumeilla on vuosien varrella ollut useita nimekkäitä vierailijoita, suurimpana heistä Grammy-voittaja ja bluesin legendanimiin luettava huuliharpun mestari Charlie Musselwhite.</p><p>Tällä kertaa yhtye on tehnyt yhteistyötä nuoremman polven monipuolisen ja mestarillisen muusikon, tuoreen European Blues Challengen erikoispalkinnon voittaja Jantso Jokelinin kanssa, joka esiintyy konsertin aluksi omalla soolosetillään ja vierailee lisäksi Third Wardin osuudessa. Jokelinin sooloalbumi Spark of Luck on ollut kansainvälinen arvostelumenestys.</p><p>Dr. Helander kitara, laulu<br>Esa Kuloniemi basso, kitara, laulu<br>Leevi Leppänen rummut, laulu<br>Jantso Jokelin kitara, laulu, huuliharppu</p><p>Kesto: 1 t 45 min, sis. 30 min väliajan</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}