Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 22859,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=67",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=65"
    },
    "data": [
        {
            "id": "kulke:68045",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/silvabelghiti/",
                        "sv": "https://www.lippu.fi/artist/silvabelghiti/",
                        "en": "https://www.lippu.fi/artist/silvabelghiti/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/7€",
                        "sv": "20€/7€",
                        "en": "20€/7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494674,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T15:13:07.932043Z",
                    "last_modified_time": "2026-01-28T15:13:07.932057Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781681.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494674/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T15:13:07.823125Z",
            "last_modified_time": "2026-03-25T08:14:00.999569Z",
            "date_published": null,
            "start_time": "2026-04-11T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Celestial Body – galaktinen rakkaustarina",
                "sv": "INSTÄLLT Celestial Body – en galaktisk kärlekshistoria",
                "en": "CANCELLED Celestial Body – a galactic love story"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.",
                "sv": "Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.",
                "en": "The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F24C236A846C53BB41A4BF8DF03BAB4C/PERUTTU_Celestial_Body_galaktinen_rakkaustarina",
                "sv": "http://www.caisa.fi/sv/evenemang/event/F24C236A846C53BB41A4BF8DF03BAB4C/INSTALLT_Celestial_Body_en_galaktisk_karlekshistoria",
                "en": "http://www.caisa.fi/en/events/event/F24C236A846C53BB41A4BF8DF03BAB4C/CANCELLED_Celestial_Body_a_galactic_love_story"
            },
            "description": {
                "fi": "<p>Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.</p><p>Kaksikielinen esitystaideteos Celestial Body kutsuu yleisön seuraamaan planetaarista rakkaustarinaa planetaarion sisään.</p><p>Avaruuden tyhjiössä valo matkustaa vuodessa 9,46 biljoonaa kilometriä. Kaksi taivaankappaletta kiertää radoillaan kaukana toisistaan. Kun toisen matka päättyy, valo saavuttaa toisen vasta biljoonien vuosien päästä.<br>  <br>Teoksessa kurotetaan kohti tähtiä, jotka syttyvät ja sammuvat – ja toisinaan vastaavat rakkaan kutsuun. Esiintyjä Silva Belghiti toimii yleisön matkaoppaana ulkoavaruuden kylmään syliin ja takaisin.<br>  <br>Rakkausrunoja ja tähtitiedettä yhdistelevä teos pohtii kommunikaation rajoja ja kaipausta sekä hahmottelee maailmankaikkeuden mittakaavaa ihmiskehon perspektiivistä.<br>Työryhmän jäsenet <br>Ohjaus, konsepti ja tuotanto: Joel Teixeira Neves<br>Esiintyjä: Silva Belghiti<br>Äänisuunnittelu: Johannes Birlinger<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Tuottaja: Riikka Lakea<br>Tuotannolliset yhteistyökumppanit: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Tukijat: Koneen säätiö & Kiasma-teatteri<br>Valokuvat: Pirje Mykkänen /Kansallisgalleria<br> Teaser: Iiri Poteri<br> <br>Esityksen kesto: 90 min<br>Ikäsuositus: + 13-v<br>Kieli: Esityksen kielet ovat suomalainen viittomakieli ja englanti.<br>Esitys on tekstitetty.<br>Sisältöhuomiot: Esitys koetaan makaavassa asennossa. Esitykseen kuuluu pitkiä hämäriä jaksoja sekä voimakkaita valon vaihdoksia. Tapahtuma ei valitettavasti ole pyörätuolilla liikkuvalle esteetön.</p>",
                "sv": "<p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.</p><p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.<br>I rymdens vakuum färdas ljuset 9,46 biljoner kilometer per år. Två himlakroppar kretsar i sina banor långt ifrån varandra. När den enas resa tar slut når ljuset den andra först flera biljoner år senare.<br>  <br>I verket sträcker vi oss mot stjärnor som tänds och slocknar – och ibland svarar på den älskades rop. Artisten Silva Belghiti guidar publiken in i den yttre rymdens kalla famn och tillbaka.<br>  <br>Detta verk som utforskar kärlekshistorier och astronomi reflekterar över kommunikationens gränser och saknad samt gestaltar världsalltets skala ur människokroppens perspektiv.<br>Arbetsgruppens medlemmar <br>Regi, koncept och produktion: Joel Teixeira Neves<br>På scenen: Silva Belghiti<br>Ljuddesign: Johannes Birlinger<br>Ljusdesign och scenografi: Saana Volanen<br>Producent: Riikka Lakea<br>Produktionspartner: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Sponsorer: Kone-stiftelsen & Kiasma-teatern<br>Fotografier: Pirje Mykkänen/Nationalgalleriet<br> Teaser: Iiri Poteri<br> <br>Föreställningens längd: 90 min.<br>Åldersrekommendation: 13+ år<br>Språk: Föreställningens språk är finskt teckenspråk och engelska.<br>Föreställningen textas.<br>Innehållsvarningar: Man upplever föreställningen i liggande ställning. I föreställningen ingår långa stunder av halvmörker och kraftiga ljusväxlingar. Evenemanget är tyvärr inte tillgängligt för rullstolsburna.</p>",
                "en": "<p>The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium.</p><p>In the vacuum of space, light travels 9.46 trillion kilometres a year. Two celestial bodies are in their respective orbits far away from each other. When the journey of one ends, the light will not reach the other until trillions of years later.<br>  <br>The work reaches out to the stars, which light up and go out – and sometimes answer the call of a lover. Performer Silva Belghiti will guide the audience into the cold embrace of outer space and back.<br>  <br>Combining love poetry and astronomy, the work explores the limits of communication and longing, and charts the scale of the universe from the perspective of the human body.<br>Creative team <br>Direction, concept and production: Joel Teixeira Neves<br>Performer: Silva Belghiti<br>Sound design: Johannes Birlinger<br>Lighting design and stage design: Saana Volanen<br>Producer: Riikka Lakea<br>Production partners: Reality Research Centre, Ursa Minor, Ursa ry<br>Supported by: Kone Foundation and Kiasma Theatre<br>Photos: Pirje Mykkänen / Finnish National Gallery<br> Teaser: Iiri Poteri<br> <br>Performance duration: 90 min<br>Recommended age: 13+<br>Language: The languages of the performance are Finnish Sign Language and English.<br>The performance will have subtitles.<br>Content notes: The performance is intended to be experienced lying down. The performance includes long sequences in dim lighting and strong changes in light. Unfortunately, the event is not wheelchair accessible.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68045/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68044",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/silvabelghiti/",
                        "sv": "https://www.lippu.fi/artist/silvabelghiti/",
                        "en": "https://www.lippu.fi/artist/silvabelghiti/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/7€",
                        "sv": "20€/7€",
                        "en": "20€/7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494673,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T15:13:07.518510Z",
                    "last_modified_time": "2026-01-28T15:13:07.518525Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781680.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494673/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T15:13:07.409228Z",
            "last_modified_time": "2026-03-25T08:14:00.523820Z",
            "date_published": null,
            "start_time": "2026-04-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Celestial Body – galaktinen rakkaustarina",
                "sv": "INSTÄLLT Celestial Body – en galaktisk kärlekshistoria",
                "en": "CANCELLED Celestial Body – a galactic love story"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.",
                "sv": "Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.",
                "en": "The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/822B1701C506CCD126556F1486482A2F/PERUTTU_Celestial_Body_galaktinen_rakkaustarina",
                "sv": "http://www.caisa.fi/sv/evenemang/event/822B1701C506CCD126556F1486482A2F/INSTALLT_Celestial_Body_en_galaktisk_karlekshistoria",
                "en": "http://www.caisa.fi/en/events/event/822B1701C506CCD126556F1486482A2F/CANCELLED_Celestial_Body_a_galactic_love_story"
            },
            "description": {
                "fi": "<p>Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.</p><p>Kaksikielinen esitystaideteos Celestial Body kutsuu yleisön seuraamaan planetaarista rakkaustarinaa planetaarion sisään.</p><p>Avaruuden tyhjiössä valo matkustaa vuodessa 9,46 biljoonaa kilometriä. Kaksi taivaankappaletta kiertää radoillaan kaukana toisistaan. Kun toisen matka päättyy, valo saavuttaa toisen vasta biljoonien vuosien päästä.<br>  <br>Teoksessa kurotetaan kohti tähtiä, jotka syttyvät ja sammuvat – ja toisinaan vastaavat rakkaan kutsuun. Esiintyjä Silva Belghiti toimii yleisön matkaoppaana ulkoavaruuden kylmään syliin ja takaisin.<br>  <br>Rakkausrunoja ja tähtitiedettä yhdistelevä teos pohtii kommunikaation rajoja ja kaipausta sekä hahmottelee maailmankaikkeuden mittakaavaa ihmiskehon perspektiivistä.<br>Työryhmän jäsenet <br>Ohjaus, konsepti ja tuotanto: Joel Teixeira Neves<br>Esiintyjä: Silva Belghiti<br>Äänisuunnittelu: Johannes Birlinger<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Tuottaja: Riikka Lakea<br>Tuotannolliset yhteistyökumppanit: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Tukijat: Koneen säätiö & Kiasma-teatteri<br>Valokuvat: Pirje Mykkänen /Kansallisgalleria<br> Teaser: Iiri Poteri<br> <br>Esityksen kesto: 90 min<br>Ikäsuositus: + 13-v<br>Kieli: Esityksen kielet ovat suomalainen viittomakieli ja englanti.<br>Esitys on tekstitetty.<br>Sisältöhuomiot: Esitys koetaan makaavassa asennossa. Esitykseen kuuluu pitkiä hämäriä jaksoja sekä voimakkaita valon vaihdoksia. Tapahtuma ei valitettavasti ole pyörätuolilla liikkuvalle esteetön.</p>",
                "sv": "<p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.</p><p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.<br>I rymdens vakuum färdas ljuset 9,46 biljoner kilometer per år. Två himlakroppar kretsar i sina banor långt ifrån varandra. När den enas resa tar slut når ljuset den andra först flera biljoner år senare.<br>  <br>I verket sträcker vi oss mot stjärnor som tänds och slocknar – och ibland svarar på den älskades rop. Artisten Silva Belghiti guidar publiken in i den yttre rymdens kalla famn och tillbaka.<br>  <br>Detta verk som utforskar kärlekshistorier och astronomi reflekterar över kommunikationens gränser och saknad samt gestaltar världsalltets skala ur människokroppens perspektiv.<br>Arbetsgruppens medlemmar <br>Regi, koncept och produktion: Joel Teixeira Neves<br>På scenen: Silva Belghiti<br>Ljuddesign: Johannes Birlinger<br>Ljusdesign och scenografi: Saana Volanen<br>Producent: Riikka Lakea<br>Produktionspartner: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Sponsorer: Kone-stiftelsen & Kiasma-teatern<br>Fotografier: Pirje Mykkänen/Nationalgalleriet<br> Teaser: Iiri Poteri<br> <br>Föreställningens längd: 90 min.<br>Åldersrekommendation: 13+ år<br>Språk: Föreställningens språk är finskt teckenspråk och engelska.<br>Föreställningen textas.<br>Innehållsvarningar: Man upplever föreställningen i liggande ställning. I föreställningen ingår långa stunder av halvmörker och kraftiga ljusväxlingar. Evenemanget är tyvärr inte tillgängligt för rullstolsburna.</p>",
                "en": "<p>The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium.</p><p>In the vacuum of space, light travels 9.46 trillion kilometres a year. Two celestial bodies are in their respective orbits far away from each other. When the journey of one ends, the light will not reach the other until trillions of years later.<br>  <br>The work reaches out to the stars, which light up and go out – and sometimes answer the call of a lover. Performer Silva Belghiti will guide the audience into the cold embrace of outer space and back.<br>  <br>Combining love poetry and astronomy, the work explores the limits of communication and longing, and charts the scale of the universe from the perspective of the human body.<br>Creative team <br>Direction, concept and production: Joel Teixeira Neves<br>Performer: Silva Belghiti<br>Sound design: Johannes Birlinger<br>Lighting design and stage design: Saana Volanen<br>Producer: Riikka Lakea<br>Production partners: Reality Research Centre, Ursa Minor, Ursa ry<br>Supported by: Kone Foundation and Kiasma Theatre<br>Photos: Pirje Mykkänen / Finnish National Gallery<br> Teaser: Iiri Poteri<br> <br>Performance duration: 90 min<br>Recommended age: 13+<br>Language: The languages of the performance are Finnish Sign Language and English.<br>The performance will have subtitles.<br>Content notes: The performance is intended to be experienced lying down. The performance includes long sequences in dim lighting and strong changes in light. Unfortunately, the event is not wheelchair accessible.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68044/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68043",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/silvabelghiti/",
                        "sv": "https://www.lippu.fi/artist/silvabelghiti/",
                        "en": "https://www.lippu.fi/artist/silvabelghiti/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/7€",
                        "sv": "20€/7€",
                        "en": "20€/7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494672,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T15:13:07.109273Z",
                    "last_modified_time": "2026-01-28T15:13:07.109287Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781679.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494672/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T15:13:07.005998Z",
            "last_modified_time": "2026-03-25T08:13:59.930163Z",
            "date_published": null,
            "start_time": "2026-04-09T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Celestial Body – galaktinen rakkaustarina",
                "sv": "INSTÄLLT Celestial Body – en galaktisk kärlekshistoria",
                "en": "CANCELLED Celestial Body – a galactic love story"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.",
                "sv": "Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.",
                "en": "The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/8DE1DAE20D0FB9CCC3490D0F68977EE5/PERUTTU_Celestial_Body_galaktinen_rakkaustarina",
                "sv": "http://www.caisa.fi/sv/evenemang/event/8DE1DAE20D0FB9CCC3490D0F68977EE5/INSTALLT_Celestial_Body_en_galaktisk_karlekshistoria",
                "en": "http://www.caisa.fi/en/events/event/8DE1DAE20D0FB9CCC3490D0F68977EE5/CANCELLED_Celestial_Body_a_galactic_love_story"
            },
            "description": {
                "fi": "<p>Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.</p><p>Kaksikielinen esitystaideteos Celestial Body kutsuu yleisön seuraamaan planetaarista rakkaustarinaa planetaarion sisään.</p><p>Avaruuden tyhjiössä valo matkustaa vuodessa 9,46 biljoonaa kilometriä. Kaksi taivaankappaletta kiertää radoillaan kaukana toisistaan. Kun toisen matka päättyy, valo saavuttaa toisen vasta biljoonien vuosien päästä.<br>  <br>Teoksessa kurotetaan kohti tähtiä, jotka syttyvät ja sammuvat – ja toisinaan vastaavat rakkaan kutsuun. Esiintyjä Silva Belghiti toimii yleisön matkaoppaana ulkoavaruuden kylmään syliin ja takaisin.<br>  <br>Rakkausrunoja ja tähtitiedettä yhdistelevä teos pohtii kommunikaation rajoja ja kaipausta sekä hahmottelee maailmankaikkeuden mittakaavaa ihmiskehon perspektiivistä.<br>Työryhmän jäsenet <br>Ohjaus, konsepti ja tuotanto: Joel Teixeira Neves<br>Esiintyjä: Silva Belghiti<br>Äänisuunnittelu: Johannes Birlinger<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Tuottaja: Riikka Lakea<br>Tuotannolliset yhteistyökumppanit: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Tukijat: Koneen säätiö & Kiasma-teatteri<br>Valokuvat: Pirje Mykkänen /Kansallisgalleria<br> Teaser: Iiri Poteri<br> <br>Esityksen kesto: 90 min<br>Ikäsuositus: + 13-v<br>Kieli: Esityksen kielet ovat suomalainen viittomakieli ja englanti.<br>Esitys on tekstitetty.<br>Sisältöhuomiot: Esitys koetaan makaavassa asennossa. Esitykseen kuuluu pitkiä hämäriä jaksoja sekä voimakkaita valon vaihdoksia. Tapahtuma ei valitettavasti ole pyörätuolilla liikkuvalle esteetön.</p>",
                "sv": "<p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.</p><p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.<br>I rymdens vakuum färdas ljuset 9,46 biljoner kilometer per år. Två himlakroppar kretsar i sina banor långt ifrån varandra. När den enas resa tar slut når ljuset den andra först flera biljoner år senare.<br>  <br>I verket sträcker vi oss mot stjärnor som tänds och slocknar – och ibland svarar på den älskades rop. Artisten Silva Belghiti guidar publiken in i den yttre rymdens kalla famn och tillbaka.<br>  <br>Detta verk som utforskar kärlekshistorier och astronomi reflekterar över kommunikationens gränser och saknad samt gestaltar världsalltets skala ur människokroppens perspektiv.<br>Arbetsgruppens medlemmar <br>Regi, koncept och produktion: Joel Teixeira Neves<br>På scenen: Silva Belghiti<br>Ljuddesign: Johannes Birlinger<br>Ljusdesign och scenografi: Saana Volanen<br>Producent: Riikka Lakea<br>Produktionspartner: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Sponsorer: Kone-stiftelsen & Kiasma-teatern<br>Fotografier: Pirje Mykkänen/Nationalgalleriet<br> Teaser: Iiri Poteri<br> <br>Föreställningens längd: 90 min.<br>Åldersrekommendation: 13+ år<br>Språk: Föreställningens språk är finskt teckenspråk och engelska.<br>Föreställningen textas.<br>Innehållsvarningar: Man upplever föreställningen i liggande ställning. I föreställningen ingår långa stunder av halvmörker och kraftiga ljusväxlingar. Evenemanget är tyvärr inte tillgängligt för rullstolsburna.</p>",
                "en": "<p>The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium.</p><p>In the vacuum of space, light travels 9.46 trillion kilometres a year. Two celestial bodies are in their respective orbits far away from each other. When the journey of one ends, the light will not reach the other until trillions of years later.<br>  <br>The work reaches out to the stars, which light up and go out – and sometimes answer the call of a lover. Performer Silva Belghiti will guide the audience into the cold embrace of outer space and back.<br>  <br>Combining love poetry and astronomy, the work explores the limits of communication and longing, and charts the scale of the universe from the perspective of the human body.<br>Creative team <br>Direction, concept and production: Joel Teixeira Neves<br>Performer: Silva Belghiti<br>Sound design: Johannes Birlinger<br>Lighting design and stage design: Saana Volanen<br>Producer: Riikka Lakea<br>Production partners: Reality Research Centre, Ursa Minor, Ursa ry<br>Supported by: Kone Foundation and Kiasma Theatre<br>Photos: Pirje Mykkänen / Finnish National Gallery<br> Teaser: Iiri Poteri<br> <br>Performance duration: 90 min<br>Recommended age: 13+<br>Language: The languages of the performance are Finnish Sign Language and English.<br>The performance will have subtitles.<br>Content notes: The performance is intended to be experienced lying down. The performance includes long sequences in dim lighting and strong changes in light. Unfortunately, the event is not wheelchair accessible.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68043/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68042",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/silvabelghiti/",
                        "sv": "https://www.lippu.fi/artist/silvabelghiti/",
                        "en": "https://www.lippu.fi/artist/silvabelghiti/"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/7€",
                        "sv": "20€/7€",
                        "en": "20€/7€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494671,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-28T15:13:06.028420Z",
                    "last_modified_time": "2026-01-28T15:13:06.028433Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781678.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494671/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-28T15:13:05.899791Z",
            "last_modified_time": "2026-03-25T08:13:59.433609Z",
            "date_published": null,
            "start_time": "2026-04-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Celestial Body – galaktinen rakkaustarina",
                "sv": "INSTÄLLT Celestial Body – en galaktisk kärlekshistoria",
                "en": "CANCELLED Celestial Body – a galactic love story"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.",
                "sv": "Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.",
                "en": "The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1A89FB5352085E79977AE1BA5C0C659B/PERUTTU_Celestial_Body_galaktinen_rakkaustarina",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1A89FB5352085E79977AE1BA5C0C659B/INSTALLT_Celestial_Body_en_galaktisk_karlekshistoria",
                "en": "http://www.caisa.fi/en/events/event/1A89FB5352085E79977AE1BA5C0C659B/CANCELLED_Celestial_Body_a_galactic_love_story"
            },
            "description": {
                "fi": "<p>Esitys on peruttu katsomokupolin teknisten ongelmien vuoksi. Lippu.fi on yhteyksissä lipun ostaneisiin. Pahoittelemme tilannetta.</p><p>Kaksikielinen esitystaideteos Celestial Body kutsuu yleisön seuraamaan planetaarista rakkaustarinaa planetaarion sisään.</p><p>Avaruuden tyhjiössä valo matkustaa vuodessa 9,46 biljoonaa kilometriä. Kaksi taivaankappaletta kiertää radoillaan kaukana toisistaan. Kun toisen matka päättyy, valo saavuttaa toisen vasta biljoonien vuosien päästä.<br>  <br>Teoksessa kurotetaan kohti tähtiä, jotka syttyvät ja sammuvat – ja toisinaan vastaavat rakkaan kutsuun. Esiintyjä Silva Belghiti toimii yleisön matkaoppaana ulkoavaruuden kylmään syliin ja takaisin.<br>  <br>Rakkausrunoja ja tähtitiedettä yhdistelevä teos pohtii kommunikaation rajoja ja kaipausta sekä hahmottelee maailmankaikkeuden mittakaavaa ihmiskehon perspektiivistä.<br>Työryhmän jäsenet <br>Ohjaus, konsepti ja tuotanto: Joel Teixeira Neves<br>Esiintyjä: Silva Belghiti<br>Äänisuunnittelu: Johannes Birlinger<br>Valosuunnittelu ja lavastus: Saana Volanen<br>Tuottaja: Riikka Lakea<br>Tuotannolliset yhteistyökumppanit: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Tukijat: Koneen säätiö & Kiasma-teatteri<br>Valokuvat: Pirje Mykkänen /Kansallisgalleria<br> Teaser: Iiri Poteri<br> <br>Esityksen kesto: 90 min<br>Ikäsuositus: + 13-v<br>Kieli: Esityksen kielet ovat suomalainen viittomakieli ja englanti.<br>Esitys on tekstitetty.<br>Sisältöhuomiot: Esitys koetaan makaavassa asennossa. Esitykseen kuuluu pitkiä hämäriä jaksoja sekä voimakkaita valon vaihdoksia. Tapahtuma ei valitettavasti ole pyörätuolilla liikkuvalle esteetön.</p>",
                "sv": "<p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.</p><p>Det tvåspråkiga performancekonstverket Celestial Body bjuder in publiken att följa en planetär kärlekshistoria i ett planetarium.<br>I rymdens vakuum färdas ljuset 9,46 biljoner kilometer per år. Två himlakroppar kretsar i sina banor långt ifrån varandra. När den enas resa tar slut når ljuset den andra först flera biljoner år senare.<br>  <br>I verket sträcker vi oss mot stjärnor som tänds och slocknar – och ibland svarar på den älskades rop. Artisten Silva Belghiti guidar publiken in i den yttre rymdens kalla famn och tillbaka.<br>  <br>Detta verk som utforskar kärlekshistorier och astronomi reflekterar över kommunikationens gränser och saknad samt gestaltar världsalltets skala ur människokroppens perspektiv.<br>Arbetsgruppens medlemmar <br>Regi, koncept och produktion: Joel Teixeira Neves<br>På scenen: Silva Belghiti<br>Ljuddesign: Johannes Birlinger<br>Ljusdesign och scenografi: Saana Volanen<br>Producent: Riikka Lakea<br>Produktionspartner: Todellisuuden tutkimuskeskus, Ursa Minor, Ursa ry<br>Sponsorer: Kone-stiftelsen & Kiasma-teatern<br>Fotografier: Pirje Mykkänen/Nationalgalleriet<br> Teaser: Iiri Poteri<br> <br>Föreställningens längd: 90 min.<br>Åldersrekommendation: 13+ år<br>Språk: Föreställningens språk är finskt teckenspråk och engelska.<br>Föreställningen textas.<br>Innehållsvarningar: Man upplever föreställningen i liggande ställning. I föreställningen ingår långa stunder av halvmörker och kraftiga ljusväxlingar. Evenemanget är tyvärr inte tillgängligt för rullstolsburna.</p>",
                "en": "<p>The bilingual performance art piece Celestial Body invites the audience to follow a planetary love story inside a planetarium.</p><p>In the vacuum of space, light travels 9.46 trillion kilometres a year. Two celestial bodies are in their respective orbits far away from each other. When the journey of one ends, the light will not reach the other until trillions of years later.<br>  <br>The work reaches out to the stars, which light up and go out – and sometimes answer the call of a lover. Performer Silva Belghiti will guide the audience into the cold embrace of outer space and back.<br>  <br>Combining love poetry and astronomy, the work explores the limits of communication and longing, and charts the scale of the universe from the perspective of the human body.<br>Creative team <br>Direction, concept and production: Joel Teixeira Neves<br>Performer: Silva Belghiti<br>Sound design: Johannes Birlinger<br>Lighting design and stage design: Saana Volanen<br>Producer: Riikka Lakea<br>Production partners: Reality Research Centre, Ursa Minor, Ursa ry<br>Supported by: Kone Foundation and Kiasma Theatre<br>Photos: Pirje Mykkänen / Finnish National Gallery<br> Teaser: Iiri Poteri<br> <br>Performance duration: 90 min<br>Recommended age: 13+<br>Language: The languages of the performance are Finnish Sign Language and English.<br>The performance will have subtitles.<br>Content notes: The performance is intended to be experienced lying down. The performance includes long sequences in dim lighting and strong changes in light. Unfortunately, the event is not wheelchair accessible.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68042/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67544",
            "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/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/eventseries/name-4033235",
                        "sv": "https://www.lippu.fi/eventseries/name-4033235",
                        "en": "https://www.lippu.fi/eventseries/name-4033235"
                    },
                    "description": null,
                    "price": {
                        "fi": "53,90-89,90 €",
                        "sv": "53,90-89,90 €",
                        "en": "53,90-89,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493851,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-20T12:12:43.326315Z",
                    "last_modified_time": "2025-11-20T12:12:43.326331Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781551.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493851/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-20T12:12:43.221689Z",
            "last_modified_time": "2026-03-24T13:13:59.722839Z",
            "date_published": null,
            "start_time": "2026-05-26T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Laibach",
                "sv": "Laibach",
                "en": "Laibach"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Ait Music / Goldenzwaig Cs",
                "sv": "Ait Music / Goldenzwaig Cs",
                "en": "Ait Music / Goldenzwaig Cs"
            },
            "short_description": {
                "fi": "Legendaarinen LAIBACH palaa Helsinkiin – luvassa täysin uusi show!",
                "sv": "Legendariska LAIBACH återvänder till Helsingfors – med en helt ny show!",
                "en": "The legendary LAIBACH returns to Helsinki – with a brand new show!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8810321872D3BCDC73BD7BF8345186AA/Laibach",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/8810321872D3BCDC73BD7BF8345186AA/Laibach",
                "en": "http://www.savoyteatteri.fi/en/events/event/8810321872D3BCDC73BD7BF8345186AA/Laibach"
            },
            "description": {
                "fi": "<p>Legendaarinen LAIBACH palaa Helsinkiin – luvassa täysin uusi show!</p><p>Uskomattomia uutisia kaikille faneille – kyllä, se on totta!</p><p>45 vuotta perustamisensa jälkeen Sloveniassa – silloisessa Jugoslaviassa – Laibach on kansainvälisesti arvostetuin yhtye entisistä kommunistimaista Keski-Euroopassa ja yksi maailman arvoituksellisimmista, profeetallisimmista ja autenttisimmista kokoonpanoista. Laibach perustettiin teollisuuskaupunki Trbovljessa samana vuonna, kun silloisen Jugoslavian johtaja Tito kuoli. Laibach on johdonmukaisesti vastustanut kaikenlaisia leimoja, olipa kyseessä sitten \"industrial\", rock tai techno: he saavat kuulijan ajattelemaan, tanssimaan ja marssimaan saman musiikin tahtiin.</p><p>Laibachin uuden albumin live-ensi-ilta Euroopassa on suunniteltu keväälle 2026.</p><p>Täysin uutta Laibach-materiaalia, runsaasti uusia yllätyksiä – ja maailmankuuluja hittejä yhtyeen 45-vuotisesta historiasta! Odota odottamatonta!</p><p>Älä missaa tätä!</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p>",
                "sv": "<p>Legendariska LAIBACH återvänder till Helsingfors – med en helt ny show!</p><p>Fantastiska nyheter för alla fans – ja, det är sant!</p><p>45 år efter grundandet i Slovenien – i dåvarande Jugoslavien – är Laibach det internationellt mest hyllade bandet från de forna kommunistländerna i Centraleuropa och en av de mest gåtfulla, profetiska och autentiska ensemblerna i världen. Laibach grundades i industristaden Trbovlje samma år som den dåvarande jugoslaviske ledaren Tito dog. Laibach har konsekvent stått emot alla etiketter, oavsett om det handlat om ”industrial”, rock eller techno: de får dig att tänka, dansa och marschera till samma musik.</p><p>Den europeiska livepremiären för Laibachs nya album är planerad till våren 2026.</p><p>Helt nytt Laibach-material, massor av nya överraskningar – och världsberömda hits från bandets 45-åriga historia! Förvänta dig det oväntade!</p><p>Missa inte detta!</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p>",
                "en": "<p>The legendary LAIBACH returns to Helsinki – with a brand new show!</p><p>Incredible news for all fans – yes, it is true!</p><p>Now, 45 years after its formation in Slovenia – then Yugoslavia – Laibach is the most internationally acclaimed band from the former communist countries of Central Europe and one of the most enigmatic, prophetic and authentic ensembles in the world. Laibach was founded in the industrial town of Trbovlje the same year that the then President of Yugoslavia, Tito, died. The members of Laibach have categorically rejected all genre labels, whether they be industrial, rock or techno: they make you think, dance and march to the same music.</p><p>The live premiere of Laibach’s new album in Europe has been scheduled for spring 2026.</p><p>All-new Laibach material, plenty of new surprises – and world-famous hits from the band’s 45-year history! Expect the unexpected!</p><p>Do not miss this!</p><p>The floor: R18 alcohol serving area. The gallery: no age restrictions, no alcohol serving.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67544/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67830",
            "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/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056749/",
                        "sv": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056749/",
                        "en": "https://www.lippu.fi/event/kulttuurikeskus-caisa-caisa-30-club-kulttuurikeskus-caisa-21056749/"
                    },
                    "description": null,
                    "price": {
                        "fi": "7€/15€",
                        "sv": "7€/15€",
                        "en": "7€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494210,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-15T13:13:40.653495Z",
                    "last_modified_time": "2025-12-15T13:13:40.653510Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778714.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494210/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-15T13:13:40.529231Z",
            "last_modified_time": "2026-03-24T13:13:46.042682Z",
            "date_published": null,
            "start_time": "2026-03-27T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Compañía Kaari & Roni Martin Goes ROOTS – Caisa 30 Club",
                "sv": "Compañía Kaari & Roni Martin Goes ROOTS – Caisa 30 Club",
                "en": "Compañía Kaari & Roni Martin Goes ROOTS – Caisa 30 Club"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä.",
                "sv": "Compañía Kaari & Roni Martin är en prisbelönt konstnärsensemble från Helsingfors, vars rötter finns i korsningen mellan flamenco och samtidskonst.",
                "en": "Compañía Kaari & Roni Martin is an award-winning artistic ensemble based in Helsinki whose roots are in the crossroads of flamenco and contemporary art."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/51329E36382ABCED6A8CC8D45CC4D16F/Compa_a_Kaari_Roni_Martin_Goes_ROOTS_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/51329E36382ABCED6A8CC8D45CC4D16F/Compa_a_Kaari_Roni_Martin_Goes_ROOTS_",
                "en": "http://www.caisa.fi/en/events/event/51329E36382ABCED6A8CC8D45CC4D16F/Compa_a_Kaari_Roni_Martin_Goes_ROOTS_"
            },
            "description": {
                "fi": "<p>Compañía Kaari & Roni Martin on palkittu helsinkiläinen taiteilijaensemble, jonka juuret ovat flamencon ja nykytaiteen risteyksessä.</p><p>Ryhmän teoksissa yhdistetään vapaasti eri musiikkiperinteitä ja -tyylejä ja sen jäsenet ovat useista eri maista ja kulttuureista. Tuloksena on rohkeita, omaperäisiä ja monitaiteellisia näyttämötöitä, jotka koskettavat kansainvälisesti. <br> <br>Goes Roots -esitys on syntynyt Kirjeitä saaresta -teoksen pohjalta, jossa nostettiin esiin Suomi-brändin ulkopuolelle jätetyt vähemmistöt sekä historiallisesti että tänä päivänä. Teos tehtiin vuonna 2020 Seurasaaren ulkomuseoon ja 2023 Olavinlinnaan, joiden historiallinen miljöö toimi teoksen puitteina. Teoksen tuhkasta syntyi Roots-teos.<br> <br>Irakilainen Ali Saad hallitsee perinteisen arabialaisen musiikin, Roni Martin perheensä juutalaisen musiikkitradition ja koreografi Kaari Martin flamencotanssin ja rytmiikan. Viulisti Sanna Salmenkallio luo klassisen ja arabialaisen tyylin lisäksi omintakeisen äänimaailman käyttäen klassisen viulun lisäksi sähköviulua. Teoksessa lauletaan ainakin suomeksi, arabiaksi, hepreaksi ja ladinoksi.</p><p>Perjantaina 27.3. Compañía Kaari & Roni Martinin goes ROOTS esitetään Caisan 30-vuotisjuhlan kunniaksi laajempana versiona ja lavalla nähdään useita taiteilijavierailijoita ryhmän vakituisesta ensemblesta. <br>Kokoonpano:<br>Sanna Salmenkallio – viulu, laulu<br>Roni Martin – piano, kitara, laulu<br>Kaari Martin – tanssi, laulu<br>Ali Saad – laulu<br>Angela Aldebs - Tanssi, laulu<br>Bakr Hasan - Runonlausunta<br>Miritza Lundberg- Laulu<br>Madiana Lundberg - Tanssi, laulu<br>Miska Lundberg - Laulu<br>Eppu Helle – äänisuunnittelu<br> <br>Esityksen kesto 1 tunti 30 min + väliaika</p>",
                "sv": "<p>Compañía Kaari & Roni Martin är en prisbelönt konstnärsensemble från Helsingfors, vars rötter finns i korsningen mellan flamenco och samtidskonst.</p><p>I gruppens verk kombineras fritt olika musiktraditioner och -stilar, och dess medlemmar kommer från flera olika länder och kulturer. Resultatet är djärva, originella och tvärkonstnärliga scenproduktioner som berör internationellt. <br> <br>Föreställningen Goes Roots baserar sig på verket Kirjeitä saaresta, som lyfte fram de minoriteter som lämnats utanför varumärket Finland, såväl historiskt som i dag. Verket gjordes år 2020 på Fölisöns friluftsmuseum och år 2023 på Olofsborg, vars historiska miljö fungerade som bakgrund för verket. Ur askan av verket föddes verket Roots.<br> <br>Irakiern Ali Saad behärskar den traditionella arabiska musiken, Roni Martin sin familjs judiska musiktradition och koreografen Kaari Martin flamencodans och rytmik. Violinisten Sanna Salmenkallio skapar en unik ljudvärld utöver den klassiska och arabiska stilen och använder sig av en elektrisk violin utöver den klassiska violinen. I verket sjungs det åtminstone på finska, arabiska, hebreiska och ladino.</p><p>Fredag 27.3 Compañía Kaari & Roni Martinin goes ROOTS framförs i en utökad version för att fira Caisas 30-årsjubileum, och på scenen får vi se flera konstnärsgäster ur gruppens permanenta ensemble. <br>Sammansättning:<br>Sanna Salmenkallio – stråkharpa, voc.<br>Roni Martin – piano, gitarr, voc.<br>Kaari Martin – dans, voc.<br>Ali Saad – sång<br>Angela Aldebs - dans, voc.<br>Bakr Hasan - Poesi recitation<br>Miritza Lundberg- voc.<br>Madiana Lundberg - dans, voc.<br>Miska Lundberg - voc.<br>Esa Helle - ljuddesign<br> <br>Föreställningens längd är 1 timme 30 minuter + paus</p>",
                "en": "<p>Compañía Kaari & Roni Martin is an award-winning artistic ensemble based in Helsinki whose roots are in the crossroads of flamenco and contemporary art.</p><p>The company combines freely different musical traditions and styles and its members are from many countries and cultures. Drawing on these elements the company creates original and expressive multidisciplinary stage works that resonate internationally.<br> <br>Goes Roots is based on the performance Letters from an Island, which highlighted minorities excluded from the Finland brand both historically and today. The performance was made in 2020 at the Seurasaari Open Air Museum and in 2023 at Olavinlinna, whose historical milieu served as the setting for the performance. From the ashes of Letters from an Island, goes ROOTS was born.<br> <br>In the performance Iraqi Ali Saad brings traditional Arabic music, Roni Martin his family's Jewish musical tradition and choreographer Kaari Martin flamenco dance and rhythm. Violinist Sanna Salmenkallio creates a unique soundscape in addition to classical and Arabic styles, using an electric violin in addition to the classical violin.On stage you will hear at least Finnish, Arabic, Hebrew and Ladino. <br> <br>On Friday 27th Compañía Kaari & Roni Martinin goes ROOTS will be performed in honour of Caisa´s 30th anniversary celebration as an extended version and a larger group of guest artists from the group´s ensemble will be seen on stage.</p><p>Workgroup:<br>Sanna Salmenkallio – violin, voc.<br>Roni Martin – piano, gitar, voc.<br>Kaari Martin – dance, voc.<br>Ali Saad – vocals<br>Angela Aldebs - dance, voc.<br>Bakr Hasan - Poetry recitation<br>Miritza Lundberg- vocals<br>Madiana Lundberg -dance, voc.<br>Miska Lundberg - vocals<br>Esa Helle – sound design<br> <br>Duration 1 h 30 min + pause</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67830/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhu7ey",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu6hy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu6uy/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824166,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-19T10:10:15.008604Z",
                    "last_modified_time": "2026-03-19T10:10:15.008618Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/d9222ddc-0b22-4d4b-8535-fb5d2260aaa5.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee Äänet-esiin kevätkonsertit ja siinä on kuva kukasta ja laulajasta",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824166/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-19T10:12:58.343180Z",
            "last_modified_time": "2026-03-24T11:25:30.297777Z",
            "date_published": null,
            "start_time": "2026-04-01T15:00:00Z",
            "end_time": "2026-04-14T16:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Äänet esiin! - kevät konsertit"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": {
                "fi": "Espoon työväenopisto OMNIA"
            },
            "short_description": {
                "fi": "Tervetuloa Espoon työväenopiston opiskelijoiden Äänet esiin! – kevätkonsertteihin ke 1.4. ja ti 14.4. klo 18."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa Espoon työväenopiston opiskelijoiden Äänet esiin! – kevätkonsertteihin. Esiintyjinä toimivat Espoon työväenopiston musiikkiryhmät ja solistit. Tapahtumiin on vapaa pääsy!</p><p><br></p><p>Konsertit ovat osa Espoon työväenopiston Taidekevät 2026 -tapahtumasarjaa.</p><p><br></p><p>Toivota kevät tervetulleeksi kanssamme!</p><p><br></p><p>Espoon työväenopisto OMNIA</p><p>Tietoa, taitoa ja osaamista – hyvinvointia sinulle!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu7ey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agohwo55pa",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventCancelled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494922,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-02-20T12:21:49.900668Z",
                    "last_modified_time": "2026-02-20T12:21:49.900691Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/8c2454fa-543e-464f-a3aa-22c081ef7f54.png",
                    "name": "",
                    "cropping": "229,0,1855,1626",
                    "photographer_name": "",
                    "alt_text": "Maaginen viikko",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494922/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-02-20T12:22:15.804244Z",
            "last_modified_time": "2026-03-24T11:22:17.388539Z",
            "date_published": null,
            "start_time": "2026-03-26T14:00:00Z",
            "end_time": "2026-03-26T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "PERUTTU Leivontapaja Magic edition",
                "sv": "AVBRUTEN Bakningskurs Magic edition",
                "en": "CANCELED Baking workshop Magic edition"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Maagisen viikon leivontapaja",
                "sv": "Magisk vecka med bakningsworkshop",
                "en": "Magical week baking workshop"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa sukeltamaan fantasian maailmaan maaliskuussa! Espoon kaupunginkirjasto järjestää tapahtumia Helmet –kirjastojen yhteisellä Maagisella viikolla 23.3.-29.3.2026.&nbsp;</p><p>Lippulaivan Kapyysissä leivotaan yhdessä maagisia leivonnaisia. Mukaan mahtuu 12 ensimmäistä.</p><p>#maaginen viikko</p>",
                "sv": "<p>Välkommen att under mars dyka in i fantasyvärlden! Esbo stadsbibliotek ordnar evenemang under Helmet-bibliotekens gemensamma Magiska vecka från 23-29.3.2026.</p><p>Vi bakar magiska bakverk i Lippulaivas utrymme Kapyysi. Med ryms de 12 första personer.</p><p>#maaginen viikko</p>",
                "en": "<p>Dive into the world of fantasy in March! Espoo City Library is organizing events during the joint Magical Week of Helmet libraries from March 23 to March 29, 2026.&nbsp;</p><p>Welcome to bake magical pastry in Lippulaiva. The first 12 can join the group.</p><p>#maaginen viikko</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agohwo55pa/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhu7uq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T07:38:02.675624Z",
                    "last_modified_time": "2026-03-24T07:38:02.675640Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/91b0d04e-cbd1-49d5-8b8d-95b1e68ad0fb.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "Kuvassa on äiti ja lapsi.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824167/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-03-24T07:48:04.749670Z",
            "last_modified_time": "2026-03-24T11:16:17.759148Z",
            "date_published": null,
            "start_time": "2026-03-30T07:30:00Z",
            "end_time": "2026-03-30T09:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Äitien uravalmennusinfo "
            },
            "location_extra_info": {
                "fi": "Perhealue"
            },
            "provider": {
                "fi": "Jotpa (Jatkuvan oppimisen ja työllisyyden palvelukeskus)"
            },
            "short_description": {
                "fi": "Tervetuloa tutustumaan Jotpan järjestämään Äitien uravalmennusinfoon klo 10.30 Perhekahvilan yhteyteen Kajuuttaan tai perhealueelle klo 10.40 alkaen!"
            },
            "info_url": null,
            "description": {
                "fi": "Hei, äiti! Oletko hoitovapaalla ilman työ- tai opiskelupaikkaa?\nOsallistu ilmaiseen uravalmennukseen!<p><br></p><p>Saat oman valmentajan. Yhdessä voitte esimerkiksi</p><p>• päivittää ansioluettelosi</p><p>• harjoitella työhaastatteluun tai</p><p>• selvittää, miten pääset opiskelemaan.</p><p><br></p><p>Valmennus on äideille</p><p>• jotka ovat hoitaneet lastaan Kelan kotihoidon tuella</p><p>vähintään kuusi kuukautta ja</p><p>• joilla ei ole työpaikkaa tai opiskelupaikkaa.</p><p><br></p><p>Valmennus kestää kuusi kuukautta. Voit ottaa lapsesi mukaan tapaamisiin.</p><p><br></p><p><strong>Näin pääset mukaan Valmennus on osa tutkimusta.</strong></p><p><br></p><p>Anna yhteystietosi verkossa:</p><p><a href=\"www.jotpa.fi/fi/aidit\">www.jotpa.fi/fi/aidit</a></p><p><br></p><p>Lue lisää ja osallistu:</p><p><a href=\"www.jotpa.fi/fi/aidit\">www.jotpa.fi/fi/aidit</a></p><p><br></p><p>Valmennuksen toteuttavat:</p><p>Valmentaja soittaa sinulle.</p><p>Täytätte yhdessä alkukyselyn ja suostumuslomakkeen. Saat kiitokseksi lahjakortin.</p><p>Arvomme valmennukseen mukaan pääsevät äidit. Jos pääset mukaan, valmentajasi soittaa sinulle.</p><p><br></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhu7uq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn5m5hsgi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8113/?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": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494542,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-01-19T12:48:42.678776Z",
                    "last_modified_time": "2026-01-19T12:48:42.678791Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/727cbbd1-4d6d-413a-bd51-9bb859ac5b68.jpg",
                    "name": "",
                    "cropping": "0,0,1024,1024",
                    "photographer_name": "",
                    "alt_text": "A FAIRY TALE READING",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494542/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-01-19T13:12:27.917304Z",
            "last_modified_time": "2026-03-24T10:58:28.631628Z",
            "date_published": null,
            "start_time": "2026-04-30T13:00:00Z",
            "end_time": "2026-04-30T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Avoin arabiankielinen satuhetki",
                "en": "An Open Arabic Fairy Tale Reading"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Avoin arabiankielinen satuhetki",
                "en": "An Open Arabic Fairy Tale Reading"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tervetuloa koko perheen kanssa hauskaan ajanviettoon, jossa luemme satuja lapsille ja kaikille arabiankielistä kiinnostuneille.</p><p>أهلاً بكم في وقت ممتع مع جميع أفراد العائلة، حيث نقرأ القصص الخيالية للأطفال وكل من يهتم باللغة العربية.</p><p>#HelloEspoo</p>",
                "en": "<p>Welcome to a fun time with the whole family, where we read fairy tales to children and everyone interested in the Arabic language.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn5m5hsgi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68322",
            "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/name-21482263"
                    },
                    "description": null,
                    "price": {
                        "fi": "48,90-52,60 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1720874,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-24T10:13:58.984500Z",
                    "last_modified_time": "2026-03-24T10:13:58.984517Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787428.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1720874/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-24T10:13:58.858843Z",
            "last_modified_time": "2026-03-24T10:13:59.146736Z",
            "date_published": null,
            "start_time": "2026-09-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,
            "name": {
                "fi": "NITS"
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Rockadillo Production Oy"
            },
            "short_description": {
                "fi": "Rakastettu hollantilaisyhtye konsertoi jälleen Savoy-teatterissa!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/289FFFD4E948BD2AB167EA0420384A3A/NITS"
            },
            "description": {
                "fi": "<p>Rakastettu hollantilaisyhtye konsertoi jälleen Savoy-teatterissa!</p><p>Rakastettu hollantilaisyhtye <b>NITS</b> nähdään jälleen Suomessa legendaarisella kokoonpanollaan <b>Henk Hofstede</b> (laulu, kitara), <b>Robert Jan Stips</b> (koskettimet, laulu) ja <b>Rob Kloet</b> (rummut, lyömäsoittimet). Mukana ovat tietysti myös yhtyeen pitkäaikaiset ja yhtä arvostetut ulkojäsenet: äänisuunnittelija <b>Paul Telman</b> ja visualisti <b>Tom Telman</b>.</p><p>Taiderockyhtye Nits on ihastuttanut musiikkimaailmaa yli 50 vuoden ajan. Syyskuun konserteissa kuullaan aimo annos yhtyeen pidetyimpiä lauluja kautta aikojen ja myös uutta materiaalia alkusyksystä julkaistavalta uudelta albumilta.<br> <br>Kesto n. 2,5 h sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68322/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67601",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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/eventseries/name-3049354",
                        "sv": "https://www.lippu.fi/eventseries/name-3049354",
                        "en": "https://www.lippu.fi/eventseries/name-3049354"
                    },
                    "description": null,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1493916,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-11-26T10:12:41.954251Z",
                    "last_modified_time": "2025-11-26T10:12:41.954270Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782010.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493916/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-11-26T10:12:41.859294Z",
            "last_modified_time": "2026-03-24T10:13:42.295469Z",
            "date_published": null,
            "start_time": "2026-03-27T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Astrid Swan - 20-vuotistaiteilijajuhlakonsertti",
                "sv": "Astrid Swan – 20-årsjubileumskonsert",
                "en": "Astrid Swan – 20th Anniversary Concert"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "On kulunut 20 vuotta Astrid Swanin ensimmäisen soololevyn Poverinan julkaisemisesta.",
                "sv": "Det har gått 20 år sedan Astrid Swan släppte sitt första soloalbum Poverina.",
                "en": "It has been 20 years since Astrid Swan released her first solo album, Poverina."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5110CB0CC4CF4407E7E33B774E6A4BFA/Astrid_Swan_-_20-vuotistaiteilijajuhlakonsertti",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5110CB0CC4CF4407E7E33B774E6A4BFA/Astrid_Swan_20-arsjubileumskonsert",
                "en": "http://www.kanneltalo.fi/en/events/event/5110CB0CC4CF4407E7E33B774E6A4BFA/Astrid_Swan_20th_Anniversary_Concert"
            },
            "description": {
                "fi": "<p>On kulunut 20 vuotta Astrid Swanin ensimmäisen soololevyn Poverinan julkaisemisesta.</p><p>Kahteen vuosikymmeneen on mahtunut seitsemän albumia, yksi muistelmateos ja yksi romaani, sekä liuta muita kirjoituksia ja taiteellisia töitä. Lisäksi Swan on esiintynyt yksin ja yhtyeensä kanssa niin Suomessa kuin Euroopassa ja Yhdysvalloissa.</p><p>Maaliskuun 27. päivä, 2026 Astrid Swan konsertoi Kanneltalossa. Juhlakonsertissa kuullaan kappaleita koko uran varrelta. Myös aikaisemmin esittämättömiä teoksia ja cover-kappaleita, sekä uusia sävellyksiä. Illan esitys on ainutkertainen kokonaisteos, joka sisältää myös puhetta sekä visuaalista taidetta.</p><p>20-vuotistaiteilijajuhlassa iloitaan elämästä ja siitä, että omaehtoinen tekeminen, haaveilu ja hankaluus ovat löytäneet erilaisia ilmaisutapoja, upeita kanssamuusikoita sekä kuulijoita.</p><p>Kesto: 2 h (sis. väliaika)</p>",
                "sv": "<p>Det har gått 20 år sedan Astrid Swan släppte sitt första soloalbum Poverina.</p><p>Under två decennier har hon hunnit ge ut sju album, ett memoarverk och en roman samt ett antal andra skrifter och konstnärliga verk. Swan har också uppträtt solo och med sitt band i Finland, Europa och USA.</p><p>Den 27 mars 2026 ger Astrid Swan en konsert i Gamlasgården. Jubileumskonserten innehåller stycken från hela hennes karriär. Även ej tidigare framförda verk och coverlåtar, samt nya kompositioner. Kvällens föreställning är ett unikt helhetsverk, som även innehåller tal och bildkonst.</p><p>Artistens 20-årsjubilum är en hyllning till livet och det faktum att egenhändigt agerande, drömmar och umbäranden har funnit olika uttryckssätt, lysande medmusiker och lyssnare.</p>",
                "en": "<p>It has been 20 years since Astrid Swan released her first solo album, Poverina.</p><p>Over the two decades, she has produced seven albums, one memoir, one novel and a host of other writings and artistic works. Swan has also performed solo and with her ensemble in Finland, elsewhere in Europe and the United States.</p><p>On 27 March 2026, Astrid Swan will give a concert at Kanneltalo. The anniversary concert will include music spanning her entire career. Includes previously unperformed works and cover songs, as well as new compositions. The evening's show is a one-of-a-kind performance, combining spoken word and visual art.</p><p>At the 20th-anniversary artist celebration, we rejoice in life and the fact that independent creativity, dreaming and challenges have found various forms of expression, wonderful fellow musicians and audiences.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67601/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvah4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824168,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T12:45:03.081372Z",
                    "last_modified_time": "2026-03-10T12:45:03.081391Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/aa6e6b2e-f983-4e33-898a-ab6cd17353de.jpg",
                    "name": "",
                    "cropping": "240,0,843,604",
                    "photographer_name": "",
                    "alt_text": "Kuvassa lukee: Tietopäivä: ME/CFS -Vammais- ja sosiaalipalvelut sekä Kelan etuudet",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824168/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-10T12:53:16.351298Z",
            "last_modified_time": "2026-03-24T08:39:24.808764Z",
            "date_published": null,
            "start_time": "2026-04-25T11:00:00Z",
            "end_time": "2026-04-25T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tietopäivä: ME/CFS -Vammais- ja sosiaalipalvelut sekä Kelan tuet"
            },
            "location_extra_info": {
                "fi": "Salonki"
            },
            "provider": {
                "fi": "ME/CFS-yhdistys SMEY"
            },
            "short_description": {
                "fi": "Tervetuloa saamaan tietoa ME/CFS -Vammais- ja sosiaalipalveluista sekä Kelan tuista"
            },
            "info_url": {
                "fi": "https://www.smey.fi/tapahtumat/tietopaiva-palvelut-ja-kelan-etuudet/"
            },
            "description": {
                "fi": "<p>Tervetuloa saamaan tietoa ME/CFS -Vammais- ja sosiaalipalveluista sekä Kelan tuista! Ilmoittaudu alla olevasta linkistä mukaan viimeistään tiistaina 19.4.</p><p><strong>Ohjelma:</strong></p><p>14.00–15.00 Vertaistuelliset kahvit osallistujille, jotka tulevat paikan päälle&nbsp;</p><p>15.00–15.45&nbsp;Hanna Markkula, hankepäällikkö ja palveluneuvonnan suunnittelija:&nbsp;</p><p>ME/CFS - Vammais- ja sosiaalipalvelut sekä Kelan etuudet&nbsp;</p><p>15.45–16.00&nbsp;tauko&nbsp;</p><p>16.00–16.45&nbsp;Heini Aaltonen, YTM ja sosiaalityön maisteriopiskelija:&nbsp;</p><p>ME/CFS-sairaiden kokemat vaikeudet sosiaaliturvan saamisessa&nbsp;</p><p>16.45–17.00&nbsp;Päätöspuheenvuoro&nbsp;</p><p>17.00 Tapahtuma päättyy&nbsp;</p><p>&nbsp;</p><p>Tapahtuma: <a href=\"https://www.smey.fi/tapahtumat/tietopaiva-palvelut-ja-kelan-etuudet/\">https://www.smey.fi/tapahtumat/tietopaiva-palvelut-ja-kelan-etuudet/</a> Tapahtuma Facebookissa: <a href=\"https://www.facebook.com/events/1443160934167076 \">https://www.facebook.com/events/1443160934167076 </a></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvah4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:serie-4010528",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/tuula-ja-pirkko-meil-on-aina-toro-helsinki-helsingin-kaupunginteatteri-studio-pasila-20864858/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/tuula-ja-pirkko-meil-on-aina-toro-helsinki-helsingin-kaupunginteatteri-studio-pasila-20864858/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/tuula-ja-pirkko-meil-on-aina-toro-helsinki-helsingin-kaupunginteatteri-studio-pasila-20864858/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864854/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864855/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864859/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864860/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864856/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864857/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864861/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20864858/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1491175,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-23T20:16:17.879273Z",
                    "last_modified_time": "2025-10-23T20:16:17.879288Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/2c/51/hkt-tickets_458208_3684830_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491175/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-23T20:16:27.543653Z",
            "last_modified_time": "2026-03-23T21:16:13.932542Z",
            "date_published": null,
            "start_time": "2026-03-07T16:30:00Z",
            "end_time": "2026-03-23",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tuula Ja Pirkko",
                "en": "Meil On Aina Toro"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Tuula ja Pirkko vierailevat studio Pasilassa! Tuula ja Pirkko on viriili, yhteensä n."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/tuula-ja-pirkko-meil-on-aina-toro-helsinki-4010528/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/tuula-ja-pirkko-meil-on-aina-toro-helsinki-4010528/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/tuula-ja-pirkko-meil-on-aina-toro-helsinki-4010528/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p><strong>Tuula ja Pirkko vierailevat studio Pasilassa!</strong></p><p>Tuula ja Pirkko on viriili, yhteensä n. 170-vuotias parivaljakko Ala-Vittulasta. He eivät oikeastaan juuri pidä toisistaan, mutta jostain tuntemattomasta syystä he ovat viettäneet koko elämänsä hyvin tiiviisti yhdessä. Toisin kuin vanhuksista ehkä yleensä luullaan, ikä ei ole jalostanut heitä seesteiseen suuntaan. Päinvastoin. Tuula rakastaa Cindy Crawfordia ja turvavälejä, Pirkko ei anna arvoa lastenlastensa savitöille eikä piirustuksille, eikä hän edelleenkään osaa leipoa. Tuula ja Pirkko on jätetty hankalan luonteensa vuoksi koronakaranteenin rauhaan jo hyvän aikaa sitten, ja siksi heillä on kaikki maailman aika elellä elämäänsä juuri niin kuin he itse lystäävät.</p><p>Erinäisten sattumien jälkeen Tuula ja Pirkko päättävät karistaa pölyt matkalaukuistaan, suunnata maalliset tomumajansa Finavian lippuluukulle, maksaa lentoveronsa kenties viimeisen kerran ja suunnistaa kohti Fuengirolan aurinkoista costaa. Eikä aikaakaan, kun Toron varjossa käydään tähänastisen elämän ehkä tärkeimmät keskustelut. Tällä matkalla saavat kyytiä niin Tuulan ja Pirkon tyttärien luutuneet asenteet äitejään kohtaan, kuin patriarkaattinen machokulttuurikin. Löytyykö Fugen rannalta romanssi, ökyjahti vai Sean Conneryn rintakarva?</p><p>Esitys on kunnianosoitus hömelyydelle, elämänilolle, vapaalle tahdolle, tajunnanvirralle, omaehtoisuudelle, tyhmille jutuille, unelmille, ihmisyydelle, ihmisen lajityypilliselle tarpeelle valloittaa tuntemattomia alueita sekä itsemääräämisoikeuden tärkeydelle.</p><p>Käsikirjoitus, ohjaus sekä lavalla: Ria Kataja, Minna Kivelä<br>Valosuunnittelu: Niina Sivén<br>Äänisuunnittelu: Esko Paavola<br></p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010528/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agn2gkjmqe",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1494439,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T13:40:39.892689Z",
                    "last_modified_time": "2026-01-09T13:40:39.892705Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/73e58102-3b15-4664-a739-15b2e9d37385.jpg",
                    "name": "",
                    "cropping": "416,0,2083,1666",
                    "photographer_name": "",
                    "alt_text": "Tulevaisuusteatterilaiset",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494439/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T13:43:30.539966Z",
            "last_modified_time": "2026-03-23T13:37:07.552874Z",
            "date_published": null,
            "start_time": "2026-04-15T14:00:00Z",
            "end_time": "2026-04-15T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Tulevaisuusteatteri: Sirpaleita – Näkymiä hyvinvointiin",
                "sv": "Tulevaisuusteatteri: Sirpaleita – Näkymiä hyvinvointiin",
                "en": "Tulevaisuusteatteri: Sirpaleita – Näkymiä hyvinvointiin"
            },
            "location_extra_info": {
                "fi": "Lava",
                "sv": "Scen",
                "en": "Stage"
            },
            "provider": {
                "fi": "Tulevaisuusteatteri",
                "sv": "Tulevaisuusteatteri",
                "en": "Tulevaisuusteatteri"
            },
            "short_description": {
                "fi": "Sirpaleita esitys koostuu kuudesta erillisestä teatterikohtauksesta, joissa tehdään erilaisia inhimillisiä, hyvinvointiin liittyviä tarinoita näkyviksi.",
                "sv": "Sirpaleita is a performance consisting of six separate theater scenes that bring to life various human stories related to well-being. Evengemang är på finska.",
                "en": "Sirpaleita is a performance consisting of six separate theater scenes that bring to life various human stories related to well-being. Event is in Finnish."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Sirpaleita – Näkymiä hyvinvointiin</p><p>Sirpaleita esityskokonaisuus koostuu kuudesta erillisestä teatterikohtauksesta, joissa tehdään erilaisia inhimillisiä, hyvinvointiin liittyviä tarinoita näkyviksi. Kunkin kohtauksen jälkeen tilanne avataan yhteiselle keskustelulle. Esityskokonaisuuden kesto on noin 1 tunti ja 30 minuuttia. Kohtaukset ovat:</p><ul><li>”Auttakaa, automaatio tappaa minut”: Ihminen taistelemassa automaattisen puhelinpalvelun kanssa. Kevyeksi rakennettu kohtaus, jossa on vakava sanoma</li><li>”Sanni”: Nuoren&nbsp;mielenterveystoipujan tarina monologina</li><li>”Kaksi paneelia”: Kuvataan yksilön ja systeemin välistä kohtaamattomuutta aiheena hyvinvointiyhteiskunta</li><li>”Ääniä” kohtaus on koostettu&nbsp;sairaanhoitajien erilaisista suhteista ammattiinsa&nbsp;</li><li>”Muisto”: Kertoo tarinan muistisairaasta&nbsp;vanhuksesta&nbsp;</li><li>&nbsp;”Jos saisin toivoa”: Tekee näkyväksi eri ihmisten hyvinvointiin liittyviä toiveita</li></ul><p>Lisätietoja Tulevaisuusteatterista: https://tulevaisuusteatteri.fi/tekijaet/</p>",
                "sv": "<p>Sirpaleita is a performance consisting of six separate theater scenes that bring to life various human stories related to well-being. Evengemang är på finska.</p>",
                "en": "<p>Sirpaleita is a performance consisting of six separate theater scenes that bring to life various human stories related to well-being. Event is in Finnish.</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn2gkjmqe/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68302",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/",
                        "sv": "https://www.lippu.fi/event/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/",
                        "en": "https://www.lippu.fi/event/sibelius-lukion-big-band-slbb-sibelius-lukion-big-band-malmitalo-21482731/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15€ / 10€",
                        "sv": "15€ / 10€",
                        "en": "15€ / 10€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1711686,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-23T11:13:55.456652Z",
                    "last_modified_time": "2026-03-23T11:13:55.456667Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786899.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1711686/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-23T11:13:55.352317Z",
            "last_modified_time": "2026-03-23T11:13:55.611876Z",
            "date_published": null,
            "start_time": "2026-05-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sibelius-lukion Big Band",
                "sv": "Sibelius-lukion Big Band",
                "en": "Sibelius-lukion Big Band"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band",
                "en": "http://www.malmitalo.fi/en/events/event/535E3625663CF3D783B145B6D031D280/Sibelius-lukion_Big_Band"
            },
            "description": {
                "fi": "<p>Sibelius-lukion Big Band (SLBB) on 23 soittajan muodostama täysimittainen big band, joka on ollut toiminnassa kolmen vuoden ajan. Yhtyeen ohjelmistossa painottuu jazz, mutta mukana on myös sovituksia pop-, rock- ja soulmusiikista. Pääkaupunkiseudun nuorista lahjakkuuksista koostuva yhtye tekee musiikkia kunnianhimoisesti ja tavoitteellisesti, kuitenkaan unohtamatta soiton iloa.</p><p>Tänä vuonna pohjoismaisen yhteistyön myötä konsertin ohjelmisto koostuu pääosin suomalaisesta ja ruotsalaisesta musiikista. Konsertissa vierailevana solistina on kansainvälistäkin uraa tekevä virtuoottinen jazzlaulaja Maja Mannila. Lisäksi kuullaan neljää Sibelius-lukion omaa laulusolistia.</p><p>Luvassa on monipuolinen musiikillinen matka jazzin, funkin ja soulin parissa.</p><p>Avustaja samalla lipulla ainoastaan pyörätuoliasiakkaan saattajana.</p><p>Turvapaikanhakijat ovat oikeutettuja opiskelijahintaiseen lippuun./ The asylum seekers are entitled to the student priced ticket.</p><p>Asiakas todistaa alennusryhmään kuulumisensa todistuksella turvapaikan tai tilapäisen suojelun hakemisesta tai oleskelulupakortilla</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68302/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67573",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494749,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-02-05T15:13:50.396667Z",
                    "last_modified_time": "2026-02-05T15:13:50.396685Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781426.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494749/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-02-05T15:13:50.229223Z",
            "last_modified_time": "2026-03-23T11:13:43.378651Z",
            "date_published": null,
            "start_time": "2026-03-27",
            "end_time": "2026-05-03",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Alrsumi, Parkkinen, Suomi: Alkumaisema",
                "sv": "Alrsumi, Parkkinen, Suomi: Alkumaisema",
                "en": "Alrsumi, Parkkinen, Suomi: Alkumaisema"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Olemme kolmen taiteilijan muodostama työryhmä, joka työskentelee monialaisesti eri medioiden parissa.",
                "sv": "En arbetsgrupp på tre konstnärer visar sin utställning Alkumaisema, vars tema är naturmaterial, i Stoas galleri. Utställningen består av målningar, fotografier och skulpturer.",
                "en": "A group of three artists will bring their exhibition Alkumaisema (primeval landscape) with the theme of natural materials to the Stoa gallery. The exhibition will feature paintings, photographs and sculptures."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_",
                "en": "http://www.stoa.fi/en/events/event/FCC893EED5CD5189986500796102908D/Alrsumi_Parkkinen_Suomi_Alkumaisema_"
            },
            "description": {
                "fi": "<p>Olemme kolmen taiteilijan muodostama työryhmä, joka työskentelee monialaisesti eri medioiden parissa.</p><p>Yhteisnäyttelymme koostuu maalauksista, sekä veistoksista, jotka on valmistettu kasvimateriaalista, kasvivärjätystä kankaista ja keramiikasta.</p><p>Ryhmämme jäseniä yhdistää luonnonmateriaalien, kuten kasvien ja maa-aineksien, käyttäminen työskentelyssä. Lähestymme aihetta tarkastelemalla luontoa temaattisesti materiaalien kautta ja pohtimalla niiden yksilöllisiä merkityksiä omassa työskentelyprosessissamme.</p><p><b> Anne-Mari Alrsumi</b></p><p>Olen Helsingissä asuva ja työskentelevä kuvanveistäjä. Näyttelyssä olevat teokset tutkivat luontoa ruumiillisena, sisäisenä ja haavoittuvana ilmiönä. Luonnon elinvoimassa ja hauraudessa, jossa kukoistus ja tuhoutuminen tapahtuvat rinnakkain, pohdin Ihmisen ja luonnon välisen rajan hämärtymistä. Missä kulkee luonnon ja rakennetun raja – ja onko sitä lopulta olemassa?</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna</p><p><b> Henna Parkkinen</b></p><p>Olen Helsingissä asuva muotoilija ja tekstiiliartesaani. Työskentelen tekstiiliveistosten, keramiikan ja valokuvauksen parissa. Työskentely eri medioiden parissa on tutkivaa ja kokeileva. Luontoteema toteutuu teoksissa materiaalilähtöisesti ja värimaailman kautta. Praktiikkani ydin on työskennellä käytettyjen materiaalien parissa, jotta materiaalit pysyvät kiertotalouden mukaisesti kierrossa.</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen</p><p><b> Piia Suomi</b></p><p>Olen helsinkiläinen kuvataiteilija ja taidemaalari. Maalaan maisemallisia ja puoliabstrakteja aiheita maapigmenttejä hyödyntäen. Luontoteema näkyy teoksissani pyrkimyksenä hahmotella koskematonta alkumaisemaa, jota ihmisen kädenjälki ei ole muokannut. Tuhoutumisen keskellä tavoittelen maalauksia, jotka heijastavat pysyvyyden ja säilymisen teemoja.</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi</p><p>Avajaiset torstaina 26.3. klo 18-20.<br>Avajaisissa esiintyy klo 18.30 <br>Mikko Sarvanne: <br>Syklit jotka puhkeavat -performanssi, 20 min<br>Tervetuloa!</p><p>Vapaa pääsy</p>",
                "sv": "<p>En arbetsgrupp på tre konstnärer visar sin utställning Alkumaisema, vars tema är naturmaterial, i Stoas galleri. Utställningen består av målningar, fotografier och skulpturer.</p><p>Anne-Mari Alrsumi, Henna Parkkinen och Piia Suomi bildar en konstnärsgrupp som utforskar sina teman genom att arbeta med material från naturen. Verken är gjorda av bland annat växter, växtfärgade tyger och keramik. <br> <br>Anne-Mari Alrsumi <br>”Jag är en bildkonstnär som bor och arbetar i Helsingfors. Mina verk skapas som en reaktion på sensoriska upplevelser av världen omkring mig, vilket ger mig en bild i huvudet som jag bearbetar genom materialet. Personlighet, intimt samspel och hantering av svåra känslor är naturliga utgångspunkter i mitt arbete.<br> <br>Jag är också materialist, så materialet fungerar ofta som en inspirationsresa i processen att skapa verket och blir en del av det objekt jag studerar.<br>Användningen av lera och växter har fört in olika aspekter av temporalitet och fått mig att reflektera över verkets livscykel. Naturen som tema visar sig i mina verk, förutom genom hanteringen av materialet, som en sorts apokalyptisk tolkning och syftar på tragedin i det naturliga växandet som ebbar ut.”</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna<br>@annemarijohanna</p><p>Henna Parkkinen<br>”Jag är formgivare och textilartesan. Just nu arbetar jag med textilskulpturer och fotografering. Det som fascinerar mig är slutresultatet, som inte är helt klart. Jag tilltalas också av den jordnära känslan i att skapa samt de experiment och reflektioner som sker vid sidan av arbetet. <br> <br>Kärnan i min verksamhet är att arbeta med begagnade material för att hålla dem i omlopp i en cirkulär ekonomi. Jag vill minimera det avfall som uppstår i mitt arbete. Jag färgar tyger med avokadoskal och -kärnor, lök- och citrusskal. Jag är fascinerad av arbete som tar tid: färgningen i sig är en konstnärlig process. Inom fotografering är praktiken experimentell och slumpmässig. Jag fotograferar huvudsakligen på film och dokumenterar sådant som sker i livet. Jag vill inte påverka motivet, utan avbilda det så autentiskt som möjligt. Fotografierna i utställningen har jag kombinerat med torkade växter.”</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen<br>@hennaparkkinen</p><p>Piia Suomi<br>”Jag är bildkonstnär och konstmålare från Helsingfors. Jag målar landskapsmässiga och halvabstrakta teman med hjälp av jordpigment. Naturtemat syns i mina verk som en strävan efter att gestalta ett orört urlandskap, som inte har formats av människan. Mitt i förstörelsen strävar jag efter målningar som återspeglar teman kring permanens och bevarande.</p><p>Mina verk betonar landskapet och sammanflätningen av tid och rum. Jag är fascinerad av att abstrahera motiv på ett sätt som suddar ut gränserna mellan den upplevda och den icke upplevda världen och ger tillgång till fantasi, känslor och förnimmelser.</p><p>På det här sättet upplever jag att jag kommer närmare en delad upplevelse av mänsklighet och till ett område där kommunikationen inte sker genom språk, utan genom omedelbara känslor.”</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi<br>@piiasuomi</p><p>Fritt inträde</p>",
                "en": "<p>A group of three artists will bring their exhibition Alkumaisema (primeval landscape) with the theme of natural materials to the Stoa gallery. The exhibition will feature paintings, photographs and sculptures.</p><p>Anne-Mari Alrsum, Henna Parkkinen and Piia Suomi are a group of artists exploring their subject through the use of materials from nature. Their works are made from plants, fabrics dyed with vegetable dye and ceramics. <br> <br>Anne-Mari Alrsumi <br>\"I am a visual artist living and working in Helsinki. My works are created as a reaction to sensory experiences of the world around me. They bring an image to my mind, which I then work on through the material. Personal matter, intimate interaction and dealing with difficult emotions is a natural starting point in my work.<br> <br>I am also a materialist, so the material often acts as an inspirational journey in the process of creating the work and becomes part of the object of study.<br>The use of clay and plants has brought in different aspects of temporality and made me reflect on the life cycle of the work. As a theme in my work, nature represents a kind of apocalyptic interpretation and refers to the tragedy of the depletion of natural growth, in addition to being the material that is processed.\"</p><p>https://www.annemarialrsumi.com/<br>https://www.instagram.com/annemari.johanna<br>@annemarijohanna</p><p>Henna Parkkinen<br>\"I am a designer and textile artisan. I am currently working on textile sculptures and photography. What fascinates me is the end result, which is not always entirely clear. I am also attracted by the grounding emotional state of making things and the experimentation and reflection that happens while working. <br> <br>The core of my practice is to work with used materials to keep them in circulation in keeping with the principles of the circular economy. I want to minimise the waste generated by my work. I dye fabrics using avocado skins and seeds and onion and citrus peels. I'm fascinated by work that takes time: dyeing itself is an artistic process. In photography, the practice is experimental and random. I mainly shoot on film and record things that happen in life. I don't want to influence the subject, I want to capture the subject as authentically as possible. I have combined dried plants with the photographs in the exhibition. \"</p><p>https://cargocollective.com/hennaparkkinen<br>https://www.instagram.com/hennaparkkinen<br>@hennaparkkinen</p><p>Piia Suomi<br>\"I am a visual artist and painter based in Helsinki. I paint landscapes and semi-abstract subjects using earth pigments. The theme of nature appears in my works as an attempt to sketch an untouched primeval landscape that has not been shaped by humans. In the midst of destruction, I try to create paintings that reflect themes of permanence and survival.</p><p>My works emphasise landscapes and the intertwining of space and time. I am fascinated by abstracting subjects in a way that blurs the boundaries between the perceived and non-perceived worlds, allowing access to imagination, emotion and sensation. In this way, I feel I am getting closer to a shared experience of humanity and to a space where communication takes place not so much through language but through immediate sensations.\"</p><p>https://piiasuomi.com/<br>https://www.instagram.com/piiasuomi<br>@piiasuomi</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67573/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67605",
            "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: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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?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/name-4048114",
                        "sv": "https://www.lippu.fi/eventseries/name-4048114",
                        "en": "https://www.lippu.fi/eventseries/name-4048114"
                    },
                    "description": null,
                    "price": {
                        "fi": "20€/15€",
                        "sv": "20€/15€",
                        "en": "20€/15€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494422,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T09:12:58.921289Z",
                    "last_modified_time": "2026-01-09T09:12:58.921305Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782018.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494422/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-09T09:12:58.772719Z",
            "last_modified_time": "2026-03-23T09:13:37.508798Z",
            "date_published": null,
            "start_time": "2026-03-28T13:00:00Z",
            "end_time": "2026-03-28T14:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Juuresta latvaan - Flamencoa ja bluesia lasten hyväksi",
                "sv": "Juuresta latvaan – Flamencoa ja bluesia lasten hyväksi – Från rot till topp – Flamenco och blues till förmån för barnen",
                "en": "Juuresta latvaan – Flamenco and blues for children"
            },
            "location_extra_info": null,
            "provider": null,
            "short_description": {
                "fi": "Juuresta latvaan -hyväntekeväisyysmatinea kokoaa yhteen joukon flamencon ja juurimusiikin kovimpia ammattilaisia sekä flamencotanssikoulu Blue Flamencon oppilaita.",
                "sv": "Välgörenhetsmatinén Juuresta latvaan samlar en grupp proffs inom flamenco och roots-musik samt elever från flamencodansskolan Blue Flamenco.",
                "en": "The ‘Juuresta latvaan’ charity matinee brings together some of the best flamenco and roots music professionals and students from the Blue Flamenco flamenco dance school."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/42ECC71F550117D62D2B8F0C548AEF04/Juuresta_latvaan_-_Flamencoa_ja_bluesia_lasten_hyvaksi",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/42ECC71F550117D62D2B8F0C548AEF04/Juuresta_latvaan_Flamencoa_ja_bluesia_lasten_hyvaksi_",
                "en": "http://www.kanneltalo.fi/en/events/event/42ECC71F550117D62D2B8F0C548AEF04/Juuresta_latvaan_Flamenco_and_blues_for_children_"
            },
            "description": {
                "fi": "<p>Juuresta latvaan -hyväntekeväisyysmatinea kokoaa yhteen joukon flamencon ja juurimusiikin kovimpia ammattilaisia sekä flamencotanssikoulu Blue Flamencon oppilaita.</p><p>Kehitysvammaisten flamencotanssikoulu Blue Flamencon oppilaat haluavat auttaa tapahtuman tuotoilla kaikkein heikoimmassa asemassa olevia lapsia. Tapahtuman tuotto lahjoitetaan kokonaisuudessaan UNICEFin työhön maailman lasten hyväksi.</p><p>\"Jokaisella instrumentilla on oma ääni, vaikka musiikki on yhteinen.<br>  Nuori kirsikkapuu, vielä teini-ikäinen, varttuu varressa<br>  ja sen lähellä olevat omenapuut <br>  saman mullan kasvatteja.<br>  Multa ei väreillä koreile -<br>  loihtii mitä ihmeellisimmän värisiä<br>  hehkuvia<br>  aromaattisia hedelmiä.\"<br>- Kaarina Valoaallon kokoelmasta Äimän käki</p><p><b>Tanssi</b><br>Anne Riikola-Sarkkila / Vuelta Flamenco: Palavana-tanssiryhmä<br>Marja Rautakorpi, Pauliina Kauppila<br>Marja Rautakorven oppilasryhmä, soolo Camila Laine<br>Katja Lundén, Janne Marja-aho, Mikko Helenius<br>Katja Lundénin oppilasryhmä<br>Blue Flamencon Megafon</p><p><b>Musiikki:</b><br>Joonas Widenius, flamencokitara<br>Taija Robalta, laulu, palmas<br>Marianna Stråhlmann, palmas ja Mira que Mira -kuoro<br>Jantso Jokelin, bluestrubaduuri-kitara, laulu, huuliharppu</p><p>Juontaja: Tommi Virtanen</p><p>Blue Flamenco on vuonna 1999 perustettu kehitysvammaisten flamencotanssikoulu, jossa on korkeatasoinen, tavoitteellinen ja monipuolinen opetus. Koulun oppilaat ovat tavallisia harrastajia, jo jonkin aikaa tanssineista edistyneisiin. Ilmapiiri on kaiken vaativuuden keskellä salliva, suvaitsevainen ja uusille vaikutuksille avoin. Opetus sisältää monitasoista tekniikkaa, sekä eri koreografioita sevillanaksesta eri flamencotyyleihin. Tanssikoulu tekee yhteistyötä lukuisten muiden taiteentekijöiden kanssa.<br>Yhteistyössä: Blue Flamenco, Kanneltalo, esiintyvät ryhmät, Helsingin Flamencoyhdistys, Finnish Blues Society ry,  Kehitysvammatuki 57 ry ja UNICEF Suomi</p><p>Kesto: 1 h 45 min (sis. väliaika)</p><p>ESTEETTÖMYYS</p><p>Kanneltaloon on luiskalla varustettu esteetön sisäänkäynti Sitratorin pääsisäänkäynnin yhteydessä, samoin kuin Klaneettitien sisäänkäynnin yhteydessä. Saapuessasi Klaneettitien sisäänkäynnin kautta, ota yhteys vahtimestareihin oven vieressä sijaitsevalla ovipuhelimella. Vahtimestarit avaavat oven ja tulevat tarvittaessa auttamaan.</p><p>Konserttisalin katsomossa on 4 pyörätuolipaikkaa. Mikäli saavut pyörätuolilla, ilmoitathan tämän jo lippua ostaessasi. Saapuessasi voit ottaa etukäteen yhteyttä vahtimestareihin. Tiloissa on induktiosilmukka.</p><p>Konserttisalin riville 7 on esteetön kulku aulasta. Rollaattorin kanssa kulkevien suositellaan mahdollisuuksien mukaan varaamaan paikka riviltä 7.</p><p>Avustajakoiran kanssa näytökseen tulevaa pyydetään olemaan etukäteen yhteydessä Kanneltaloon.</p><p>VÄLIAIKATARJOILU</p><p>Café Hiekka Kanneltalo palvelee asiakkaita ennen esitystä ja mahdollisen väliaikatarjoilun merkeissä. Tapahtuma- ja väliaikatarjoilun voi tilata myös ennakkoon sähköpostitse myynti@hiekka.fi tai paikan päällä ennen esitystä.</p>",
                "sv": "<p>Välgörenhetsmatinén Juuresta latvaan samlar en grupp proffs inom flamenco och roots-musik samt elever från flamencodansskolan Blue Flamenco.</p><p>Eleverna på Blue Flamenco, som är en flamencodansskola för personer med intellektuell funktionsnedsättning, vill med intäkterna från evenemanget hjälpa de barn som har det allra svårast. Intäkterna från evenemanget doneras i sin helhet till UNICEFs arbete för världens barn.</p><p><b>Dans</b><br>Anne Riikola-Sarkias Vuelta Flamenca: Gruppen Palavana<br>Marja Rautakorpi, Pauliina Kauppila<br>Marja Rautakorpis elevgrupp, solo Camila Laine<br>Katja Lundén, Janne Marja-aho, Mikko Helenius<br>Katja Lundéns elevgrupp<br>Blue Flamencos Megafon</p><p><b>Musik</b><br>Joonas Widenius, flamencogitarr<br>Taija Robalta, sång, palmas<br>Marianna Stråhlmann, palmas och Mira que Mira-kören<br>Jantso Jokelin, bluestrubadurgitarr, sång, munspel</p><p>Programledare: Tommi Virtanen</p><p>Blue Flamenco är en flamencodansskola för personer med intellektuell funktionsnedsättning som grundades 1999, och som erbjuder en målinriktad och mångsidig undervisning på hög nivå. Skolans elever är vanliga hobbydansare, varav en del har dansat en tid och vissa är långt hunna. Även om det är krävande är stämningen tillåtande, tolerant och öppen för nya intryck. Undervisningen omfattar teknik på olika nivåer samt olika koreografier från sevillanas till olika flamencostilar. Dansskolan samarbetar med många andra konstskapare.<br>I samarbete: Blue Flamenco, Gamlasgården, scenkonstgrupper, Helsingin Flamencoyhdistys, Finnish Blues Society ry,  Kehitysvammatuki 57 ry och UNICEF Finland</p><p>Längd: 1 h 45 min. (inkl. paus)</p>",
                "en": "<p>The ‘Juuresta latvaan’ charity matinee brings together some of the best flamenco and roots music professionals and students from the Blue Flamenco flamenco dance school.</p><p>The students of Blue Flamenco, a flamenco dance school for people with developmental disabilities, want to use the proceeds of the event to help the most disadvantaged children. All proceeds from the event will be donated to UNICEF's work for children around the world.</p><p><b>Dance</b><br>Anne Riikola-Sarkian Vuelta Flamenca: Palavana Group<br>Marja Rautakorpi, Pauliina Kauppila<br>Marja Rautakorpi's student group, solo Camila Laine<br>Katja Lundén, Janne Marja-aho, Mikko Helenius<br>Katja Lundén's student group<br>Blue Flamenco Megafon</p><p><b>Music</b><br>Joonas Widenius, flamenco guitar<br>Taija Robalta, vocals, palmas<br>Marianna Stråhlmann, palmas and the Mira que Mira choir<br>Jantso Jokelin, blues troubadour guitar, vocals, harmonica</p><p>Presenter: Tommi Virtanen</p><p>Blue Flamenco is a flamenco dance school for people with intellectual disabilities, founded in 1999, which offers high-quality, goal-oriented and diverse instruction. The school's students are regular enthusiasts, ranging from those who have been dancing for a while to advanced dancers. Despite the demanding dance routines, the atmosphere is permissive, tolerant and open to new influences. Teaching includes techniques for various skill levels, as well as different choreographies from sevillanas to different flamenco styles. The dance school collaborates with numerous other artists.<br>In cooperation with: Blue Flamenco, Kanneltalo, performing groups, Helsingin Flamencoyhdistys, Finnish Blues Society ry,  Kehitysvammatuki 57 ry and UNICEF Finland</p><p>Duration: 1 h 45 min (incl. intermission)</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agnp34feey",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?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:p2787/?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:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e25y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e3ve/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e4da/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e4qm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e454/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e5le/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e5zu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e6hq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e6um/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e7bu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e7pq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34e75i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fali/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fayu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fbhi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fbuu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fccu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fcqm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fc5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fdky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34fdxu/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150472,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-13T07:34:03.349624Z",
                    "last_modified_time": "2024-03-13T07:34:03.349649Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/Entressen_lukukoirat.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Kaksi mäyräkoiraa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150472/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-12-08T11:25:59.466168Z",
            "last_modified_time": "2026-03-22T14:59:39.219362Z",
            "date_published": null,
            "start_time": "2026-01-08T11:00:00Z",
            "end_time": "2026-05-28T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lukukoirat Nekku ja Pätkis tavattavissa",
                "sv": "Läshundarna Nekku och Pätkis kan träffas",
                "en": "Meet the reading dogs Nekku and Pätkis"
            },
            "location_extra_info": {
                "fi": "Lastenosasto",
                "sv": "barnavdelningen",
                "en": "children's department"
            },
            "provider": null,
            "short_description": {
                "fi": " Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.",
                "sv": " Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.",
                "en": " If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader."
            },
            "info_url": null,
            "description": {
                "fi": "<p>Hei,</p><p>Olemme Nekku ja Pätkis, Entressen lukukoirat. Tykkäämme rapsuttelusta ja kuuntelemisesta. Jos opettelet juuri lukemaan tai lukeminen on vähän hankalaa, kannattaa tulla lukemaan meille, sillä lukukoira ei koskaan hauku lukijaa.</p><p>Kaikki ovat tervetulleita rapsuttamaan koiria!</p><p>Nekku ja Pätkis ovat tavattavissa Entressen lastenosastolla torstaisin klo 13-15.</p><p>Tervetuloa!</p>",
                "sv": "<p>Hej på er,</p><p>Vi är Nekku och Pätkis, Entresses läshundar. Vi gillar att bli klappade och lyssnade på. Om du precis har lärt dig läsa eller har lite svårt att läsa ska du komma och läsa med oss, för en läshund skäller aldrig på den som läser.</p><p>Alla är välkomna att klappa hundarna!</p><p>Nekku och Pätkis finns på barnavdelningen Entresse på torsdagar från den kl 13-15.</p><p>Varmt välkomna!</p>",
                "en": "<p>Hello,</p><p>We are Nekku and Pätkis, Entresse's reading dogs. We like to be petted and listened to. If you're just learning to read or have a little trouble reading, you should come and read with us, because a reading dog never barks at the reader.</p><p>Everyone is welcome to pet the dogs!</p><p>Nekku and Pätkis can be found in the Entresse children's section on Thursdays at 13-15</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnp34feey/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agozxhvbyy",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p8630/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824169,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-31T05:49:30.846302Z",
                    "last_modified_time": "2025-03-31T05:49:30.846317Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/13712f19-11d2-4bf5-8f1c-1e73ddb167be.jpg",
                    "name": "",
                    "cropping": "0,38,400,439",
                    "photographer_name": "",
                    "alt_text": "Kuvassa askarrellaan virpomavitsoja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824169/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-03-05T09:29:57.295550Z",
            "last_modified_time": "2026-03-22T14:11:24.644820Z",
            "date_published": null,
            "start_time": "2026-03-28T09:30:00Z",
            "end_time": "2026-03-28T11:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Virvon varvon tuoreeks terveeks-virpomavitsatyöpaja"
            },
            "location_extra_info": {
                "fi": "Paja"
            },
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa askartelemaan oma virpavitsa lauantaina 28.3. 2026 klo 11:30-13:30 kirjaston Pajassa"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Tule askartelemaan oma virpavitsa Palmusunnuntaille.</p><p>Espoon Kalevalaiset järjestävät jälleen virpavitsapajan lauantaina 28.3.2026 klo 11:30-13:30 Lippulaivan kirjaston Pajassa.</p><p>Iloista askartelua ja tietoa virpomisperinteestä. Tervetuloa!</p>"
            },
            "provider_contact_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvbyy/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}