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

{
    "meta": {
        "count": 10298,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=33&publisher_ancestor=ahjo%3A00001",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=31&publisher_ancestor=ahjo%3A00001"
    },
    "data": [
        {
            "id": "kulke:66441",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/20286578"
                    },
                    "description": null,
                    "price": {
                        "fi": "42,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 926401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-03T07:13:50.660388Z",
                    "last_modified_time": "2025-06-03T07:13:50.660410Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774210.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/926401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-03T07:13:50.536736Z",
            "last_modified_time": "2025-06-27T11:12:24.000593Z",
            "date_published": null,
            "start_time": "2025-11-19T17: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Dex Viihde Oy"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/630CFCB400828CCB49311F3A84AC95C3/Mokoma_Akustisena"
            },
            "short_description": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p>Suomenkielisen metallimusiikin pioneeriyhtye <b>Mokoma</b> suuntaa syksyllä harvinaiselle akustiselle kiertueelle. Pitkällä urallaan kaksi akustista albumia (Varjopuoli, 2011 ja Laulurovio, 2016) julkaissut bändi nähdään marraskuussa yhteensä kahdeksalla paikkakunnalla. Luvassa on levyiltä tuttujen kappaleiden lisäksi myös uusia akustisia sovituksia.</p><p><i>- Akkarikeikkoja onkin ollut ikävä! Metallisen äänenpaineen vastapainoksi on ainoastaan järkevää tarjoilla välillä vähän rauhallisempaa tunnelmointia. Setissä tulee olemaan levyiltä tuttuja akustisia tulkintoja, mutta sovituspajalla on huhkittu myös uusien biisien parissa. Akustisilla keikoilla itsensä joutuu haastamaan aivan erilailla kuin fyysisyyttä tihkuvilla sähkökeikoilla. Jokainen ääni kuuluu, oli sitten oikea tai väärä, meluvallista ei saa suojaa, joten herkillähän tässä hommassa mennään,</i> yhtyeen rumpali <b>Janne Hyrkäs</b> kertoo.</p><p>Mokoma saa tuekseen kiertueelle haitarivirtuoosi <b>Netta Skogin</b>, joka on tuttu myös bändin aiemmilta akustisilta kiertueilta sekä Laulurovio -levyltä.</p><p><i>- Jos keikkoja on ollut ikävä, niin vähintään yhtä kova ikävä on ollut Netan kanssa soittamista! Netta luo biiseihin ihania täydentäviä äänikudelmia taidokkaalla soitolla, laululla ja läsnäolollaan,</i>  Hyrkäs jatkaa.</p><p>Kesto n. 2 h, sisältää väliajan<br> <br>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>"
            },
            "name": {
                "fi": "Mokoma Akustisena"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66441/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65179",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/3791400",
                        "sv": "https://www.lippu.fi/eventseries/3791400",
                        "en": "https://www.lippu.fi/eventseries/3791400"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,90-55,60 €",
                        "sv": "28,90-55,60 €",
                        "en": "28,90-55,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153305,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-09T11:13:20.741861Z",
                    "last_modified_time": "2024-12-09T11:13:20.741878Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764229.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153305/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-05T14:14:13.525989Z",
            "last_modified_time": "2025-06-26T22:13:06.986596Z",
            "date_published": null,
            "start_time": "2025-05-04T16: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "SIA Unicorn Production",
                "sv": "SIA Unicorn Production",
                "en": "SIA Unicorn Production"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E7D81B0CE297FF4946AC22AE05C1E05E/Juhla_Pariisissa_-komedia",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/E7D81B0CE297FF4946AC22AE05C1E05E/Juhla_Pariisissa_-komedia",
                "en": "http://www.savoyteatteri.fi/en/events/event/E7D81B0CE297FF4946AC22AE05C1E05E/Juhla_Pariisissa_-komedia"
            },
            "short_description": null,
            "location_extra_info": null,
            "description": {
                "fi": "<p><b>\"The Banquet in Paris\"</b> on romanttinen komedia, joka tutkii perhesuhteita. Moninainen joukko hahmoja eri ammateista ja sosiaalisista ryhmistä kutsutaan illalliselle trendikkääseen ravintolaan Pariisissa. Heidän joukossaan on kirjoittaja, joka ei ole julkaissut kirjaa, röyhkeä seurapiirijulkkis, maineikas kirjailija, menestynyt liikemies, höpsö näyttelijätär ja aloitteleva taiteilija. Mikä heitä kaikkia yhdistää?</p><p>Yllätyksekseen he tajuavat kaikki olevansa eronneita ex-puolisoita. Nyt heidät on lukittu huoneeseen salaperäisen nukketeatterin esittäjän kanssa. Avioliittojen ratkomattomat ongelmat pulpahtelevat pinnalle ja tuovat mukanaan tunnemyrskyn täynnä sarkasmia, rakkautta, pelkoa, toivoa ja halua. Käy ilmi, että mikään ei ole oikeasti menneisyydessä, vaan vanhat tunteet syöksyvät pinnalle upottaen hahmot niihin.</p><p>Neil Simonille ominainen huumori ja viehkeys yhdistyvät kerrontaan upeasti. Hahmojen herättämät kysymykset heijastelevat kaikkien niiden tunteita, jotka ovat koskaan olleet suhteessa tai naimisissa. Näytelmän menestyksen vahvistaa sen ympäri maailmaa vuosien aikana kerryttämät innokkaat yleisöt.</p><p>Tuottaja: Igor Levin<br>Ohjaaja: Boris Bogdanov</p><p>Rooleissa:<br>Anna Myatshenko<br>Taisiya Sidorenkova<br>Maxim Teplicki<br>Boris Bogdanov<br>Olga Oleynik<br>Sergei Rymar</p><p>Kesto noin 2 tuntia 15 minuuttia, sisältää väliajan.</p><p>Esitys on venäjäksi, tekstitys suomeksi.</p><p>Ikäsuositus: 18</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>Facebook: https://www.facebook.com/Teatr.A.Teatr/<br>Instagram: https://www.instagram.com/teatr_a_/<br>YouTube: https://www.youtube.com/@teatr_A<br>Телеграмм: https://t.me/A_teatr</p>",
                "sv": "<p>”The Banquet in Paris” (”Banketten i Paris”) är en romantisk komedi som handlar om familjerelationer. En blandad grupp personer med olika yrken och social ställning bjuds in till middag på en trendig restaurang i Paris. Bland dem finns en kämpande författare som inte har gett ut någon bok, ett fräckt societetslejon, en berömd författare, en framgångsrik affärsman, en lite töntig skådespelare och en aspirerande konstnär. Vad skulle kunna förena de här människorna?</p><p>Till sin förvåning upptäcker de att de alla är frånskilda och de befinner sig inlåsta i ett rum av en mystisk dockspelare. De olösta problemen från deras äktenskap bubblar upp till ytan och utlöser en virvelvind av känslor fyllda av sarkasm, kärlek, rädsla, hopp och längtan. Det blir tydligt att inte allt verkligen är i det förflutna; gamla känslor återuppstår med intensiv styrka och uppslukar karaktärerna.</p><p>Neil Simons karaktäristiska humor och elegans passar utmärkt in i den här berättelsen. De frågor som rollpersonerna ställer speglar erfarenheterna hos alla som har varit i ett förhållande eller gifta. Pjäsens framgång har bekräftats av entusiastiska åskådare över hela världen under årens lopp.</p><p>Producent: Igor Levin<br>Regissör: Boris Bogdanov</p><p>I huvudrollerna:<br>Anna Myatshenko<br>Taisija Sidorenkova<br>Maxim Teplicki<br>Boris Bogdanov<br>Olga Olejnik<br>Sergej Rymar</p><p>Längd ungefär 2 tim. och 15 min., inklusive paus.</p><p>Pjäsen framförs på ryska och textas på finska.</p><p>Åldersrekommendation: +18</p><p>Båsen utgör ett särskilt alkoholserveringsområde för vuxna från 18 år och uppåt. Balkongen är för personer i alla åldrar, ingen alkoholservering.</p>",
                "en": "<p><b>\"The Banquet in Paris\"</b> is a romantic comedy that delves into family relationships. A diverse group of individuals from various professions and social standings is invited to dinner at a trendy restaurant in Paris. Among them are a struggling writer who hasn’t published a book, a brash socialite, a renowned author, a successful businessman, a ditzy actress, and an aspiring artist. What could possibly connect these people?</p><p>To their surprise, they discover they are all divorced ex-spouses, and they find themselves locked in a room by a mysterious puppeteer. The unresolved issues from their marriages come bubbling to the surface, sparking a whirlwind of emotions filled with sarcasm, love, fear, hope, and desire. It becomes clear that not everything is truly in the past; old feelings resurface with intense vigor, engulfing the characters.</p><p>Neil Simon's signature humor and grace resonate beautifully with this narrative. The questions raised by the characters reflect the experiences of anyone who has been in a relationship or married. The play's success has been validated by enthusiastic audiences across the globe over the years.</p><p>Producer: Igor Levin<br>Director: Boris Bogdanov</p><p>Starring:<br>Anna Myatshenko<br>Taisiya Sidorenkova<br>Maxim Teplicki<br>Boris Bogdanov<br>Olga Oleynik<br>Sergei Rymar</p><p>Duration about 2 h 15 min, including intermission.</p><p>The play will be performed in Russian and subtitled in Finnish.</p><p>Age recommendation: +18</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Facebook: https://www.facebook.com/Teatr.A.Teatr/<br>Instagram: https://www.instagram.com/teatr_a_/<br>YouTube: https://www.youtube.com/@teatr_A<br>Телеграмм: https://t.me/A_teatr</p>",
                "ru": "<p><b>\"Банкет в Париже\"</b> – это романтическая комедия о любви, браке и других неприятностях.</p><p>На ужин в фешенебельный Парижский ресторан приглашены люди разных профессий и социального статуса. Писатель-неудачник, не продавший ни одного романа, бесцеремонная светская львица, известная писательница, успешный бизнесмен, дурочка-актриса и горе-художник. Что может объединять этих людей?</p><p>К своему изумлению, гости выясняют, что все они бывшие супруги, состоящие в разводе. И теперь заперты в одном помещении таинственным кукловодом.</p><p>Накопившиеся в браке у каждого неразрешимые противоречия выплескиваются наружу, порождая бурю эмоций, полную сарказма, любви, страха, надежды и сексуального влечения.</p><p>Оказывается, еще не все в прошлом. Эмоции воскресают с новой силой, поглощая героев.</p><p>Изящество и юмор Нила Саймона идеально подходят к нашей реальности. Вопросы, озвученные героями пьесы - знакомы практически всем, кто хоть раз бывал в браке или находился в отношениях.  Успех этого спектакля на протяжении многих лет подтверждается овациями публики во многих странах мира.</p><p>Продюсер: Игорь Левин<br>Режиссер: Борис Богданов</p><p>В ролях: <br>Мариэтт Левье – Анна Мяченко<br>Альберт Доней – Борис Богданов<br>Габриэль Буоначелли – Таисия Сидоренкова <br>Клод Пишон – Максим Теплицкий<br>Ивон Фуше – Ольга Олийник<br>Андре Бувиль – Сергей Рымар</p><p>Партер является зоной (K18), где разрешено употребление напитков в пластиковых бутылках и жестяных банках, приобретенных в буфете театра.<br>Не разрешается приносить напитки на балкон!</p><p>***</p>"
            },
            "name": {
                "fi": "Juhla Pariisissa -komedia – Банкет в Париже / The Banquet in Paris",
                "sv": "Juhla Pariisissa -komedia – Банкет в Париже / The Banquet in Paris",
                "en": "Juhla Pariisissa -komedia – Банкет в Париже / The Banquet in Paris"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65179/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66521",
            "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: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1114868,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-26T08:14:19.274752Z",
                    "last_modified_time": "2025-06-26T08:14:19.274847Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774887.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1114868/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-26T08:14:19.132557Z",
            "last_modified_time": "2025-06-26T08:14:19.420935Z",
            "date_published": null,
            "start_time": "2025-07-17",
            "end_time": "2025-08-09",
            "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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E2065ABAD20F19A4ED09FAA61D2220C4/Mikko-Pekka_Hyvarinen_Muovikko_plastea_telluris_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E2065ABAD20F19A4ED09FAA61D2220C4/Mikko-Pekka_Hyvarinen_Muovikko_plastea_telluris_",
                "en": "http://www.malmitalo.fi/en/events/event/E2065ABAD20F19A4ED09FAA61D2220C4/Mikko-Pekka_Hyvarinen_Muovikko_plastea_telluris_"
            },
            "short_description": {
                "fi": "Koe urbaanin maiseman nurja puoli, joka on samanaikaisesti karun viehättävä ja luotaantyöntävän vinksahtanut.",
                "en": "Experience the antagonistic side of the urban landscape, both harshly captivating and disturbingly askew."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Koe urbaanin maiseman nurja puoli, joka on samanaikaisesti karun viehättävä ja luotaantyöntävän vinksahtanut.</p><p>Mikko-Pekka Hyvärinen (s. 1985) hyödyntää taiteessaan ylijäämäeristelevyjä ja muita kierrätysmateriaaleja. Teosten ideat syntyvät usein paikoissa, joilla ei ole omaa identiteettiä, kuten jättömailla. Hyväristä kiehtoo urbaanin maiseman nurja puoli, joka on yhtä aikaa karun viehättävä ja luotaantyöntävän vinksahtanut.</p><p>Mikko-Pekka Hyvärisen työskentely on kehittynyt monivaiheisesti ensin laajennetusta maalauksesta kohti veistoksellisuutta pitäen jatkuvasti ohella maalaustaiteen käsitteen. Viimeisimpänä askeleena maalauksen osuus on tiivistynyt kierrätetyn materiaalin joukkoon värjättynä täyttötasoitteena ja styrox-pisteiden abstraktiin ilmaisuun, jossa hän luottaa minimalistiseen estetiikkaan. <br> <br>Pintakerrokset ovat Hyvärisen teoksissa yksi rakenteellinen linkki maalaukseen. Teosten muotokielessä on myös estetisoitu (likaisen valkoisen) maaliaineen juoksevan hyllyvää luonnetta ja pisaramaisuutta, maaliaineen olomuotoa. Näissä teoksissa styroxista on rakennettu ”illuusio”, joka johdattaa mielikuvia irti materiaalista vaikutelmaan jostain orgaanisesta. Polystyreeni (styrox) on samaan aikaan sekä täysin paljas, että moneen suuntaan assosioituva. <br> <br>Hyvärisen teosten idea pohjaa ajatukselle antroposeenin ajan jäljistä eli muovijätteestä sedimenttikerroksissa. Hän työskentelee kuvainnollisen arkeologisesti hioen kerroksia pois yhteenliittämistään raakaversiosta etsien jotain orgaanisen kaltaista muotoa. Styrox-kerroksien vuoropuhelu harmaansävyisen täyttötasoitteen kanssa muistuttaa maakerroksia. Alunperin luotaantyöntävä materiaali, eli tässä tapauksessa rakennusmailta kierrätetty styrox, muuntuu kutsuvaksi, jopa haptiseksi. Kierrättäminen korostaa teoksien immateriaalista ja sisällöllistä puolta, kun jo jätteeksi luokiteltu materiaali ei lähtökohtaisesti luo arvoa teoksille. Hyvärinen teki materiaalikierrätyksessä yhteistyötä rakennusalan yritys Jatke Oy kanssa. <br> <br>Näyttelyssä muovi eli öljyn jaloste saattaa saada katsojan mielessä toisia merkityksiä ja viedä ajatuksia fossiilikapitalismin kritiikkiin, vaikkeivat teokset tätä alleviivaa. Hienovaraisesti muokkaamalla kuvottaviksi, mitäänsanomattomiksi tai muuten kylmiksi luonnehdittavia keinotekoisia materiaaleja ihastuttaviin, hellyyttäviin tai rauhoittaviin muotoihin, voi löytyä jotakin tunnistettavan ja oudon välimaastoon asettuvaa.</p>",
                "en": "<p>Experience the antagonistic side of the urban landscape, both harshly captivating and disturbingly askew.</p><p>Mikko-Pekka Hyvärinen (b. 1985) uses surplus insulation panels and other recycled materials in his art. The ideas for his works often emerge in places lacking their own identity, such as wastelands. Hyvärinen is fascinated by the downside of the urban landscape, which is both ruggedly charming and intriguingly distorted.</p><p>Mikko-Pekka Hyvärinen’s artistic practice has developed through multiple phases, evolving from expanded painting toward sculptural forms, while consistently maintaining a connection to notion of painting. As the last step, the painting part has condensed into an abstract expression of colored filler and polystyrene dots amongst recycled material, where he relies on a minimalist aesthetic. <br> <br>Surface layers in Hyvärinen’s works serve as a structural link to painting. His formal language also aestheticizes the flowing quality and droplet-like texture of (dirty white) paint material – its very substance and state. In these works, polystyrene is used to construct an “illusion” that detaches associations from the raw material toward impressions of something organic. Polystyrene is simultaneously fully exposed and capable of evoking a wide range of associations. <br> <br>The concept behind Hyvärinen’s works is rooted in the idea of the traces of the Anthropocene era specifically plastic waste in sediment layers. He works in a metaphorical archaeological manner, sanding away layers of his combined raw versions in search of a form resembling something organic. The dialogue between the layers of polystyrene and the grey-toned filler evokes geological strata. A material that is originally repulsive – here, construction site-recycled polystyrene – becomes inviting, even haptic. Recycling emphasizes the immaterial, conceptual side of the works, as material that is already classified as waste does not fundamentally create value for the works. For his material recycling process, Hyvärinen collaborated with the construction company Jatke Oy. <br> <br>In the exhibition, plastic – as a byproduct of oil – may evoke alternative meanings in the viewer’s mind and prompt reflections on critiques of fossil capitalism, even though the works do not explicitly underline this. Through subtle transformation, synthetic materials often described as repulsive, meaningless, or cold are shaped into forms that are delightful, tender, or calming – occupying a space between the familiar and the strange.</p>"
            },
            "name": {
                "fi": "Mikko-Pekka Hyvärinen: Muovikko (plastea telluris)",
                "sv": "Mikko-Pekka Hyvärinen: Muovikko (plastea telluris)",
                "en": "Mikko-Pekka Hyvärinen: Muovikko (plastea telluris)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66521/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66636",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1114867,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-26T08:14:16.916687Z",
                    "last_modified_time": "2025-06-26T08:14:16.916706Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775331.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1114867/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-26T08:14:16.791950Z",
            "last_modified_time": "2025-06-26T08:14:17.081844Z",
            "date_published": null,
            "start_time": "2025-07-01",
            "end_time": "2025-07-31",
            "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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C61AC06C160BB0B111BE0C508EA17F38/Hillevi_Gronholm_Kukkaisten_kesa_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C61AC06C160BB0B111BE0C508EA17F38/Hillevi_Gronholm_Kukkaisten_kesa_",
                "en": "http://www.kanneltalo.fi/en/events/event/C61AC06C160BB0B111BE0C508EA17F38/Hillevi_Gronholm_Kukkaisten_kesa_"
            },
            "short_description": {
                "fi": "Kanneltalon kahvilan vitriineissä on esillä Hillevi Grönholmin teoksia."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kanneltalon kahvilan vitriineissä on esillä Hillevi Grönholmin teoksia.</p><p>”Haagan taideseuran innoittamana esittelen kesäkukkaisia tunnelmia. Tekniikkana näissä ovat akvarelli ja monotypia. Teokset on maalattu ja painettu n. 20 vuoden aikana. Heleitä kesän tunnelmia ja iloa katsojalle!” toivottaa Hillevi Grönholm.</p><p>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Hillevi Grönholm – Kukkaisten kesä – Haagan taideseura",
                "sv": "Hillevi Grönholm – Kukkaisten kesä – Haagan taideseura",
                "en": "Hillevi Grönholm – Kukkaisten kesä – Haagan taideseura"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66636/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66434",
            "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: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: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: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/artist/kulttuurikeskus-caisa/queerolaulua-3897690/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/queerolaulua-3897690/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/queerolaulua-3897690/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 812568,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-20T14:12:46.610974Z",
                    "last_modified_time": "2025-05-20T14:12:46.610986Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774059.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/812568/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-20T14:12:46.525943Z",
            "last_modified_time": "2025-06-25T09:14:12.557352Z",
            "date_published": null,
            "start_time": "2025-06-25T15: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/E76AEDDE30C4006F46B6278A08A93ECD/LOPPUUNMYYTY_Queerolaulua_The_Friends_of_Dorothy_ja_Helsingin_queer-feministinen_kuoro",
                "sv": "http://www.caisa.fi/sv/evenemang/event/E76AEDDE30C4006F46B6278A08A93ECD/SLUTSALD_Pride_2025_Queersang",
                "en": "http://www.caisa.fi/en/events/event/E76AEDDE30C4006F46B6278A08A93ECD/SOLD_OUT_Pride_2025_Choir_queerformances"
            },
            "short_description": {
                "fi": "Queer-feminististä kuoromusiikkia kansanlauluista euroviisuihin – HQFK ja FroDo laulavat marginaaleista, rakkaudella ja asenteella.",
                "sv": "Queer-feministisk körmusik från folkvisor till Eurovision – HQFK och FroDo sjunger från marginalerna med kärlek och attityd.",
                "en": "Queer feminist choir music from folk songs to Eurovision entries – HQFK and FroDo sing from the fringe with love and attitude."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Queer-feminististä kuoromusiikkia kansanlauluista euroviisuihin – HQFK ja FroDo laulavat marginaaleista, rakkaudella ja asenteella.</p><p><b>Helsingin Queer-feministinen kuoro</b> esittää vanhaa ja uutta kuoromusiikkia kansanlauluista euroviisuihin ja kuorolaisten omiin sävellyksiin ja sanoituksiin, aina queer-feministisellä otteella. Kuoro perustettiin keskellä pandemiaa, ja se pääsi esiintymään ensimmäisen kerran marraskuussa 2021 kompaktina mutta kovaäänisenä oktettina. Nykyisin kuorossa on jo 25 laulajaa!</p><p>HQFK:ta johtaa Kirsi Marttinen, kuoronjohtoa opiskellut pitkän linjan harrastajamuusikko, jonka kolmas kuoro HQFK on.</p><p><b>The Friends of Dorothy (FroDo)</b> on vuonna 2018 perustettu helsinkiläinen queer a capella -ihmisoikeuslauluyhtye.<br>FroDon lauluohjelmisto ulottuu vähemmistökielillä lauletuista kansanlauluista taidemusan kautta euroviisupoppiin.<br>FroDo sjunger högt och skamlöst från samhällets marginaler.<br>FroDon asenne on lyyrinen punk.</p><p>FroDossa laulavat:<br>Salla Markkanen, sopraano<br>Petriikka Pohjanheimo, altto<br>Kim Gustafsson, tenori<br>Mikko Rantonen, tenori<br>Aleksi vasko, basso</p><p>Kieli: suomi, ruotsi, englanti<br>Tapahtuman kesto: 1,5 t, väliaika 20 min</p>",
                "sv": "<p>Queer-feministisk körmusik från folkvisor till Eurovision – HQFK och FroDo sjunger från marginalerna med kärlek och attityd.</p><p><b>Helsingin queer-feministinen kuoro (Helsingfors queer-feministiska kör)</b> framför gammal och ny körmusik från folkvisor till Eurovision och även körmedlemmarnas egna tonsättningar och texter, alltid med ett queer-feministiskt grepp.  Kören grundades mitt under pandemin och fick uppträda för första gången i november 2021 som en kompakt men högröstad oktett. Numera har kören 25 sångare!</p><p>HQFK leds av Kirsi Marttinen, en erfaren hobbymusiker som även studerat körledning. HQFK är hennes tredje kör.</p><p><b>The Friends of Dorothy (FroDo)</b> är en queer a cappella-sånggrupp med fokus på mänskliga rättigheter som grundades i Helsingfors 2018.<br>FroDos repertoar sträcker sig från folkvisor på minoritetsspråk via konstmusik till eurovisionspop.<br>FroDo sjunger högt och skamlöst från samhällets marginaler.<br>FroDos attityd är lyrisk punk.</p><p>I FroDo sjunger:<br>Salla Markkanen, sopran<br>Petriikka Pohjanheimo, alt<br>Kim Gustafsson, tenor<br>Mikko Rantonen, tenor<br>Aleksi Vasko, bas</p><p>Längd: cirka 1,5 h inklusive paus</p>",
                "en": "<p>Queer feminist choir music from folk songs to Eurovision entries – HQFK and FroDo sing from the fringe with love and attitude.</p><p><b>Helsingin Queer-feministinen kuoro (the queer feminist choir of Helsinki)</b> performs old and new choir music from folk songs to Eurovision entries and original compositions and lyrics by choir members, always with a queer feminist twist.  The choir was started in the middle of the pandemic, and it had its first chance to perform in November 2021 as a compact but loud octet. The choir currently has 25 singers!</p><p>HQFK is conducted by Kirsi Marttinen, a long-time amateur musician who has studied choir conducting. HQFK is her third choir.</p><p><b>The Friends of Dorothy (FroDo)</b> is a queer a cappella human rights singing group from Helsinki founded in 2018.<br>FroDo’s repertoire spans from folk songs performed in minority languages to art music and Eurovision pop.<br>FroDo sings loud and proud from the fringes of society.<br>FroDo’s attitude can be described as lyrical punk.</p><p>FroDo are:<br>Salla Markkanen, soprano<br>Petriikka Pohjanheimo, alto<br>Kim Gustafsson, tenor<br>Mikko Rantonen, tenor<br>Aleksi Vasko, bass</p><p>Duration: approx. 1.5 hours, intermission</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Queerolaulua: The Friends of Dorothy ja Helsingin queer-feministinen kuoro – Pride 2025",
                "sv": "SLUTSÅLD Pride 2025: Queersång – The Friends of Dorothy | Helsingin queer-feministinen kuoro",
                "en": "SOLD OUT Pride 2025: Choir queerformances – The Friends of Dorothy | Helsingin queer-feministinen kuoro"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66434/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66509",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/eventseries/3912720"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / Perhelippu 60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 951667,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-06T09:13:59.265519Z",
                    "last_modified_time": "2025-06-06T09:13:59.265535Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774755.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/951667/?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-06T09:13:59.109276Z",
            "last_modified_time": "2025-06-24T15:14:26.604099Z",
            "date_published": null,
            "start_time": "2025-11-30T13: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Savoy-teatteri"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/810BBB1D3E2B31566D5DCAABCCB70F95/Mutaveijarit_Joulutouhotus"
            },
            "short_description": {
                "fi": "Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Mutaveijareiden uunituoreen joululevyn julkistamiskonsertti!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis! Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet aivan uusia joulu- ja talvilauluja mutameininkiä unohtamatta.</p><p>Valloittavista esiintymisistä ja mukaansatempaavista, monisävyisistä lauluista tunnettu Mutaveijarit on viimeisen kymmenen vuoden aikana vakiinnuttanut asemansa yhtenä Suomen suosituimmista lastenmusiikkiyhtyeistä. Mielikuvitukselliset ja oivaltavat laulut sekä innostavat ja pedagogisesti monipuoliset laululeikit vievät kuulijansa uudenlaiselle musiikkiretkelle, jonka hauskat ja jännittävät käänteet takaavat viihdyttävän konserttielämyksen koko perheelle.</p><p>Mutaveijareiden kaksi levyä Ympäri ämpäri! (2016) ja Nyt mennään! (2019) ovat saaneet lukuisia tunnustuksia mm. Vamo ry:ltä ja molemmat levyt ovat olleet lastenmusiikin Emma-ehdokkaina. Vuonna 2023 julkaistiin Mutaveijareiden lauluista Ämpärillinen nuotteja -nuottikirja, josta on otettu jo uusintapainos.</p><p>Kesto n.  45 min, ei väliaikaa</p><p>Konsertti on ikärajaton</p><p>Liput 17 €, perhelippu (4 hlöä) 60 €</p><p>Alle 3-vuotias lapsi sylissä ilmaiseksi, jokainen omalla paikallaan istuva tarvitsee oman lipun.</p>"
            },
            "name": {
                "fi": "Mutaveijarit: Joulutouhotus"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66509/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66620",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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/artist/stadin-slangi-ryn-30v-juhla/"
                    },
                    "description": null,
                    "price": {
                        "fi": "32,90-48,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1101136,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-24T15:14:23.810148Z",
                    "last_modified_time": "2025-06-24T15:14:23.810166Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775128.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1101136/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-13T12:12:40.453432Z",
            "last_modified_time": "2025-06-24T15:14:23.873689Z",
            "date_published": null,
            "start_time": "2025-09-20T16: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,
            "provider_contact_info": null,
            "provider": {
                "fi": "Stadin Slangi ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/FE943E0CACFF64D663090E41FBEEE0E9/Stadin_Slangi_ry_n_30v-juhla"
            },
            "short_description": {
                "fi": "Stadin slangi ry täyttää 30 vuotta – Tuu messiin juhlii!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Stadin slangi ry täyttää 30 vuotta – Tuu messiin juhlii!</p><p>Tule fiilistelee Stadin slangia ja päheetä meininkii, ku juhlitaan Stadin slangi ry:n huikeita 30-vuotisbileitä!</p><p>Illan pääesiintyjä: Pepe Wilberg<br>Legendaarinen Pepe Wilberg vetää lavalla ison bändinsä kanssa – luvassa täyslaidallinen soulia, poppia ja iskelmää vuosikymmenten varrelta. Karismaa, tunnetta ja timanttista ääntä – Pepe on stadilainen ikoni!</p><p>Juontajana näyttelijä Antti Reini<br>Tumman karismaattinen Reini pitää langat käsissään ja vetää runoja ja biisejä stadin slangiksi – nyt ei jää kukaan kylmäks!</p><p>Lavalla myös:</p><p>• Harri Saksala<br>Stadin Slangi ry:n puheenjohtaja, kulttuurivaikuttaja ja rock-legenda. Stadin slangin äänekäs puolestapuhuja vuosikymmenten ajalta.</p><p>• Olli Ahvenlahti<br>Stadin Kundi 2023 – jazzin mestari ja pianisti, joka on tehnyt mittavan uran myös säveltäjänä ja kapellimestarina. Stadilainen fiilis kuuluu jokaisessa nuotissa.</p><p>• Janne Saarikivi<br>Stadin Kundi 2024 – kielitieteilijä ja mediapersoona, joka ei pelkää puhua suoraan. Tunnettu kielten ja identiteetin puolestapuhuja, joka nostaa slanginkin merkityksen<br>framille.</p><p>• Anna Kokkonen<br>Trubaduuri, laulaja-lauluntekijä ja tunnettu tunnelmanluoja. Persoonallinen ääni ja tarinalliset kappaleet koskettavat syvältä – stadilaisella twistillä.</p><p>• Anja Snellman<br>Stadin Friidu 2004 – kirjailija, runoilija ja kulttuuripersoona, jonka juuret ja sielu sykkii Helsingille (videoesiintyminen)</p><p>Luvassa ainutlaatuinen ilta täynnä musaa, muisteloita, läppää ja lämpöä – slangi elää ja voi<br>hyvin!</p><p>Liput & lisätiedot:<br>Stadin Slangi ry, Hämeentie 67, 00550 Helsinki<br>toimisto@stadinslangi.fi, puh. 045 186 723<br>https://www.stadinslangi.fi/<br>Liput: 29 – 45 € (paikasta riippuen)<br>Jäsenhinta 29 € (myynti vain Stadin Slangin toimistossa)</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>"
            },
            "name": {
                "fi": "Stadin Slangi ry:n 30v-juhla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66620/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66495",
            "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: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: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: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.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108859?b=1",
                        "sv": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108859?b=1",
                        "en": "https://www.tiketti.fi/outsider-art-festival-2025-kulttuurikeskus-caisa-helsinki-lippuja/108859?b=1"
                    },
                    "description": null,
                    "price": {
                        "fi": "5-25 €",
                        "sv": "5-25 €",
                        "en": "5-25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 919062,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-02T10:13:49.547261Z",
                    "last_modified_time": "2025-06-02T10:13:49.547277Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772148.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/919062/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-02T10:13:49.427754Z",
            "last_modified_time": "2025-06-24T13:14:16.314279Z",
            "date_published": null,
            "start_time": "2025-08-15T16: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A6B0988B379469B5402DA3163C72C894/Pertin_Valinta_X_Minna_Records_Aatos_Ketvel_Takay-Sin_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A6B0988B379469B5402DA3163C72C894/Pertin_Valinta_X_Minna_Records_Aatos_Ketvel_Takay-Sin_",
                "en": "http://www.caisa.fi/en/events/event/A6B0988B379469B5402DA3163C72C894/Pertin_Valinta_X_Minna_Records_Aatos_Ketvel_Takay-Sin_"
            },
            "short_description": {
                "fi": "Pertin Valinta ja Minna Records järjestävät yhteisen konsertin perjantaina 15.8. Caisan salissa, missä esiintyvät Aatos Ketvel ja Takay-Sin.",
                "sv": "Pertin Valinta och Minna Records ordnar en gemensam konsert fredagen den 15 augusti i Caisas sal. Aatos Ketvel och Takay-Sin uppträder.",
                "en": "Pertin Valinta and Minna Records will co-host a concert on August 15 at the Caisa hall, featuring performances by Aatos Ketvel and Takay-Sin."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Pertin Valinta ja Minna Records järjestävät yhteisen konsertin perjantaina 15.8. Caisan salissa, missä esiintyvät Aatos Ketvel ja Takay-Sin.</p><p>Kirsikkapuu-yhtyeensä kanssa Minna Recordsille levyttävä persoonallinen laulaja-lauluntekijä-lavarunoilja Aatos Ketvel soittaa tapahtumassa soolokeikan.  <br> <br>Takay-Sin puolestaan on mm. Olento Orchestral-kokoonpanosta tutun taiteilija Tellervo Kalleisen projekti, jonka debyytin Minna Records julkaisee syksyllä 2025.</p>",
                "sv": "<p>Pertin Valinta och Minna Records ordnar en gemensam konsert fredagen den 15 augusti i Caisas sal. Aatos Ketvel och Takay-Sin uppträder.</p><p>Den personliga sångaren, låtskrivaren och estradpoeten Aatos Ketvel, som spelar in skivor för MinnaRecords med sin grupp Kirsikkapuu, gör en solospelning.  <br> <br>Takay-Sin är ett projekt av konstnären Tellervo Kalleinen, som är känd bland annat från Olento Orchestral, vars debut kommer ut på Minna Records hösten 2025.</p>",
                "en": "<p>Pertin Valinta and Minna Records will co-host a concert on August 15 at the Caisa hall, featuring performances by Aatos Ketvel and Takay-Sin.</p><p>The unique singer-songwriter and spoken word artist Aatos Ketvel will give a solo performance at the event.</p><p>Takay-Sin is a project by artist Tellervo Kalleinen—known from the Olento Orchestral ensemble—whose debut Minna Records will release in fall 2025.</p>"
            },
            "name": {
                "fi": "Pertin Valinta X Minna Records: Aatos Ketvel, Takay-Sin – OAF 2025",
                "sv": "Pertin Valinta X Minna Records: Aatos Ketvel, Takay-Sin – OAF 2025",
                "en": "Pertin Valinta X Minna Records: Aatos Ketvel, Takay-Sin – OAF 2025"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66495/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65776",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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: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": 613188,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T12:13:18.095378Z",
                    "last_modified_time": "2025-04-25T12:13:18.095400Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767412.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613188/?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-04-25T12:13:18.031116Z",
            "last_modified_time": "2025-06-18T11:13:37.108368Z",
            "date_published": null,
            "start_time": "2025-06-18T12:00:00Z",
            "end_time": "2025-06-18T16: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8F297BC06B12468C3BD588A07689F5E5/Juhannusetkot_Sitratorilla",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8F297BC06B12468C3BD588A07689F5E5/Midsommarforfest_pa_Cittertorget",
                "en": "http://www.kanneltalo.fi/en/events/event/8F297BC06B12468C3BD588A07689F5E5/Pre-Midsummer_party_on_Sitratori_square"
            },
            "short_description": {
                "fi": "Virittäydytään keskikesän juhlaan juhannuskoivujen katveessa ja saunan lämmössä. Tarjolla on musiikkia, leikkejä ja letkeää menoa.",
                "sv": "Vi påbörjar midsommarfestandet under midsommarbjörkarna och med bastuvärme. Det bjuds på musik, lekar och bra stämning.",
                "en": "Let’s get in the mood for midsummer celebrations under birch trees and in the warmth of the sauna. Come and enjoy music, games and a relaxed atmosphere."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Virittäydytään keskikesän juhlaan juhannuskoivujen katveessa ja saunan lämmössä. Tarjolla on musiikkia, leikkejä ja letkeää menoa.</p><p>Sauna on lämmin klo 16 alkaen. Uikkari ja pyyhe mukaan ja lauteille!</p><p>Tarjoilemme juhannukseen kuuluvaa grillimakkaraa Sitratorilla niin liha-kuin kasvisversion ystäville klo 15-18! Ilmaista makkaraa tarjolla niin kauan kuin herkkua riittää.</p><p>Sateen sattuessa musiikkiohjelma ja työpajat siirtyvät Kanneltalon sisätiloihin.</p><p><b>MUSIIKKIOHJELMA</p><p>Klo 15–16 Nyt lauletaan! Keskikesän taikaa sävelin</b><br>Mikään ei ole niin mukavaa kuin laulaminen – paitsi yhdessä laulaminen. Muusikko ja musiikin monitoiminainen Mari Kätkä laulattaa juhannuskansaa haitarin säestyksellä. Tule mukaan ja koe yhteislaulun tenho ja taika.</p><p><b>klo 16–18 DJ Koo-Blank soittaa ikivihreitä</b></p><p><b>klo 18–19 Polenta</b><br>Uutta kansanmusiikkia raikkaalla ja räväkällä otteella! Polenta on kolmen viulistin ja yhden kitaristin yhtye, joka soittaa omaa sekä perinteistä pelimannimusiikkia hiki hatussa ja täydellä sydämellä. Kokoonpano: Aino Kinnunen, Veera Kuisma, Mikko Malmivaara, Olli Sippola.</p><p><b>MUU OHJELMA</p><p>klo 16–18 Juhannusbingopeli</b><br>Hupsansaan työpajassa voit tehdä oman bingolaudan ja lähteä bongailemaan lähiympäristöstä kesäisiä merkkejä. Löydätkö lintuja, auringon pilkahduksen tai pienen muurahaisen? Pieni palkinto luvassa kaikille osallistujille.</p><p><b>klo 15–17 Perinneleikkejä</b><br>Perinneleikit ry:n toiminnallisella leikkipisteellä nautitaan leikin ilosta leikki-innovaattorin ohjeistuksella. Leikki-ikä on koko ikä ja kannustammekin kaikkia mukaan. Ohjelmassa perinteisiä yhteisleikkejä kuten kolmen suora, polttopallo ja peili. Leikkipisteeltä löytyy myös hyppynaruja, katuliituja ja ruutuhyppelyruudukko.</p><p><b>klo 15-17 Juhannustaikoja</b><br>Juhannusetkoilla D-aseman kanssa solmitaan pieniä seitsemän kukan taikakimppuja tyynyn alle laitettavaksi.</p><p><b>klo 17–18 Leikkiauto Martti </b><br>Oikea leikkiauto Martti avaa ovensa. Martissa saa istua kuskin paikalla, painella kaikkia nappeja ja kuunnella musiikkia - leikkimielellä tietenkin.</p><p><b>klo 17–18.30 Onnenpyörä</b><br>Tule pyöräyttämään Nuorisopalveluiden onnenpyörää ja voita upeita palkintoja!</p><p>Yhteistyössä: Kanneltalo, nuorisopalvelut, Sibelius-Akatemian Global Music -osasto ja D-asema Kannelmäki</p>",
                "sv": "<p>Vi påbörjar midsommarfestandet under midsommarbjörkarna och med bastuvärme. Det bjuds på musik, lekar och bra stämning.</p><p>Bastun är varm från kl. 16. Ta med baddräkt och handduk och kom med i värmen!</p><p><b>MUSIKPROGRAM</p><p>Kl. 15–16 Nu sjunger vi! - Midsommarens magi i toner</b><br>Inget är så trevligt som att sjunga – förutom att sjunga tillsammans. Musiker och musikens mångkonstnär Mari Kätkä ackompanjerar midsommarfolket med dragspel. Kom med och testa allsångens lockelse och magi.</p><p><b>kl. 16–18 DJ Koo-Blank spelar evergreens</b></p><p><b>kl. 18–19 Polenta</b> <br>Ny folkmusik med ett fräscht och hurtigt grepp! Polenta är en grupp bestående av tre violinister och en gitarrist som spelar sin egen och traditionell spelmansmusik med svetten i pannan och fullt hjärta. Sammansättning: Aino Kinnunen, Veera Kuisma, Mikko Malmivaara, Olli Sippola.</p><p><b>ANNAT PROGRAM</p><p>Kl. 16–18 Midsommarbingo</b>  <br>I Hupsansaas workshop kan du göra din bingobricka och börja bonga sommartecken i närmiljön. Hittar du fåglar, ser du solen glimta eller ser du små myror? Alla som deltar får ett litet pris.</p><p><b>Kl. 15–17 Traditionella lekar</b><br>Perinneleikit ry:s funktionella lekplats bjuder på lekens glädje genom anvisningar av lekinnovatören. Varje ålder är en lekålder och vi uppmuntrar alla att delta. I programmet ingår traditionella gemensamma lekar, såsom tre på rad, brännboll och spegeln. På lekplatsen finns också hopprep, gatukritor och man kan hoppa ruta.</p><p><b>Kl. 17–18 Lekbilen Martti</b> <br>Den riktiga lekbilen Martti öppnar sina dörrar. I Martti får man sitta på förarplatsen, trycka på alla knappar och lyssna på musik – med leken i sinnet, naturligtvis.</p><p>I samarbete: Gamlasgården, ungdomstjänsterna, Sibeliusakademins Global Music-avdelning och D-stationen Gamlas.</p>",
                "en": "<p>Let’s get in the mood for midsummer celebrations under birch trees and in the warmth of the sauna. Come and enjoy music, games and a relaxed atmosphere.</p><p>The sauna will be heated from 16.00 onwards. Bring your swimwear and towel and hop into the sauna!</p><p>We also offer delicious grill sausages at Sitratori from 15 onwards. Both meat and plant-based options available!</p><p>In case of bad weather the music programme and workshops will be held in Kanneltalo's lobby.</p><p><b>MUSIC PROGRAMME</p><p>15.00–16.00 Let’s sing! – Magical Midsummer notes</b><br>There is nothing more pleasant than singing – except for singing together. Musician and all-round music enthusiast Mari Kätkä makes the festive folk sing accompanied by an accordion. Come along and enjoy the power and magic of singing together.</p><p><b>16.00–18.00 DJ Koo-Blank plays evergreens</b></p><p><b>18.00–19.00 Polenta</b> <br>New folk music with a fresh and fierce twist! Polenta are three violinists and one guitarist who play their own and traditional folk music at full speed and with all their heart. Line-up: Aino Kinnunen, Veera Kuisma, Mikko Malmivaara, Olli Sippola.</p><p><b>OTHER PROGRAMME</p><p>16.00–18.00 Midsummer bingo </b><br>In the Hupsansaa workshop, you can make your own bingo card and venture outside to spot signs of summer in the surroundings. Can you find birds, rays of sunshine or a small ant? All participants receive a small prize.</p><p><b>15.00–17.00 Traditional games</b><br>The activity point hosted by the Perinneleikit ry association for traditional games introduces participants to the joy of games with the help of a game innovator. There are no age limits when it comes to play, and we encourage everyone to join in. The activities include traditional shared games, such as noughts and crosses, dodgeball and fairy footsteps. The play point also includes skipping ropes, street chalk and hopscotch.</p><p><b>17.00–18.00 Toy car Martti </b><br>The real toy car Martti opens its doors. In the real-life toy car Martti, you can sit in the driver’s seat, press all the buttons and listen to music – playfully, of course.</p><p><b>klo 17–18.30 Wheel of Fortune</b><br>Come and spin the wheel of fortune and win amazing prizes! By the Youth services.</p><p>In cooperation with: Kanneltalo, youth services, Global Music Department of the Sibelius Academy and D-asema Kannelmäki</p>"
            },
            "name": {
                "fi": "Juhannusetkot Sitratorilla",
                "sv": "Midsommarförfest på Cittertorget",
                "en": "Pre-Midsummer party on Sitratori square"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65776/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65874",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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": 440008,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-31T12:13:50.548268Z",
                    "last_modified_time": "2025-03-31T12:13:50.548283Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767285.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/440008/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-31T12:13:50.509919Z",
            "last_modified_time": "2025-06-17T06:13:41.551442Z",
            "date_published": null,
            "start_time": "2025-06-18",
            "end_time": "2025-08-08",
            "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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9D294C12EB939BB3443D5E9F506BB765/Ajatuksia_ja_unelmia_asumisesta",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9D294C12EB939BB3443D5E9F506BB765/Tankar_och_drommar_om_boende",
                "en": "http://www.vuotalo.fi/en/events/event/9D294C12EB939BB3443D5E9F506BB765/Thoughts_and_dreams_of_housing"
            },
            "short_description": {
                "fi": "Näyttely nostaa esiin 4–19-vuotiaiden ajatuksia ja unelmia asumisesta sanoin, kuvin ja pienoismallein.",
                "sv": "Utställningen lyfter fram 4–19-åringarnas tankar och drömmar om boende i ord, bilder och miniatyrmodeller.",
                "en": "This exhibition highlights the thoughts and dreams of children and young people aged 4–19 with regard to housing in the form of words, pictures and scale models."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Näyttely nostaa esiin 4–19-vuotiaiden ajatuksia ja unelmia asumisesta sanoin, kuvin ja pienoismallein.</p><p>Keväällä 2025 Lasten ja nuorten arkkitehtuurikoulu Arkin oppilaat tutkivat eläinten, ihmisten ja mielikuvitusolentojen asumista. Millaisia ovat niiden pesät, majat ja talot? Miten asutaan tulevaisuudessa?</p><p>Tervetuloa tutustumaan kesänäyttelyyn!</p>",
                "sv": "<p>Utställningen lyfter fram 4–19-åringarnas tankar och drömmar om boende i ord, bilder och miniatyrmodeller.</p><p>Våren 2025 undersöker eleverna vid Arkitekturskolan för barn och unga Arkki boende för djur, människor och fantasivarelser. Hurdana är deras nästen, boningar och hus? Hur bor man i framtiden?</p><p>Välkommen till sommarutställningen!</p>",
                "en": "<p>This exhibition highlights the thoughts and dreams of children and young people aged 4–19 with regard to housing in the form of words, pictures and scale models.</p><p>In spring 2025, students from Arkki School of Architecture for Children and Youth studied how animals, people and imaginary creatures live. What do their nests, dens and houses look like? How will we live in the future?</p><p>We look forward to seeing you at the summer exhibition!</p>"
            },
            "name": {
                "fi": "Ajatuksia ja unelmia asumisesta – Lasten ja nuorten arkkitehtuurikoulu Arkki",
                "sv": "Tankar och drömmar om boende – Arkitekturskolan för barn och ungdomar Arkki",
                "en": "Thoughts and dreams of housing – Arkki School of Architecture for Children and Youth"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65874/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66633",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1035633,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-16T13:14:28.048446Z",
                    "last_modified_time": "2025-06-16T13:14:28.048465Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775085.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1035633/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-16T13:14:27.892295Z",
            "last_modified_time": "2025-06-16T13:14:28.225499Z",
            "date_published": null,
            "start_time": "2025-08-15T10: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C03864A9A3C9722DA4E3744B9950C874/Teatteri_Nirvana_HATKAT",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C03864A9A3C9722DA4E3744B9950C874/Teatteri_Nirvana_HATKAT_Sparken_",
                "en": "http://www.stoa.fi/en/events/event/C03864A9A3C9722DA4E3744B9950C874/Teatteri_Nirvana_HATKAT"
            },
            "short_description": {
                "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.",
                "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.",
                "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: n. 60 min, ei väliaikaa.<br>Ikäsuositus: 13+<br>Kieli: suomi</p>",
                "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p>",
                "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "Teatteri Nirvana: HATKAT",
                "sv": "Teatteri Nirvana: HATKAT (Sparken)",
                "en": "Teatteri Nirvana: HATKAT"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66633/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66471",
            "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": 836009,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-23T11:14:07.865721Z",
                    "last_modified_time": "2025-05-23T11:14:07.865739Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764945.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/836009/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-23T11:14:07.743380Z",
            "last_modified_time": "2025-06-16T08:14:24.207667Z",
            "date_published": null,
            "start_time": "2025-07-18T11: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta",
                "en": "http://www.espanlava.fi/en/events/event/1D2CFDFF3A66D890510963BA9AEAAE5F/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_konserttisoittokunta"
            },
            "short_description": {
                "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.",
                "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.",
                "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>",
                "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>",
                "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>"
            },
            "name": {
                "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta",
                "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta",
                "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan konserttisoittokunta"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66471/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66630",
            "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": 1033918,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-16T08:14:21.674812Z",
                    "last_modified_time": "2025-06-16T08:14:21.674832Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775124.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1033918/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-16T08:14:21.519855Z",
            "last_modified_time": "2025-06-16T08:14:21.850975Z",
            "date_published": null,
            "start_time": "2025-06-27T11: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband",
                "en": "http://www.espanlava.fi/en/events/event/1C722D719B3B050EDC573854A917717D/MIL-Espa_Puolustusvoimien_varusmiessoittokunnan_showband"
            },
            "short_description": {
                "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.",
                "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.",
                "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espa-puistokonsertteja on järjestetty kesäisin vuodesta 1927 lähtien Esplanadin puistossa.</p><p>Konserttiin on vapaa pääsy. Tervetuloa!</p>",
                "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade musikstilar utlovas!</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>",
                "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>"
            },
            "name": {
                "fi": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband",
                "sv": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband",
                "en": "MIL-Espa: Puolustusvoimien varusmiessoittokunnan showband"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66630/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65808",
            "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:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 375003,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-20T13:15:03.373815Z",
                    "last_modified_time": "2025-03-20T13:15:03.373835Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/375003/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-20T13:15:03.352723Z",
            "last_modified_time": "2025-06-14T10:13:39.715900Z",
            "date_published": null,
            "start_time": "2025-06-14T07:00:00Z",
            "end_time": "2025-06-14T18: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_ja_Nikita_Titov_seka_karrysauna",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_och_Nikita_Titov_samt_bastukarra",
                "en": "http://www.malmitalo.fi/en/events/event/CD53FAE1862845A9CBFBD69A4249ADF2/Joose_Keskitalo_The_Mystic_Revelation_of_Teppo_Repo_Panssarijuna_Lokit_and_Nikita_Titov_as_well_as_mobile_sauna"
            },
            "short_description": {
                "fi": "Hyppää mukaan musiikin vietäväksi ja tule pelailemaan ja leikkimään! Ota pyyhe ja uima-asu mukaan, kärrysauna lämpimänä 17–20.",
                "sv": "Låt dig ryckas med av musiken och kom och spela och lek! Ta med handduk och baddräkt, bastun i kärran är varm 17–20.",
                "en": "Come along and enjoy the music, games and playing! Bring your towel and swimming costume; you can bathe in the mobile sauna between 17.00 and 20.00."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Hyppää mukaan musiikin vietäväksi ja tule pelailemaan ja leikkimään! Ota pyyhe ja uima-asu mukaan, kärrysauna lämpimänä 17–20.</p><p>Lavalla melankolista, mutta tarttuvaa soundia Lokeilta ja energistä trauma bluesia Panssarijunalta. Iltaan tummempia sävyjä maalaavat Nikita Titov, jonka indie-rockissa kaikuu niin gotiikan kuin 90-luvun alternativen melankolia sekä folkin mestari Joose Keskitalo, jonka ajattomat laulut johdattavat syvälle tarinoiden ja mystiikan maailmaan.</p><p><b>Aikataulu</b><br>klo 10–15 Malmin nuorisotyöyksikkö: Pelejä ja leikkejä koko perheelle PERUTTU<br>klo 13–15 RaivioBumann Oy: Puukukkapaja<br>klo 14–15 Lokit<br>klo 16–17 Panssarijuna<br>klo 17–20 Kärrysauna + suihku<br>klo 18–19 Nikita Titov<br>klo 20–21 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>klo 10–15<br>Malmin nuorisotyöyksikkö: Pelejä ja leikkejä koko perheelle</b><br>Pelit ja leikit lauantain osalta peruttu, pahoittelumme!</p><p><b>klo 14–15 <br>Lokit</b> <br>Lokit on kymmenen vuotta kasassa ollut helsinkiläinen rokkibändi. Jos Beach Boys olisi aurinkoisten surffirantojen sijaan viettänyt aikaansa 90-luvun lama-Suomessa, Mustalammen rannalla laskuhumalassa ja lenkkarit märkänä kuunnellen kasettimankasta Kasevaa ja Sonic Youthia, se olisi luultavasti kuulostanut Lokeilta.</p><p><b>klo 16–17<br>Panssarijuna</b> <br>Panssarijuna on helsinkiläinen trauma blues -yhtye. Yhtyeen energiset keikat ovat kulttimaineessa. Viisi levyä julkaissut Panssarijuna on esiintynyt pitkin Suomea pikkupubeista aina Tavastialle ja Flow Festivaleille saakka.</p><p>Yhtyeen suomenkielisissä kappaleissa seikkailevat elämän päähänpotkimat ja sivuraiteelle joutuneet. Panssarijunan musiikissa sekoittuvat blues, kantri, punk ja rillumarei. Nelihenkisen kitarabändin livesetin kruunaavat banjo, huuliharppu ja kaljakassi-perkussio. Yleisö nautti yhtyeen keikoista tyypillisesti hymy huulillaan.</p><p><b>klo 17–20  <br>Kärrysauna + suihku</b><br>Pakkaa tapahtumapäivään mukaan myös oma pyyhe, uima-asu ja kenties vihtakin, ja tule mukaan saunomaan! Tuomme tapahtumakesään myös kärrysaunan suihkumahdollisuuden kera, jotta tapahtumapäiväsi olisivat vielä astetta rennompi. Löylyistä voi nauttia uimapuvun tai pyyhkeen kanssa. Tapahtumassa ei ole erillistä pukutilaa.   <br> <br><b>klo 18–19<br>Nikita Titov</b><br>Nikita Titov on indie-rockin saralta ammentava helsinkiläinen laulunkirjoittaja. Musiikissa liikutaan vaivattomasti psykedeelisen folk-rockin euforiasta ysäri-alternativen melankoliaan. Rakkaus goth/new wave -genrejä kohtaan nostaa päätään soundissa vahvasti. Titovin taito kirjoittaa klassikkoja on herättänyt musadiggareiden huomion ensimmäisistä sinkkujulkaisuista lähtien.</p><p><b>klo 20–21 <br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo on aikamme merkittävimpiä lauluntekijöitä, folkin mestari. Uransa aikana Keskitalo on tehnyt jo 14 albumia, joista tuoreimpana kreikkalaisesta mytologiasta kumpuava kahden levyn julkaisu Orfiset laulut V & VI. Debyyttilevy Luoja auta ilmestyi vuonna 2004. Orfiset laulut V & VI on tehty jälleen yhteistyössä The Mystic Revelation Teppo Repo -yhtyeen (Otto Eskelinen, Eero Tikkanen, Arwi Lind) kanssa. Albumien tekstit Keskitalo on kirjoittanut antiikin kreikkalaisten tragedioiden ja myyttien pohjalta.</p><p>Musiikillisesti monipuolinen ja ainutlaatuinen kokonaisuus, jolla kuljetaan ennakkoluulottomasti arkaaisen folkin pohjalta progen ja psykedelian sävyihin. Väkeviä lauluja, näkyjä ja tarinoita. Joose Keskitalon laulut ovat maailmankirjallisuuden klassikoiden kaltaisia ajattomia järkäleitä.</p><p>Tapahtumiin on vapaa pääsy.</p>",
                "sv": "<p>Låt dig ryckas med av musiken och kom och spela och lek! Ta med handduk och baddräkt, bastun i kärran är varm 17–20.</p><p>På scenen hör vi ett melankoliskt men medryckande sound från Lokit och ett energiskt trauma blues från Panssarijuna. På kvällen målar Nikita Titov mörkare toner med indierock som har ett eko av både gotik och 90-talets alternativa melankoli samt Joose Keskitalo, mästare i folk, med tidlösa sånger som leder oss djupt in i berättelsernas och mystikens värld.</p><p><b>Tidtabell</b><br>kl. 10–15 Enheten för ungdomsarbete i Malm: Spel och lekar för hela familjen INSTÄLLD<br>kl. 13–15 RaivioBumann Oy: Workshop i att göra träblommor<br>kl. 14–15 Lokit<br>kl. 16–17 Panssarijuna<br>kl. 17–20 Bastuvagn + dusch<br>kl. 18–19 Nikita Titov<br>kl. 20–21 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>kl. 10–15<br>Enheten för ungdomsarbete i Malm: Spel och lekar för hela familjen</b><br>INSTÄLLD.</p><p><b>kl. 14–15<br>Lokit</b><br>Lokit är ett rockband från Helsingfors som spelat tillsammans i tio år. Om Beach Boys hade tillbringat sin tid i 90-talets lågkonjunktur, i stället för på soliga surfstränder, och i det avtagande ruset med blöta tennisskor vid Mustalampi lyssnat på Kaseva och Sonic Youth, skulle de förmodligen ha låtit som Lokit.</p><p><b>kl. 16–17<br>Panssarijuna</b><br>Panssarijuna är ett trauma bluesband från Helsingfors. Gruppens energiska spelningar präglas av kult. Panssarijuna, som gett ut fem skivor, har uppträtt i hela Finland i allt från små pubar till Tavastia och Flow Festival.</p><p>Bandets låtar på finska handlar om dem som blivit påsparkade och dem som hamnat på sidospår. Panssarijuna blandar blues, country, punk och ”rillumarei” i sin musik. Gitarrkvartettens liveset kröns av banjo, munspel och ölkasse-perkussion. Publiken njuter typiskt av bandets spelningar med ett leende på läpparna.</p><p><b>kl. 17–20<br>Bastuvagn + dusch</b><br>Packa också med handduk, baddräkt och kanske till och med bastukvasten, och kom och bada bastu! Vi har också en bastuvagn med dusch under evenemangssommaren för att din evenemangsdag ska bli ännu mer avkopplande. Du kan njuta av bastubadet i baddräkt eller handduk. Evenemanget saknar separata omklädningsrum.</p><p><b>kl. 18–19<br>Nikita Titov</b><br>Nikita Titov är en låtskrivare från Helsingfors som hämtar inspiration från indierock. I musiken rör man sig lätt ur euforin i den psykedeliska folkrocken till melankolin i 90-talets alternative. Kärleken till goth/new wave-genrerna hörs starkt i soundet. Titovs förmåga att skriva klassiker har väckt musikdiggarnas uppmärksamhet sedan de första singelutgåvorna.</p><p><b>kl. 20–21<br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo är en av vår tids mest betydande låtskrivare och mästare i folk. Under sin karriär har Keskitalo redan gett ut 14 album, varav de senaste två skivorna Orfiset laulut V & VI hämtar inspiration från den grekiska mytologin. Debutskivan Luoja auta utkom 2004. Orfiset laulut V & VI har gjorts i samarbete med bandet The Mystic Revelation of Teppo Repo (Otto Eskelinen, Eero Tikkanen, Arwi Lind). Keskitalo har skrivit albumtexterna utifrån antika grekiska tragedier och myter.</p><p>Det är en musikaliskt mångsidig och unik helhet, där man fördomsfritt rör sig i toner av progressiv och psykedelisk musik som baserar sig på den arkaiska folkmusiken. Starka sånger, syner och berättelser. Joose Keskitalos sånger är tidlösa block som liknar världslitteraturens klassiker.</p><p>Evenemangen har fritt inträde.</p>",
                "en": "<p>Come along and enjoy the music, games and playing! Bring your towel and swimming costume; you can bathe in the mobile sauna between 17.00 and 20.00.</p><p>Melancholic, but catchy sounds by Lokit and energetic trauma blues by Panssarijuna can be heard on stage. Darker hues will descend on the evening when Nikita Titov, whose indie rock contains echoes of the Gothic and the alternative melancholy of the 1990s, and folk wizard Joose Keskitalo, whose timeless songs lead the listener deep into the world of stories and mysticism, take the stage.</p><p><b>Programme</b><br>10.00–15.00 Malmi Youth Work Unit: Play and games for the entire family CANCELLED<br>13.00–15.00 RaivioBumann Oy: Wooden flower workshop<br>14.00–15.00 Lokit<br>16.00–17.00 Panssarijuna<br>17.00–20.00 Mobile sauna + shower<br>18.00–19.00 Nikita Titov<br>20.00–21.00 Joose Keskitalo & The Mystic Revelation of Teppo Repo</p><p><b>10.00–15.00<br>Malmi Youth Work Unit: Play and games for the entire family</b><br>CANCELLED.</p><p><b>14.00–15.00<br>Lokit</b><br>Lokit is a ten-year-old rock band from Helsinki. If the Beach Boys had spent their time in the recession-era Finland of the 1990s, on the shore of Mustalampi pond, slowly sobering up, wearing wet trainers and listening to Kaseva and Sonic Youth on their cassette player, instead of hanging out on surf beaches, they would probably have sounded like Lokit.</p><p><b>16.00–17.00<br>Panssarijuna</b><br>Panssarijuna is a trauma blues group from Helsinki. The energetic shows by the group enjoy a cult following. Panssarijuna, who have released five albums, has toured Finland in all manner of venues from small pubs to Tavastia and Flow Festival.</p><p>The group’s Finnish-language songs feature protagonists who have had it rough and who have been marginalised. Panssarijuna’s music is a mix of blues, country, punk and rowdy olden-times vibes. The four-piece guitar band is accompanied by a banjo, harmonica and percussions made from a bag of beer bottles. The audience usually enjoys their shows by wearing a wide grin.</p><p><b>17.00–20.00<br>Mobile sauna + shower</b><br>Pack your own towel, swimming costume and a sauna whisk, if you like, and come and bathe in the sauna! We will provide visitors with a chance to bathe in the mobile sauna and take a shower to make the event day even more relaxed. You can enjoy the sauna wearing a swimsuit or towel. There are no separate changing rooms.</p><p><b>18.00–19.00<br>Nikita Titov</b><br>Nikita Titov is an indie rock songwriter from Helsinki. The music moves effortlessly between the euphoria of psychedelic folk rock to nineties alternative melancholy. The love for the genres of goth and new wave will often pop up in the sound. Titov's ability to write classics piqued the interest of music lovers as soon as the first singles were published.</p><p><b>20.00–21.00<br>Joose Keskitalo & The Mystic Revelation of Teppo Repo</b><br>Joose Keskitalo is one of the most significant songwriters of our time, a folk master. During his career, Keskitalo has already published 14 albums, the most recent of which is the double-album release ‘Orfiset laulut V & VI’, which was inspired by Greek mythology. His debut album ‘Luoja auta’ was released in 2004. ‘Orfiset laulut V & VI’ was made in collaboration with the Mystic Revelation Teppo Repo group (Otto Eskelinen, Eero Tikkanen, Arwi Lind). Keskitalo wrote the lyrics based on ancient Greek tragedies and myths.</p><p>The record is a musically versatile and unique entity that takes the listener on an open-minded journey to the tunes of progressive rock and psychedelia based on archaic folk. Potent sounds, visions and stories. Joose Keskitalo’s songs are timeless masterpieces in the vein of world literature classics.</p><p>Entry to the events is free of charge.</p>"
            },
            "name": {
                "fi": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit ja Nikita Titov sekä kärrysauna – Malmin tapahtumakesä",
                "sv": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit och Nikita Titov samt bastukärra – Malms evenemangssommar",
                "en": "Joose Keskitalo & The Mystic Revelation of Teppo Repo, Panssarijuna, Lokit and Nikita Titov as well as mobile sauna – Malmi Summer of Events"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65808/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65806",
            "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: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@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": 375001,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-20T13:15:03.065680Z",
                    "last_modified_time": "2025-03-20T13:15:03.065698Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761380.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/375001/?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-03-20T13:15:03.033989Z",
            "last_modified_time": "2025-06-12T13:14:40.814136Z",
            "date_published": null,
            "start_time": "2025-06-12T10:00:00Z",
            "end_time": "2025-06-12T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8804D71D342541FB6DF28523386F10AA/Helsinki-paiva_Goldielocks_Skidit-disko_ja_Michael_Bleu_kesaillan_tanssit",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8804D71D342541FB6DF28523386F10AA/Helsingforsdagen_Goldielocks_Skidit-disco_och_Michael_Bleu_dans_i_sommarkvallen",
                "en": "http://www.malmitalo.fi/en/events/event/8804D71D342541FB6DF28523386F10AA/Helsinki_Day_Goldielocks_Disco_for_kids_and_Michael_Bleu_summer_evening_s_dance"
            },
            "short_description": {
                "fi": "Rakkaan kaupunkimme 475-vuotissyntymäpäivänä Ala-Malmin puistossa riittää synttärikarkelointia koko perheelle huippuartistien kera!",
                "sv": "På vår älskade stads 475-årsdag finns det ett stort utbud av födelsedagsuppträdanden för hela familjen med toppartister i Nedre Malms park!",
                "en": "On the 475th birthday of our dear home town, the entire family should head to Ala-Malmi Park to enjoy activities and performances by top artists!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Rakkaan kaupunkimme 475-vuotissyntymäpäivänä Ala-Malmin puistossa riittää synttärikarkelointia koko perheelle huippuartistien kera!</p><p>Lahjakas ja kansainvälistä huomiota herättänyt <b>Goldielocks</b> nousee lavalle tuoden mukanaan modernin indie-pop-soundinsa ja tarinalliset lyriikkansa, jotka kuljettavat kuulijansa vaihtoehtoiseen todellisuuteen.</p><p>Päivän aikana jorataan niin lasten omassa Skidit Diskossa, jossa <b>DJ Orkidea, MC Aino</b> ja <b>Robo-robotti</b> pitävät huolen, että bileet ovat taatusti parhaat! Kesäillan tansseihin lähdetään Tsuumin opastuksella ja myöhemmin <b>Michael Bleun</b> tahtiin, retrosoulin ja modernin psykedelian lyödessä yläfemmaa taustalla.</p><p>Tule mukaan myös taiteilemaan, tanssimaan, viihtymään kesätorilla tai pyöräyttämään onnenpyörää!</p><p><b>Aikataulu</b><br>11 ja 13 Forum Virium Helsinki: Villi Malmin kesä - Luontoelämyksiä ja yhdessäoloa<br>13–15 Pienperheyhdistys: Klovni<br>13–16 OmaStadi-piste<br>13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: Runokioski<br>14–18 Malmin nuorisotyöyksikkö: tehdään yhdessä taidetta!<br>14–18 Taiteen sulattamo: Häpeäpesula<br>15−18 Iltakorva<br>15–19 Forum Virium Helsinki: Kesäseppeleiden tekoa<br>15–19 Kesätori<br>15–20.30 Kärrysauna + suihku<br>15–16 Malmi/Kollektiivi screening<br>15–18 Malmin seurakunta: Kohtaamisia Ala-Malmin puistossa<br>15–18 Tukiyhdistys Karvinen: Onnenpyörä<br>15–18 Stadin yhteisötalot: Mandalakivien maalausta<br>16.15–17 Skidit disko<br>18–19 Goldielocks<br>20–20.30 Tsuumin tanssinopetusjohdatus<br>20.30–21.30 Michael Bleu: kesäillan tanssit</p><p><b>klo 11 ja 13<br>Forum Virium Helsinki: Villi Malmin kesä - Luontoelämyksiä ja yhdessäoloa</b><br>Anna aistiesi johdattaa ja kulje Malmin vehreillä poluilla. GreenInCities-hanke järjestää kaksi opastettua kierrosta alueella ja Longinojanpuistossa. <br>Lähtö Malmitalon edustalta.</p><p><b>klo 13–15 Pienperheyhdistys: Klovni </b><br>Pienperheyhdistys tuo lasten ja aikuisten riemuksi paikan päälle klovnin, joka kiertelee yleisön seassa heitä viihdyttäen.</p><p><b>klo 13–16 OmaStadi-piste</b><br>Unelmien Helsinki tehdään yhdessä. OmaStadi.<br> <br><b>klo 14–18 Tehdään yhdessä taidetta, teemana Meidän Helsinki</b><br>Malmin nuorisotyöyksikön kesätyöntekijät toteuttavat kaikille avointa hyvänmielen toimintaa. Tule mukaan tekemään taidetta yhdessä, teemana meidän Helsinkimme!</p><p><b>klo 15–19 Ala-Malmin puiston kesätori</b><br>Pienimuotoinen, mutta isosti ilahduttava, kesätori kokoaa Ala-Malmin puistoon toimijoita, jotka tarjoavat tapahtumakesän vierailijoille paikallisia käsitöitä, herkkuja ja muuta kotiin vietävää.</p><p><b>klo 15–19 <br>Forum Virium Helsinki: Kesäseppeleiden ja kasvikoristeiden tekoa</b><br>Tule mukaan Forum Virium Helsingin järjestämään työpajaan, jossa toteutetaan ihania kesäisiä seppeleitä ja muita koristeita.</p><p><b>klo 16.15–17 Skidit Disko: DJ Orkidea, MC Aino ja Robo-robotti</b><br>Tervetuloa juhlimaan kesäistä Helsinkiä yhdessä koko perheen kanssa Konttilavalle! Mitä toivotuimmassa Skidit Diskossa tarjolla on huippubiisejä, leikkiä ja kreisibailausta kaikenikäisille. Skidit-disko on oodi elämälle, tanssille ja kavereille. Let’s baila!</p><p><b>15–20.30 Kärrysauna + suihku</b><br>Ota mukaan oma pyyhe ja tule mukaan saunomaan! Kärrysauna ja suihku tekevät päivästäsi vielä astetta rennomman. Löylyistä voi nauttia uimapuvun tai pyyhkeen kera. Tapahtumassa ei ole erillistä pukutilaa.</p><p><b>klo 18–19 Goldielocks</b><br>Kansainvälistä huomiota kerännyt Goldielocks saapuu valtaamaan tapahtumakesän estradin! <br>Goldielocks yhdistelee musiikissaan menneiden vuosikymmenten orgaanisia bändielementtejä ja tämän päivän indie-vaikutteista popia. Vuonna 2025 Goldielocks osallistui UMK-kisoihin kappaleella Made Of.</p><p><b>klo 20.30–21.30 Michael Bleu & Kesäillan tanssit</b><br>Kesäillan tanssit tuo liikkeen lumoa ja ihastuttavia askeleita Ala-Malmin puistoon Michael Bleun karismaattisen retromusiikin tahtiin.</p>",
                "sv": "<p>På vår älskade stads 475-årsdag finns det ett stort utbud av födelsedagsuppträdanden för hela familjen med toppartister i Nedre Malms park!</p><p>Det talangfulla bandet <b>Goldielocks</b>, som fått internationell uppmärksamhet, kliver upp på scenen med sitt moderna indiepop-sound och sin berättande lyrik, som tar med sig åhörarna till en alternativ verklighet.</p><p>Under dagen får besökarna dansa både på barnens eget Skidit-disco, där <b>DJ Orkidea, MC Aino</b> och <b>roboten Robo</b> ser till att ordna den garanterat bästa festen! Under ledning av Tsuumi och senare <b>Michael Bleus</b> takter blir det dans i sommarkvällen, där retro soul och modern psykedelisk rock gör highfive i bakgrunden.</p><p>Kom med och skapa konst, dansa, trivs på sommartorget eller snurra lyckohjulet! Dagen är full av program.</p><p><b>Tidtabell</b><br>kl. 11 och 13 Forum Virium Helsinki: Vilda sommaren i Malm – Naturupplevelser och samvaro<br>kl. 13–15 Föreningen Pienperheyhdistys ry: Clown<br>kl. 13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: poesi kiosk<br>kl. 14–18 Enheten för ungdomsarbete i Malm: Vi skapar konst tillsammans! Temat är vårt Helsingfors. <br>kl. 14–18 Taiteen sulattamo: Skamtvätten<br>kl. 15–19 Forum Virium Helsinki: Vi binder växtkransar<br>kl. 15–19 Sommartorg<br>kl. 15−18 Iltakorva<br>kl. 15–20.30 Bastuvagn + dusch<br>kl. 15–18 Malms församling: Möten i Nedre Malms park<br>kl. 15–18 Föreningen Tukiyhdistys Karvinen ry: Lyckohjul<br>kl. 15–18 Stadin yhteisötalot: Målning av mandalastenar<br>kl. 15–16 Malm/Kollektiv screening<br>kl. 16.15–17 Skidit-disco<br>kl. 18–19 Goldielocks<br>kl. 20–20.30 Tsuumis dansundervisning som introduktion till dans i sommarkvällen<br>kl. 20.30–21.30 Michael Bleu: dans i sommarkvällen</p><p><b>12.6 kl. 11 och 13<br>Forum Virium Helsinki: Vilda sommaren i Malm – Naturupplevelser och samvaro</b><br>Låt dina sinnen leda dig när vi tar oss fram på lummiga stigar i Malm. Projektet GreenInCities ordnar två guidade rundvandringar i Malm och Stickelbackaparken där deltagarna får bekanta sig med naturen i stadsdelen. Utflykten ger deltagarna en avkopplande stund i naturen och möjlighet att lära sig mer om stadsnaturen.<br>Start från Malms kulturhus.</p><p><b>kl. 13–15 <br>Pienperheyhdistys ry: Clown </b><br>Pienperheyhdistys ry har med sig en clown, som går runt i publiken för att underhålla och glädja barn och vuxna.</p><p><b>12.6 kl. 14–18<br>Vi gör konst tillsammans kring temat Vårt Helsingfors</b><br>Sommarjobbarna vid enheten för ungdomsarbete i Malm ordnar feel good-verksamhet som är öppen för alla. Kom med och gör konst tillsammans kring temat Vårt Helsingfors i enlighet med Helsingforsdagen!</p><p><b>kl. 15–19 <br>Sommartorget i Nedre Malms park</b><br>Det småskaliga men mycket glädjande sommartorget samlar aktörer i Nedre Malms park som erbjuder evenemangssommarens besökare lokalt hantverkskunnande, delikatesser och annat att ta med sig hem.</p><p><b>kl. 15–19 <br>Forum Virium Helsinki: Vi binder växtkransar och somriga växtdekorationer samt reparerar cyklar</b><br>Kom med i en verkstad som ordnas av Forum Virium Helsinki där deltagarna gör ljuvliga växtkransar och andra somriga växtdekorationer. Du kan också reparera din cykel där!</p><p><b>kl. 16.15–17.00 <br>Skidit-disco: DJ Orkidea, MC Aino och roboten Robo</b><br>Välkommen att fira det somriga Helsingfors tillsammans med hela familjen på en containerscen! På det mycket efterfrågade Skidit-discot utlovas de bästa låtarna, lek och galet festande för alla åldrar. Discot är en hyllning till livet, dansen och kompisarna. Let’s party!</p><p><b>kl. 18–19 Goldielocks</b><br>Bandet Goldielocks, som fått internationell uppmärksamhet, kommer för att inta evenemangssommarens estrad! År 2025 deltar Goldielocks i Tävlingen för ny musik (UMK) med låten Made Of.</p><p><b> kl 20.30–21.30 Michael Bleu & dans i sommarkvällen</b><br>Danserna i sommarkvällen för med sig rörelsens magi och förtjusande steg till Nedre Malms park till takterna av Michael Bleus karismatiska retromusik.</p>",
                "en": "<p>On the 475th birthday of our dear home town, the entire family should head to Ala-Malmi Park to enjoy activities and performances by top artists!</p><p>The talented, internationally known <b>Goldielocks</b> will take the stage, bringing her modern indie-pop sound and story-telling lyrics to Malmi, transporting the audience to an alternative reality.</p><p>Earlier in the day, kids will have their own disco event, Skidit Disko, where <b>DJ Orkidea, MC Aino</b> and <b>Robo the Robot</b> will make sure to give the best party in the town! The summer evening dance will start with Tsuumi’s instructional session and continues later accompanied by <b>Michael Bleu</b>, with retro soul music and modern psychedelia coming together in the background.</p><p>Come by to make art, dance, enjoy the summer market or spin a wheel of fortune! The day is filled with fun.</p><p><b>Schedule</b><br>at 11and 13 Forum Virium Helsinki: Wild Malmi summer – Nature experiences and spending time together<br>13–15 Single Parents’ Association: Clown<br>13−16 OmaStadi<br>13–16 Pääroolissa Malmi / Helsingin kaupunginteatteri: Poetry kiosk<br>14–18 Malmi Youth Work Unit: let’s make art together! Theme: our Helsinki. <br>14–18 Taiteen sulattamo: Shame Laundry<br>15−18 Iltakorva<br>15–19 Forum Virium Helsinki: Flower wreath making<br>15–19 Summer market<br>15–20.30 Mobile sauna + shower<br>15–18 Malmi parish: Meetings in Ala-Malmi Park<br>15–18 Tukiyhdistys Karvinen: Wheel of fortune<br>15–18.00  Stadin yhteisötalot: Let's paint mandala stones<br>15–16.00 Malmi/Kollektiivi screening<br>16.15–17.00 Skidit disco for kids<br>18–19 Goldielocks<br>20–20.30 Tsuumi’s dance teacher introduction to the summer evening’s dance<br>20.30–21.30 Michael Bleu: summer evening’s dance</p><p><b>at 11.00 and 13.00<br>Forum Virium Helsinki: Wild Malmi summer – Nature experiences and spending time together</b><br>Let your senses guide you along the green paths of Malmi. The GreenInCities project will organise two guided tours in the Malmi area and Longinoja Park, familiarising the participants with local nature in Malmi. The tour will offer a relaxing moment in nature and the chance to learn more about urban nature.<br>We will depart from the front of Malmitalo.</p><p><b>13.00–15.00 Single Parents’ Association: Clown </b><br>The Single Parents’ Association has invited a clown to the event to mingle with the crowd, entertaining children and adults alike.</p><p><b>14.00–18.00 Let’s make art together with the theme ‘our Helsinki’</b><br>Malmi Youth Work Unit’s summer workers host pleasant activities open to all. Join us in making art with the theme ‘our Helsinki’ to celebrate Helsinki Day!</p><p><b>15.00–19.00 Ala-Malmi Park summer market</b><br>The small but delightful summer market in Ala-Malmi Park features vendors offering local crafts, delicacies and other gifts to take home.</p><p><b>15.00–19.00 <br>Forum Virium Helsinki: Making flower wreaths and repairing bicycles</b><br>Join a workshop organised by Forum Virium Helsinki and create wonderful summer wreaths and decorations made with plants and flowers. You can also try your hand at fixing a bicycle!<br>Location: Workshop area in Ala-Malmi Park</p><p><b>16.15–17.00 <br>Skidit Disko: DJ Orkidea, MC Aino and Robo the Robot</b><br>Bring your whole family to celebrate summer season in Helsinki at Konttilava stage! The popular children’s disco event, Skidit Disko, offers top hits, fun times and a great party for people of all ages. Skidit Disko is an ode to life, dance and friendships. Let’s baila!</p><p><b>18.00–19.00 Goldielocks</b><br>The internationally known Goldielocks takes over the stage!<br>In 2025, Goldielocks competed in the Finnish selection format for the Eurovision Song Contest, Uuden Musiikin Kilpailu, with her song ‘Made Of’.</p><p><b>20.30–21.30 Michael Bleu & summer evening's dance</b><br>Summer evening’s dance brings the magic of movement and beauty of dance to Ala-Malmi Park, accompanied by Michael Bleu’s charismatic retro music.</p>"
            },
            "name": {
                "fi": "Helsinki-päivä: Goldielocks, Skidit-disko ja Michael Bleu + kesäillan tanssit – Malmin tapahtumakesä",
                "sv": "Helsingforsdagen: Goldielocks, Skidit-disco och Michael Bleu + dans i sommarkvällen – Malms evenemangssommar",
                "en": "Helsinki Day: Goldielocks, Disco for kids and Michael Bleu + summer evening’s dance – Malmi Summer of Events"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65806/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:f03eca68-8647-f011-877a-000d3ab0762c",
            "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/helsinki:aflfbatkwe/?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:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/d5f68459-06f5-ef11-be1f-000d3ab0afbb?readableEventId=384_TPR_testi_automaatio_julkaisu3345799421"
                    },
                    "description": null,
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?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:p1393/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2025-06-12T12:37:17.353495Z",
            "last_modified_time": "2025-06-12T12:37:17.353514Z",
            "date_published": "2025-06-12T12:11:46Z",
            "start_time": "2025-06-12T12:30:00Z",
            "end_time": "2025-06-22T05:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 0,
            "audience_max_age": 22,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": "2025-06-12T15:30:00+03:00",
            "enrolment_end_time": "2025-06-13T09:00:00+03:00",
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": {
                "fi": "Annantalo"
            },
            "info_url": null,
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "location_extra_info": {
                "fi": "sali 1"
            },
            "description": {
                "fi": "<div><p>Tarkempi kuvaus</p></div>"
            },
            "name": {
                "fi": "384 TPR testi & automaatio julkaisu"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:f03eca68-8647-f011-877a-000d3ab0762c/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66483",
            "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: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: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"
                },
                {
                    "@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": 837054,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-23T14:13:25.023397Z",
                    "last_modified_time": "2025-05-23T14:13:25.023414Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765387.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/837054/?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-23T14:13:24.892794Z",
            "last_modified_time": "2025-06-12T12:13:48.942243Z",
            "date_published": null,
            "start_time": "2025-07-26T11: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup",
                "en": "http://www.espanlava.fi/en/events/event/506F7E8C98B9BD998137D6D8B5EEEFEB/Jazzup"
            },
            "short_description": {
                "fi": "Jazzup on neljästä omilla tahoillaan vaikuttavasta jazzmuusikosta koostuva kvartetti, joka on esittänyt yhtyeen originaalisävellyksiä lukuisissa koulukonserteissa.",
                "sv": "Jazzup består av fyra musiker, varav alla även är aktiva med sina egna grupper i den finska jazzscenen.",
                "en": "Jazzup is a quartet consisting of four active and versatile musicians in the Finnish jazz landscape."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Jazzup on neljästä omilla tahoillaan vaikuttavasta jazzmuusikosta koostuva kvartetti, joka on esittänyt yhtyeen originaalisävellyksiä lukuisissa koulukonserteissa.</p><p>Pianisti Riitta Paakki, alttosaksofonisti sekä bassoklarinetisti Max Zenger, rumpali Mikko Hassinen ja basisti Antti Ahoniemi ovat kehitelleet sekä kouluympäristöön että jazzklubille sopivan ohjelmiston: esitettävä musiikki on helposti lähestyttävää, mutta samalla taiteellisesti tinkimätöntä.</p><p>Kieli: englanti</p><p>Esitys on toteutettu yhteistyössä Konserttikeskuksen kanssa.</p>",
                "sv": "<p>Jazzup består av fyra musiker, varav alla även är aktiva med sina egna grupper i den finska jazzscenen.</p><p>Riitta Paakki (piano), Max Zenger (altsax oc basklarinett), Mikko Hassinen (trummor) och Antti Ahoniemi (bas) har uppträtt med sina egna kompositioner i både skolor och jazzklubbar sedan år 2020 och på så vis skapat Jazzups repertoar till en konsertupplevelse som passar för både barn och vuxna.</p><p>Språk: engelska</p><p>Framförandet genomförs i samarbete med Konsertcentralen.</p>",
                "en": "<p>Jazzup is a quartet consisting of four active and versatile musicians in the Finnish jazz landscape.</p><p>Riitta Paakki on piano, Max Zenger on alto sax and bass clarinet, Mikko Hassinen on drums and Antti Ahoniemi on double bass. The group has performed their set of original compositions in both schools and jazz clubs since 2020, making a concentrated effort to play concerts that are easily approachable without compromising artistic integrity.</p><p>Language: English</p><p>Performance is produced in collaboration with Concert Centre Finland.</p>"
            },
            "name": {
                "fi": "Jazzup",
                "sv": "Jazzup",
                "en": "Jazzup"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66465",
            "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": 828180,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-22T12:12:42.757850Z",
                    "last_modified_time": "2025-05-22T12:12:42.757864Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765836.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/828180/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-22T12:12:42.705207Z",
            "last_modified_time": "2025-06-12T12:13:47.992294Z",
            "date_published": null,
            "start_time": "2025-07-16T15: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion",
                "en": "http://www.espanlava.fi/en/events/event/CF90CE6E123C243FF32C205B4D334673/Vodou_Fusion"
            },
            "short_description": {
                "fi": "Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.",
                "sv": "Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.",
                "en": "Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms."
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Vodou Fusionin musiikki on täynnä energiaa! Musiikin rytmit kumpuavat alun perin muinaisista länsiafrikkalaisista voodoo-rytmeistä.</p><p>Nämä saavat seurakseen nykyaikaisempia vivahteita, kuten afrobeat, funk, reaggae ja afropop. Monikulttuurinen musiikkimme on täynnä iloa ja saa sinut varmasti tanssimaan!</p><p>Kaikki Vodou Fusionin kappaleet on säveltänyt ja sovittanut Gildas Houessou sekä yhtye. Kappaleiden teemat ovat tuttuja jokaiselle: kunnioitus, rakkaus, moraali, rauha sekä elämän kaikki puolet. Sanat ovat osittain ranskaa, osittain englantia sekä minan kieltä, joka on yksi paikallisista Beninissä puhutuista kielistä.</p><p>Vodou Fusion villitsi Espan lavan Open Stage -sarjassa viime kesänä, ja yleisön pyynnöstä heidät kutsuttiin heti takaisin!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>",
                "sv": "<p>Vodou Fusions musik är full av energi! Musikens rytmer har sitt ursprung i gamla västafrikanska voodoo-rytmer.</p><p>Dessa får sällskap av modernare inslag, som afrobeat, funk, reaggae och afropop. Vår mångkulturella musik är fylld av glädje och får dig helt säkert att dansa!</p><p>Alla Vodou Fusions låtar är skrivna och arrangerade av Gildas Houessou och gruppen. Låtarnas teman är bekanta för alla: respekt, kärlek, moral, fred och livets alla sidor. Texterna är delvis på franska, delvis på engelska och delvis på språket mina, som är ett av de lokala språken i Benin.</p><p>Vodou Fusion deltog i Open Stage på Esplanadestraden förra sommaren, och på publikens begäran fick de genast en ny inbjudan!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>",
                "en": "<p>Vodou Fusion’s music is full of energy! The beat of the music originally stems from ancient West African voodoo rhythms.</p><p>They are accompanied by more contemporary flair, such as afrobeat, funk, reggae and afropop. Our multicultural music is full of joy and is guaranteed to make you dance!</p><p>All songs by Vodou Fusion have been composed and arranged by Gildas Houessou and the band. The themes of the songs are familiar to everyone: respect, love, morality, peace and all sides of life. The lyrics are partly in French, partly in English and Gen, which is one of the local languages spoken in Benin.</p><p>Vodou Fusion made the crowd go wild on Espa Stage in the Open Stage series last summer, and they are now back by popular demand!</p><p>Gildas Houessou - Lead vocals (Benin)<br>Keita Iba - Drums (Senegal)<br>Papa Diakhate - Bass (Senegal)<br>Jacob Kabre - Keyboard (Burkina Faso)<br>Alex Kivikoski - Flute, keyboard (Finland)<br>Macoumba Ndiaye - Percussions ( Senegal)<br>Noora Nurmi - Vocals (Finland)<br>Riche Bamba - Vocals (Ivory Coast)<br>Yoandy Jimeno - Vocals (Cuba / Finland)<br>Susanna Salama - Alto saxophone (Finland)<br>Samuel Leminen - Lead guitar (Finland)</p>"
            },
            "name": {
                "fi": "Vodou Fusion",
                "sv": "Vodou Fusion",
                "en": "Vodou Fusion"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66465/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65774",
            "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:104/?format=api"
                },
                {
                    "@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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": 689403,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T06:13:45.983794Z",
                    "last_modified_time": "2025-05-05T06:13:45.983812Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767408.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/689403/?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-05T06:13:45.828458Z",
            "last_modified_time": "2025-06-12T11:13:58.760022Z",
            "date_published": null,
            "start_time": "2025-06-12T11:00:00Z",
            "end_time": "2025-06-12T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9B07E92B29795833DC176AE034874414/Helsinki-paiva_Sitratorilla_tule_naura_nauti_ja_viihdy_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9B07E92B29795833DC176AE034874414/Helsingforsdagen_pa_Cittertorget_kom_skratta_njut_och_trivs_",
                "en": "http://www.kanneltalo.fi/en/events/event/9B07E92B29795833DC176AE034874414/Helsinki_Day_on_Sitratori_Square_joy_pleasure_and_fun_"
            },
            "short_description": {
                "fi": "Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!",
                "sv": "Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!",
                "en": "We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Kokoonnutaan yhteen juhlimaan 475 vuotta täyttävää kotikaupunkiamme. Luvassa on sirkustunnelmaa: hauskoja temppuja, hattaraa ja klovneja!</p><p>Juhlitaan Helsinkiä sateesta huolimatta!  <br>Suuri osa ohjelmasta siirtyy Kanneltalon sisätiloihin. Hattaraa ja sirkushuvia tarjoillaan Sitratorilla. Tervetuloa!</p><p>Blind Gut Companyn sirkustaiteilijat viihdyttävät meitä urakalla ja me muut voimme nauttia hattarasta, musiikista ja käsillä tekemisestä ilman huolen häivää. Illan aikana Sitratori ja Kanneltalo täyttyvät pikkuklovneista, kun kasvomaalaajat loihtivat sirkusaiheiset ilmeet ja klovninnenät perheen pienimille. Tapahtumassa juhlistetaan myös Sitratorin uutta vehreää keidasta.</p><p>Tapahtuman juontaa näyttelijä <b>Minna Kivelä.</b></p><p><b>OHJELMA:</b></p><p><b>PERUTTU sateen vuoksi: klo 14–16 Kirjojen Kannelmäki -kirjakävely</b><br>Miltä Kantsu näyttää kirjallisuudessa – tule kirjalliselle kävelylle Kantsuun. Voit lainata kirjastosta kävelyn kirjat.</p><p><b>14-18 Korupaja</b><br>Punottuja rannekoruja ja pienemmille lapsille puuhelmi-rannekoruja.</p><p><b>klo 14.30–16.15 Flowtaiteen lajikokeilu - Ulkona</b><br>Come flow with us! Työpajassa vannetanssin ammattilaiset antavat neuvoja flowtaiteeseen kuuluvien vannetanssivanteiden kanssa temppuiluun matalalla kynnyksellä. Ota mukaan kevyeen liikuntaan sopivat vaatteet. Toteuttaja Belenos studio, vannetanssi.fi</p><p><b>14.30–16.30 Pop-Up D-asema Kannelmäki - Rauhan paikka</b></p><p><b>klo 16–18 Kukkabuffet</b><br>Väriloistoa tulviva Kukkabuffet on katettu aidoilla kukilla. Kukkabistron virkistävä menu tarjoilee värikkäitä leikkokukkia, vehreitä koristeita ja ripauksen kimalletta. Ilahduta kukkakoristeilla itseäsi tai anna lahjaksi ystävälle! Tapahtumassa hyödynnetään aina sesongin kukkia sekä hävikkikukkia saatavuuden mukaan. Työpajan toteuttaa Hupsansaa.</p><p><b>klo 16–17.30 Sitratorin kaupunkikeitaan avajaiset ja muraalikierros  - Ulkona</b></p><p><b>klo 16–19 ACTION-RATA </b><br>Tule pelastamaan Helsingin karkit! Suorita huikea tehtävärata, jossa kohtaat vesipyssytaistelun, lusikkapingiksen, kuppitornit, lattia on laavaa -haasteen ja paljon muuta jännää. Uskallatko ottaa haasteen vastaan? Järjestäjänä Nuorisopalvelut.</p><p><b>klo 16–19.30 Kasvomaalausta</b> <br>Perheen pienimmät saavat itselleen upean sirkusilmeen. Toteuttaja Lilla-Millan Juhlat.</p><p><b>klo 16-18.30 Naamiotyöpaja</b><br>House of New Theatren eli HNT:n työpajassa pääset luomaan oman ainutlaatuisen Kannelmäki-naamiosi. HNT:n upeat opiskelijat vetävät hauskoja ja mukaansatempaavia improleikkejä, tervetuloa mukaan! Et tarvitse aiempaa näyttelijän kokemusta. <br> <br><b>klo 16–18 Huudeilla: Red Nose Company & FiBO – Suomalainen barokkiorkesteri</b><br>Huudeilla ovat myös Red Nose Companyn klovnit ja Suomalaisen barokkiorkesterin aluemuusikot, jotka kohtaavat, ilahduttavat ja yllättävät juhlakansan keskellä.</p><p><b>klo 16.30–17 Back 2 the Future -työpaja</b></p><p><b>klo 18–18.45 Back 2 the Future -konsertti</b><br>Tässä live-musiikin, tanssin, laulun, tarinankerronan, räppäämisen ja freestylen hullunmyllyssä yleisö pääsee osallistumaan konsertin kulkuun ja hyppäämään mukaan rytmin vietäväksi. Matka alkaa 70-luvun New Yorkista ja päätyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen!<br>Esiintyjät: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>klo 17 ja klo 19  - Sitratorilla<br>Blind Gut Company: Viihdy! Viihdy! Viihdy! –  halpahintaista viihdettä kovalla pöhinällä!</b><br>Viihdy! Viihdy! Viihdy! -esitys tuo narriperinteen nykypäivään! Tule markkinakojulle kokemaan unohtumattomia sirkuselämyksiä! Kaupan on niin ammattiviihdyttäjien esityksiä kuin omille some-tileille soveltuvia sisältöjä, ja halvalla lähtee, sillä esiintyjät maksavat ostoksista asiakkaille!<br>Viihdyttäjät: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Kesto: 30 minuuttia</p><p>Yhteistyössä: Kanneltalo, Nuorisopalvelut, Kannelmäen kirjasto, Helsingin tapahtumasäätiö, D-asema Kannelmäki, Helsingin aikuissosiaalityö ja Kaupunkiympäristön toimiala, Sibelius-Akatemian Global Music -osasto, FiBO - Suomalainen barokkiorkesteri, Red Nose Company ja House of New Theatre</p>",
                "sv": "<p>Vi samlas för att fira vår hemstad som fyller 475 år. Cirkusstämning utlovas: roliga trick, spunnet socker och clowner!</p><p>Låt oss fira Helsingfors trots regnet!<br>En stor del av programmet kommer att flytta inomhus till Gamlasgården. Spunnet socker och cirkuskonst serveras på Cittertorget. Välkommen!</p><p>Blind Gut Companys cirkusartister underhåller oss så det står härliga till, och vi andra kan njuta av spunnet socker, musik och att skapa med händerna utan ett problem i världen. Under kvällen fylls Gamlasgården av små clowner, när ansiktsmålare ger familjens minstingar clownnäsor och ansiktsmålningar med cirkustema. Vid evenemanget firas också den nya grönskande oasen på Cittertorget.</p><p>Programledare för evenemanget är skådespelaren <b>Minna Kivelä.</b></p><p><b>PROGRAM:</b></p><p><b>kl. 14.30–16.15 Prova på flowkonst</b><br>Come flow with us! I verkstaden har du möjlighet att på egen hand prova på olika former av flowkonst, såsom tunnband och poi. Ta med kläder som lämpar sig för lätt motion. Genomförs av Belenos studio, vannetanssi.fi.</p><p><b>kl. 14–18 Smyckesverkstad</b><br>Flätade armband och armband av träpärlor för yngre barn.</p><p><b>kl. 16–18 Blombuffé</b> <br>En blombuffé som svämmar över av färgprakt är dukad med äkta blommor. Den uppfriskande menyn i blombistron serverar färgglada snittblommor, grönskande dekorationer och en gnutta glitter. Gläd dig själv med blomsterdekorationer eller ge bort som gåva till en vän! På evenemanget utnyttjas alltid säsongens blommor och svinnblommor enligt tillgång. Verkstaden genomförs av Hupsansaa.</p><p><b>kl. 16–19.30 Ansiktsmålning</b> <br>Familjens minsta får ett strålande cirkusutseende. Genomförs av Lilla-Miljan Juhlat.</p><p><b>kl. 16–18: Huudeilla: Red Nose Company & FiBO - Finländska barockorkestern</b><br>Också Red Nose Companys clowner och Finländska barockorkesterns regionmusiker kommer inom ramarna för projektet Huudeilla för att möta, glädja och överraska besökarna.</p><p><b>kl. 16.30–17 Verkstaden Back 2 the Future</b></p><p><b>kl. 18–18.45 Konserten Back 2 the Future</b><br>I den här villervallan av livemusik, dans, sång, berättande, rappande och freestyle får publiken delta i konsertens gång och låta sig hänföras av rytmerna. Resan börjar i 70-talets New York samt går via 80-talets Chicago och millennieskiftets Paris in i framtiden!<br>På scenen: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>kl. 17 och kl. 19<br>Blind Gut company: Viihdy! Viihdy! Viihdy! – simpel underhållning med buller och bång!</b><br>Föreställningen Viihdy! Viihdy! Viihdy! (Trivs! Trivs! Trivs!) tar narrtraditionen till nutiden! Kom till marknadsståndet för oförglömliga cirkusupplevelser! Såväl föreställningar av yrkesunderhållare som innehåll för dina egna sociala mediekonton är till salu, och det billigt, eftersom de som uppträder betalar inköpen till kunderna!<br>Underhållare: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Längd: 30 minuter</p><p>I samarbete: Gamlasgården, Ungdomstjänsterna, Gamlas bibliotek, Helsingfors evenemangsstiftelse, D-asema Kannelmäki, Helsingfors vuxensocialarbete och stadsmiljösektor, Sibelius-Akademins avdelning Global music, FiBO - Finländska barockorkestern, Red Nose Company och House of New Theatre</p>",
                "en": "<p>We come together to celebrate the 475th anniversary of our home city. Come and enjoy the circus atmosphere: fun tricks, candy floss and clowns!</p><p>Let’s celebrate Helsinki!   <br>Most of the programs will be held indoors due to the rain. Cotton candy and Blind Gut Company’s circus performance will be served at Sitratori square.   <br>You are warmly welcome!</p><p>The circus performers of Blind Gut Company will entertain us while we enjoy eating candy floss, listening to music and doing crafts without a care in the world. The evening will fill the square with little clowns, when face painters design circus-themed looks and clown noses for the youngest in the family. The event is also a celebration for the new green oasis of Sitratori Square.</p><p>The event is hosted by actress <b>Minna Kivelä.</b></p><p>In case of bad weather, the music programme and workshops will be held in Kanneltalo's lobby.</p><p><b>PROGRAMME:</b></p><p><b>CANCELLED due the rain: 14.00–16.00 Kirjojen Kannelmäki – ‘Kannelmäki in literature’ walking tour </b></p><p><b>14–18 Bracelet workshop </b><br>Braided bracelets  and wooden bead bracelets for the little ones.</p><p><b>14.30-16.30 Pop-up D-station Kannelmäki – A Place for Peace </b></p><p><b>14.30–16.15 Experiment with Flow Art  - OUTDOORS</b><br>Come flow with us! This workshop lets you experiment with different forms of flow art, such as hooping and poi spinning. Wear clothing suitable for light exercise. Implemented by Belenos studio, vannetanssi.fi</p><p><b>16-17.30 Opening of the Sitratori summer oasis and a mural warking tour - Outdoors </b></p><p><b>16.00–18.00 Flower Buffet </b><br>The lush and colourful Flower Buffet is served! The fresh menu of the flower ‘bistro’ offers bright cut flowers, lush decorations and a sprinkle of sparkle. Delight yourself or your friends with beautiful real flower decor! The event always utilises seasonal flowers and surplus flowers based on availability. The workshop is hosted by Hupsansaa.</p><p><b>16-18.30 Masquarade Workshop </b></p><p><b>16.00–19.30 Face painting</b> <br>The youngest in the family will get fun circus looks. Implemented by Lilla-Millan Juhlat.</p><p><b>16.00–18.00 Huudeilla – In the ‘hood: Red Nose Company & FiBO – Finnish Baroque Orchestra</b><br>The clowns of the Red Nose Company will also be in the ‘hood, along with the regional musicians of the Finnish Baroque Orchestra, meeting with, delighting and surprising the visitors.</p><p><b>16.30–17.00 Back 2 the Future workshop</b></p><p><b>18.00–18.45 Back 2 the Future concert</b><br>In this carnival of live music, dance, song, storytelling, rapping and freestyle, the audience will have the chance to alter the flow of the concert and jump into the rhythm. The journey will start from 1970s New York, move to Chicago of the 1980s and to Paris in the turn of the millennium, ending up in the future!<br>Performers: Simeoni Juoperi, Elias Niskanen, Linda Ilves, Joose Kyyrö, Arttu Rintakumpu</p><p><b>At 17.00 and 19.00 @Sitratori Square<br>Blind Gut Company: Fun! Fun! Fun! – cheap entertainment at a full run!</b><br>Fun! Fun! Fun! performance by modern-day jesters! Visit the market stand for unforgettable circus experiences! You can choose from performances by professional entertainers or content that would be perfect for your own social media channels – and everything is a bargain, as the performers will pay the customers for their purchases!<br>Entertainers: Inga Björn, Tuomas Vuorinen, Ira Oinonen, Jere Virta<br>Duration: 30 minutes</p><p>In cooperation with: Cultural Centre Kanneltalo, Youth Services, Kannelmäki Library, Helsinki Events Foundation, D-asema Kannelmäki, Helsinki Adult Social Work and Urban Environment Division, Global Music department of the Sibelius Academy, FiBO – Finnish Baroque Orchestra, Red Nose Company and House of New Theatre</p>"
            },
            "name": {
                "fi": "Helsinki-päivä Sitratorilla – tule, naura, nauti ja viihdy!",
                "sv": "Helsingforsdagen på Cittertorget – kom, skratta, njut och trivs!",
                "en": "Helsinki Day on Sitratori Square – joy, pleasure and fun!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65774/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66619",
            "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:31/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1001174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-12T08:13:57.270285Z",
                    "last_modified_time": "2025-06-12T08:13:57.270301Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775117.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1001174/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-12T08:13:57.034321Z",
            "last_modified_time": "2025-06-12T08:13:57.562884Z",
            "date_published": null,
            "start_time": "2025-08-14T12:00:00Z",
            "end_time": "2025-08-14T17: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,
            "provider_contact_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival",
                "sv": "http://www.caisa.fi/sv/evenemang/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival",
                "en": "http://www.caisa.fi/en/events/event/985BEBF0CDE330BA5A2AF210181174A5/OAF_Outsider_Art_Festival"
            },
            "short_description": {
                "fi": "Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.",
                "sv": "Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.",
                "en": "The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!"
            },
            "location_extra_info": null,
            "description": {
                "fi": "<p>Outsider Art Festivalin avajaisia juhlistetaan 14.8.2025 Taiteiden yönä Elannon Leipätehtaan alueella Kulttuurikeskus Caisassa ja Tekstin talolla.</p><p>Leipätehtaalle rakentuu avajaisviikonloppuna elämyksellinen tapahtumakokonaisuus Outsider Art Festivalin, Kulttuurikeskus Caisan ja Tekstin talon yhteistyönä.<br> <br>Caisassa nähdään mm. outsider-taiteen taidenäyttely, keraamisia veistoksia ja noisea yhdistävä installaatio, performansseja ja musiikkiesityksiä. Tekstin talolla OAF järjestää yhdessä WSOY:n kanssa runostagen.</p><p><b>Avajaisten ohjelma Kulttuurikeskus Caisalla:</b></p><p><b>15.00–15.45 Ryhmänäyttelyn avajaiset Caisan galleriassa</b><br>Outsider-taiteen tuoreimpia virtauksia esittelevän ryhmänäyttelyn teema on tulevaisuus. Näyttely on avoinna koko illan ja jatkuu lauantaihin 23.8. asti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants -installaatio Caisan takahuonetilassa</b><br>Taiteilijaduon installaatio Plants on keinotekoisesti ääntelevä puutarha, jossa yhdistyy noise ja veistokset. Installaatio on koettavissa myös perjantaina 15.8. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart</b><br>Sali</p><p>I RÄKÄlicious on performatiivinen pop-punk-duo, jonka muodostavat videotaiteilija Sandra Marins ja äänitaiteilija Mai Pesonen. RÄKÄliciousin ydin on tee-se-itse-toiminnassa ja queer-kokemusta korostavassa, hieman vinksahtaneessa lähestymistavassa.</p><p>Jussi P Niinku Pekka & Vähäsähkö-duo esittää suomenkielistä kokeellista aivofolkia. Jussi P on tehnyt aivofolkia vuodesta 2017 ja tätä ennen muuta omaa musiikkia jo vuodesta 2006 lähtien. Vähäsähkö eli Harri Vähänissi tekee noisea, ambientia, ääniä ja rytmejä itse rakentamillaan elektronisilla soittimilla, luoden rikkaan äänimaailman ympäröimään Jussi P:n laulua ja akustista kitaraa.</p><p>Milla Heart on helsinkiläinen, suomenkielistä dreamypop-musiikkia esittävä lauluntekijä. Millan musiikissa on toivoa, iloa ja rakkautta. Milla haluaa vaikuttaa musiikillaan positiivisesti ja saada ihmiset näkemään itsensä täydellisinä kaikkine virheineen.</p><p>Illan aikana nähdään myös OAF:n esittävän taiteen ohjelmasta Pekka Luodeslammen ja LIPGLOSSBOYn performanssit.</p><p><b>Avajaisten ohjelma Tekstin talolla:</b></p><p><b>20.15–22.00 OAF Runostage permantosalissa:</b><br>OAF:n ja WSOY:n yhteinen runostage tutkii millaista on kirjallisuuden ulkopuolinen kirjallisuus. Runostagella kuullaan OAF:n kirjallisuuden ohjelman taiteilijoiden tekstejä heidän itsensä lukeminaan.</p><p>Taiteiden yön ohjelma on ilmainen!</p>",
                "sv": "<p>Outsider Art Festival öppnas den 14 augusti 2025 under Konstens natt på Elantos Leipätehdas, Kulturcentret Caisa och Textens hus.</p><p>Under öppningshelgen byggs en evenemangshelhet fylld av upplevelser på Leipätehdas som ett samarbete mellan Outsider Art Festival, Kulturcentret Caisa och Textens hus.<br> <br>På Caisa får vi till exempel se en utställning med outsider-konst, en installation som kombinerar keramikskulpturer och noise, performanceföreställningar och musikframträdanden. OAF ordnar runostage på Textens hus tillsammans med WSOY.</p><p><b>Program på Kulturcentret Caisa under öppningen:</b></p><p><b>15.00–15.45 Grupputställningen öppnas i Caisas galleri</b><br>Outsider-konstens senaste strömningar visas i en grupputställning på temat framtiden. Utställningen är öppen hela kvällen och pågår till lördagen den 23 augusti.</p><p><b>16.00–21.00 Ksenia Voy Kheninen & Zherbin – Plants-installation i Caisas bakre rum</b><br>Konstnärsduons installation Plats är en trädgård med konstgjorda ljud, som kombinerar noise med skulpturer. Du kan uppleva installationen även fredagen den 15 augusti kl. 16–21.</p><p><b>18.00–20.00 RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart-konsert i Caisas sal</b><br>I kvällens dukning ingår dreamypop som andas positivitet, performativ pop-punk och folk som lyfter fram queer-upplevelser samt hjärnfolk som kombinerar noise och ambient på ett experimentellt sätt.</p><p>Under kvällen får vi också se performanceföreställningar av Pekka Luodeslampi och LIPGLOSSBOY från OAF:s scenkonstprogram.</p><p><b>Öppningens program på Textens hus:</p><p>20.15–22.00 OAF Runostage i parkettsalen.</b></p><p>OAF:s och WSOY:s gemensamma runostage utforskar hur det är att vara litteratur utanför litteraturen. Under Runostage får vi höra texter av konstnärer som deltar i OAF:s litteraturprogram, lästa av dem själva.</p><p>Programmet under Konstens natt är gratis!</p>",
                "en": "<p>The opening of OAF 2025 will be celebrated on the Night of the Arts 14.8.2025!</p><p>The place is located on the site of the old Elanto Bread Factory block, at the Cultural Centre Caisa and the House of Text.</p><p>On the opening weekend, Leipätehdas will be the venue for an experiential event, a collaboration between Outsider Art Festival, Cultural Centre Caisa and the House of Text.</p><p>At Caisa, you can see an outsider art exhibition, various performances and music acts and an installation combining ceramic sculptures and noise. At The House of Text, OAF will organize a poetry stage together with the publisher WSOY.</p><p><b>Opening Program at Cultural Centre Caisa:</p><p>3.00 PM – 3.45 PM Opening of the group exhibition at Caisa’s gallery.</b><br>The theme for the group exhibition showcasing the latest currents of outsider art is Future. The exhibition will remain open all evening and continues until Saturday 23rd of August.</p><p><b>4.00 PM – 9.00 PM Ksenia Voy Kheninen & Zherbin – Plants -installation in Caisa’s backstage area.</b><br>The installation of the artist duo, Plants is an artificial sounding garder, which combines noise and sculptures. Installation can be experienced also on Friday 15th of August from 4.00 PM to 9.00 PM.</p><p><b>6.00 PM – 8.00 PM RÄKÄlicious, Jussi P Niinku Pekka & Vähäsähkö, Milla Heart -concert at Caisa Hall.</b><br>The musical offerings include dreamy pop oozing of positivity, performative pop-punk emphasizing queer experience and aivofolk which is experimental combination of folk, noise and ambience.<br>Throughout the evening, there will be performances by OAF performance art artists Pekka Luodeslampi and LIPGLOSSBOY.</p><p><b>Opening Program at the House of Text:</p><p>8.15 PM – 10.00 PM: OAF Poetry Stage at Permantosali.</b></p><p>A joint poetry stage by OAF and WSOY, exploring what “literature beyond literature” could mean. At Poetry Stage artists from the OAF literature program read their own texts to the audience.</p><p>All Night of the Arts events are free of charge.</p>"
            },
            "name": {
                "fi": "OAF – Outsider Art Festival – Taiteiden yö Caisassa",
                "sv": "OAF – Outsider Art Festival – Konstens natt på Caisa",
                "en": "OAF – Outsider Art Festival – The Night of Arts"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}