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

{
    "meta": {
        "count": 23125,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=18",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=16"
    },
    "data": [
        {
            "id": "kulke:69588",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:14:02.666729Z",
                    "last_modified_time": "2026-07-07T10:14:02.666745Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790994.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385520/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:14:02.583181Z",
            "last_modified_time": "2026-07-07T10:14:02.774525Z",
            "date_published": null,
            "start_time": "2026-12-12T13:00:00Z",
            "end_time": "2026-12-12T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BE29BF2F4806EE00BFD29DAD6D028362/Amanda_Lydia_Traces_of_Your_Skin_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola  <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja.  <br>Ikäraja: 18</p>"
            },
            "name": {
                "fi": "Amanda & Lydia: Traces of Your Skin"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69588/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68551",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385519,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:14:02.355736Z",
                    "last_modified_time": "2026-07-07T10:14:02.355751Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790990.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385519/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:14:02.284800Z",
            "last_modified_time": "2026-07-07T10:14:02.451975Z",
            "date_published": null,
            "start_time": "2026-12-11T17:00:00Z",
            "end_time": "2026-12-11T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1B6B327DCA7AE32A28B4398CA341ADA6/Amanda_Lydia_Traces_of_Your_Skin_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola  <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja.  <br>Ikäraja: 18</p>"
            },
            "name": {
                "fi": "Amanda & Lydia: Traces of Your Skin"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68551/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69587",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385518,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:14:02.081395Z",
                    "last_modified_time": "2026-07-07T10:14:02.081412Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790991.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385518/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:14:02.002262Z",
            "last_modified_time": "2026-07-07T10:14:02.203840Z",
            "date_published": null,
            "start_time": "2026-12-11T13:00:00Z",
            "end_time": "2026-12-11T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/63984EE53CBF6BB863CA9A5392EFA561/Amanda_Lydia_Traces_of_Your_Skin"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola  <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja.  <br>Ikäraja: 18</p>"
            },
            "name": {
                "fi": "Amanda & Lydia: Traces of Your Skin"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69587/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68549",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/traces-of-your-skin-4169968/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385517,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:14:01.736549Z",
                    "last_modified_time": "2026-07-07T10:14:01.736566Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790987.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385517/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:14:01.640630Z",
            "last_modified_time": "2026-07-07T10:14:01.836521Z",
            "date_published": null,
            "start_time": "2026-12-10T17:00:00Z",
            "end_time": "2026-12-10T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/FBBC6804A0D3FE560FC2AE26EB4C27F8/Amanda_Lydia_Traces_of_Your_Skin_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Nykytanssiteos kahden transnaisen siskoudesta. Kehojen dialogi, kannattelu ja samaistuva katse painavat ihoon jälkiä läheisyydestä, lohdusta ja kivusta.</p><p>Siskous ei ole annettu.</p><p>Se syntyy katseessa, joka tunnistaa. Kosketuksessa, joka jää. Päätöksessä olla toiselle lähellä, yhä uudelleen, vaikka läsnäolo ei ole koskaan yksiselitteistä.</p><p><i>Traces of Your Skin</i> on nykytanssiteos kahden transnaisen välisestä siskoudesta. Se tarkastelee valittua perhettä suhteena, joka syntyy tekemisessä: koskettamisessa, kannattelussa ja katseessa. Siskous ei perustu yhteiseen lapsuuteen, vaan jaettuihin kokemuksiin, samaistumiseen ja päätökseen olla toiselle olemassa.</p><p>Esityksessä kehot koskettavat, kannattelevat ja ohjaavat toisiaan. Ne silittävät, harovat, pitävät kiinni ja irrottavat. Liike rakentuu suhteesta, jossa toinen keho on samanaikaisesti tuttu ja muuttuva. Iho toimii pintana, johon muistot ja odotukset jättävät jäljen. Turva ja lohtu kietoutuvat pelkoon, kateuteen ja kipuun.</p><p>Feminiinisyys näyttäytyy jaettuna kokemuksena ja materiaalina, joka tuntuu omalta, mutta on muotoutunut muistojen ja odotusten kautta. Näyttämöllä se saa levätä ilman ulkopuolista määrittelyä, asettuen syliin ja lempeään läheisyyteen.</p><p>**</p><p>Teoksen koreografit ja esiintyjät <b>Amanda 007</b> ja <b>Lydia Ofi Teresia</b> ovat työskennelleet yhdessä yli 15 vuoden ajan ystävinä, siskoina ja taiteellisina kumppaneina Amanda & Lydia -duona. Heidän yhteinen liikekielensä on syntynyt pitkäkestoisessa vuoropuhelussa ja jaetuissa kokemuksissa transtaustaisina esiintyjinä. Teos liikkuu nykytanssin, performatiivisuuden ja ballroomin vaikutteiden risteyksessä, mutta rakentuu ennen kaikkea esiintyjien välisestä suhteesta.</p><p>Työryhmään kuuluvat lisäksi äänisuunnittelija <b>Olli Lautiola</b>, valosuunnittelija <b>Kristian Palmu</b>, pukusuunnittelija <b>Joona Huotari-Andreou</b> sekä skenografi <b>Landys Roimola</b>, joiden työ kytkeytyy osaksi teoksen liikettä, kehoa ja tilaa.</p><p><i>Traces of Your Skin</i> viipyy siinä, mitä kahden kehon välillä tapahtuu, kun ei tarvitse selittää tai esittää. <br> <br><b>Koreografia, tanssi</b>: Lydia Ofi Teresia <br><b>Koreografia, tanssi</b>: Amanda 007 <br><b>Äänisuunnittelu</b>: Olli Lautiola  <br><b>Valosuunnittelu</b>: Kristian Palmu <br><b>Pukusuunnittelu</b>: Huotari-Andreou Joona <br><b>Skenografia</b>: Landys Roimola <br> <br>Sisältöhuomio: Esitys sisältää alastomuutta, kovaa ääntä, teatterisavua ja välkkyviä valoja.  <br>Ikäraja: 18</p>"
            },
            "name": {
                "fi": "Amanda & Lydia: Traces of Your Skin"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68549/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68932",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385516,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:13:59.421191Z",
                    "last_modified_time": "2026-07-07T10:13:59.421206Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792279.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385516/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-07-07T10:13:59.327503Z",
            "last_modified_time": "2026-07-07T10:13:59.552109Z",
            "date_published": null,
            "start_time": "2026-11-21T11:00:00Z",
            "end_time": "2026-11-21T14:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_",
                "en": "http://www.kanneltalo.fi/en/events/event/9EA3B3CC7E673AFA3819282AF422A287/Lasten_lauantai_lapset_ovat_hyvia_ihmettelemaan_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Lasten lauantaissa tieteillään, taiteillaan, leikitään ja ihmetellään.</p><p><b>Klo 10–16 | Skidimarket</b><br>Gallerian Skidimarketissa saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin! Skidimarket on tila lasten omalle leikille ja mielikuvitusasiakkaille. Tilapäinen leikkikauppa valtaa galleriatilan, jonne muodostuu värikäs marketmaailma. Hyllyttämistä ja kassahommia tarjolla! Tuotanto: Skidit-kollektiivi.</p><p><b>Klo 13–16 | Lapset ovat hyviä ihmettelemään! -taidepaja</b> <br>Tässä kaikenikäisten taidepajassa leikitään luonnontieteilijöitä tutkimalla luonnon pieniä ihmeitä. Tarkastelemme luupeilla ja lasten mikroskoopilla huolellisesti erilaisia luonnonmateriaaleja. Piirrämme havainnoistamme leikkisiä ja värikkäitä taideteoksia erilaisilla piirustusvälineillä. Oletko valmis näkemään aivan uudella tavalla jäkälän, pikkukivet ja tammenterhot? Työpajan järjestää Seikkailutaidekoulu.</p><p><b>Klo 14 | Dinosauruksen hikka vai mehiläisen kakka?</b><br>33 kutkuttavaa lasten tiedekysymystä</p><p>Uusintaesitys yleisön pyynnöstä! Lasten tiedekysymyksistä kootussa musiikillisessa teatteriseikkailussa tiede tanssii sambaa ja mielikuvitus laukkaa. Varoitus: Esitys saattaa aiheuttaa kroonista kysymysripulia! Kesto: 50 min. Esityskieli: suomi. Liput: 15 / 12 / 6 € osoitteesta lippu.fi.</p>"
            },
            "name": {
                "fi": "Lasten lauantai – lapset ovat hyviä ihmettelemään!",
                "sv": "Lasten lauantai – lapset ovat hyviä ihmettelemään!",
                "en": "Lasten lauantai – lapset ovat hyviä ihmettelemään!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68932/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68937",
            "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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385515,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:13:59.009129Z",
                    "last_modified_time": "2026-07-07T10:13:59.009148Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792283.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385515/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:13:58.865614Z",
            "last_modified_time": "2026-07-07T10:13:59.163419Z",
            "date_published": null,
            "start_time": "2026-11-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.",
                "sv": "Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.",
                "en": "Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales",
                "en": "http://www.kanneltalo.fi/en/events/event/7D1BCA508B79D63011ECF0AE67F1ECB1/Tell_Your_Birds_Manu_Rosales"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Kanneltalossa klubeja järjestetään syksyn 2026 aikana kahtena iltana. Ensimmäisessä klubi-illassa 2.10. esiintyvät Humphrey Mubba ja Trio Mandeng. Toinen klubi-ilta järjestetään 20.11. Lapsen oikeuksien päivänä ja esiintymässä ovat Tell Your Birds ja Manu Rosales.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Klubi tarjoilee mukaansa tempaavan musiikin lisäksi myös muuta mukavaa lapsille sopivaa ohjelmaa. Aloitetaan viikonloppu yhdessä!</p><p><b>Manu Rosales</b> on säveltäjä, kitaristi ja laulaja Buenos Airesista, Argentiinasta. Hänen musiikkinsa juuret johtavat syvälle Buenos Airesin laulunkirjoitusperinteeseen ja heijastelevat tätä moninaista maailmankaupunkia kierteleviä vaikutteita. <i>Volver Siguiendo</i> -konsertti katsoo perinnettä ja identiteettiä elävänä ja keskeneräisenä prosessina, johon sekoittuu kaikki tätä uutta aluetta kiertävä, sekä esitykseen osallistuvat upeat muusikot.</p><p>Esitys kulkee läpi Argentiinan, Brasilian ja Andien vuoriston monimuotoisten musiikkityylien. Kutsumme sinut ainutlaatuiseen, akustiseen ja lämmintunnelmaiseen konserttiin, jossa Rosales yhtyeineen esittää omia ja vielä julkaisemattomia kappaleitaan – tutustumaan tähän nykyaikaiseen näkemykseen perinteestä, sävellyksestä ja laulusta.</p><p><b>Tell Your Birds</b> on nykykansanmusiikkiyhtye, jonka muodostavat <b>Vija Moore</b> (Latvia; lyömäsoittimet, balafon, laulu), <b>Kärt Tambet</b> (Viro; viulu ja laulu), <b>Simone Spampinato</b> (Italia; syntetisaattori ja live-elektroniikka) sekä <b> Kristīne Tukre (Latvia; konserttikokle).</p><p><b>Global Club Nights</b> -klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen ja siltojen rakentaminen kaikkien musiikin ystävien ja heidän yhteisöjensä välille. Kulttuurikeskus Kanneltalo tuottaa Global Club Nights (GCN) -illat yhteistyössä Sibelius-Akatemian Global Music -koulutusohjelman ja Maailman musiikin keskuksen kanssa.</p>",
                "sv": "<p>Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans.</p><p>I Gamlasgården ordnas klubben två kvällar under hösten 2026. På den första klubbkvällen 2.10. framträder Humphrey Mubba ja Trio Mandeng. Den andra klubbkvällen ordnas 20.11. i Veckan för barnets rättigheter med Tell Your Birds och Manu Rosales.</p><p>De avgiftsfria klubbkvällarna börjar tidigt, så barn är också välkomna i sällskap av en vuxen. Låt oss inleda veckoslutet tillsammans!</p>",
                "en": "<p>Global Club Nights (GCN) is a club series where people who work with and love music come together to celebrate music.</p><p>The free club nights start early, so children are welcome when accompanied by an adult. In addition to exciting music, the club also offers other fun activities suitable for children. Let's start the weekend together!</p><p>Kanneltalo will host the club on two evenings during the autumn of 2026. The first club night on 2nd October will feature Humphrey Mubba and Trio Mandeng. The second club night will take place on 20th November during Children’s Rights Week with artists Tell Your Birds ja Manu Rosales.</p><p><b>Manu Rosales</b> is a composer, guitarist, and singer from Buenos Aires, Argentina. His music is deeply rooted in the song composition traditions of Buenos Aires, reflecting the multitude of influences that orbit within that diverse and cosmopolitan city. <i>Volver Siguiendo (Return in Continuation)</i> reveals a concert that consider both tradition and identity as an alive unfinished process – blending it with everything that orbits around this new territory and the astounding musicians who will take part in the performance.</p><p>The performance goes through diverse musical styles from Argentina, Brazil and the Andes mountains. You are invited to an unrepeatable, acoustic, and intimate concert featuring original and unpublished works – a contemporary vision of tradition, composition, and song.</p><p><b> Tell Your Birds</b> is a contemporary folk music band featuring <b>Vija Moore</b> (Latvia; percussion, balafon and voice), <b>Kärt Tambet</b> (Estonia; violin and voice), <b>Simone Spampinato</b> (Italy; synthesizer and live electronics) and <b>Kristīne Tukre</b> (Latvia; concert kokle).</p><p><b>Global Club Nights</b> aims to create a safe, inclusive and creative environment and build bridges between all music lovers and their communities. Cultural Centre Kanneltalo produces Global Club Nights (GCN) evenings in cooperation with the Sibelius Academy’s Global Music study programme and the World Music Centre.</p>"
            },
            "name": {
                "fi": "Tell Your Birds & Manu Rosales – Global Club Nights",
                "sv": "Tell Your Birds & Manu Rosales – Global Club Nights",
                "en": "Tell Your Birds & Manu Rosales – Global Club Nights"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68937/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69067",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "34,90€ / 24,80€",
                        "sv": "34,90€ / 24,80€",
                        "en": "34,90€ / 24,80€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/",
                        "sv": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/",
                        "en": "https://www.lippu.fi/event/sari-schorr-usa-malmitalo-21583491/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385514,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:13:57.273686Z",
                    "last_modified_time": "2026-07-07T10:13:57.273702Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792656.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385514/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:13:57.192558Z",
            "last_modified_time": "2026-07-07T10:13:57.370554Z",
            "date_published": null,
            "start_time": "2026-11-06T17:00:00Z",
            "end_time": "2026-11-06T18:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Laulaja-lauluntekijä Sari Schorr tunnetaan intensiivisestä tulkinnastaan, vahvasta lavapreesensistään ja syvältä kumpuavasta bluesrock-soundistaan."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_",
                "en": "http://www.malmitalo.fi/en/events/event/4A45BED72F6C7A967C045150B0EB0686/Sari_Schorr_USA_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Laulaja-lauluntekijä Sari Schorr tunnetaan intensiivisestä tulkinnastaan, vahvasta lavapreesensistään ja syvältä kumpuavasta bluesrock-soundistaan.</p><p>New Yorkista lähtöisin oleva Schorr on noussut kansainväliseen tietoisuuteen tinkimättömällä tyylillään, jossa yhdistyvät bluesin perinne, rockin energia ja soulmusiikin tunnevoima. Schorrin musiikki ammentaa vaikutteita klassisesta bluesista, mutta tuo siihen modernin ja persoonallisen otteen. Hänen äänensä on tunnistettava – raaka, voimakas ja täynnä tunnetta – ja hänen esiintymisensä ovat keränneet kiitosta ympäri maailmaa.</p><p>Uransa aikana Schorr on tehnyt yhteistyötä arvostettujen muusikoiden ja tuottajien kanssa sekä esiintynyt merkittävillä festivaaleilla ja konserttilavoilla Euroopassa ja Yhdysvalloissa. Hänen kappaleensa käsittelevät usein elämän haasteita, voimaa ja selviytymistä, mikä tekee hänen musiikistaan samaistuttavaa ja vaikuttavaa.</p><p>Sari Schorrin live-esiintymiset ovat intensiivisiä ja tunteikkaita kokemuksia, joissa yhdistyvät vahva tulkinta ja energinen bändisoitto. Hän on artisti, joka ei jätä yleisöä kylmäksi. Schorr jatkaa vahvaa nousuaan kansainvälisellä musiikkikentällä ja vakiinnuttaa asemaansa yhtenä modernin bluesrockin kiinnostavimmista nimistä.</p><p>Kesto: 1 t 15 min</p>"
            },
            "name": {
                "fi": "Sari Schorr (USA)",
                "sv": "Sari Schorr (USA)",
                "en": "Sari Schorr (USA)"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69066",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20€ / 15€",
                        "sv": "20€ / 15€",
                        "en": "20€ / 15€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/",
                        "sv": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/",
                        "en": "https://www.lippu.fi/event/wimme-rinne-malmitalo-21668982/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385513,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:13:56.823755Z",
                    "last_modified_time": "2026-07-07T10:13:56.823835Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792654.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385513/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:13:56.741630Z",
            "last_modified_time": "2026-07-07T10:13:56.958554Z",
            "date_published": null,
            "start_time": "2026-11-05T17:00:00Z",
            "end_time": "2026-11-05T18:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Ikiaikainen joiku ja modernit äänimaailmat kohtaavat luoden universaalia, ajassa kiinni olevaa musiikkia."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne",
                "en": "http://www.malmitalo.fi/en/events/event/FABA157A291924E15668080BF864BF7F/Wimme_Rinne"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Ikiaikainen joiku ja modernit äänimaailmat kohtaavat luoden universaalia, ajassa kiinni olevaa musiikkia.</p><p>Saamelainen <b>Wimme Saari</b> on kotoisin Käsivarren Kelottijärveltä. Traditionaalisen joiun suvereenina taitajana hän on kehittänyt myös täysin oman modernin joikaustyylinsä, jossa kuuluu vaikutteita aikamme musiikista – ja jopa äänitaiteesta.</p><p><b>Tapani Rinne</b> on asunut koko aikuisikänsä urbaanissa Helsingissä, mutta hänen juurensa löytyvät Länsi-Suomen Satakunnasta. Lapsuuden avarilla peltomaisemilla lienee vaikutuksensa siihen, että Rinteen puhaltamissa saksofoni- ja klarinettilinjoissa on aistittavissa vahva tilantunne, jonkinlainen \"pohjoismaisuus\".</p><p>Saari ja Rinne ovat tehneet musiikkia yhdessä yli neljännesvuosisadan ajan ja kiertäneet esittämässä sitä eri mantereilla. Ystävysten nykyinen kokoonpano on duo, Wimme & Rinne, jossa molempien persoonien taustat ja kokemus yhdistyvät. Tuloksena on herkkää ja voimakasta musiikkia, joka on läsnä tässä ja nyt.</p><p>Kesto: 1 t 15 min</p>"
            },
            "name": {
                "fi": "Wimme & Rinne",
                "sv": "Wimme & Rinne",
                "en": "Wimme & Rinne"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69066/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69280",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385001,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-06-09T07:13:35.209128Z",
                    "last_modified_time": "2026-06-09T07:13:35.209146Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791495.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385001/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-06-09T07:13:35.114304Z",
            "last_modified_time": "2026-07-07T10:13:56.584472Z",
            "date_published": null,
            "start_time": "2026-11-05T16:00:00Z",
            "end_time": "2026-11-05T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.",
                "sv": "I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.",
                "en": "In this workshop, we learn how to use eco-friendly materials in visual art."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D76CCB19BAA5D42117F00FC3CC1C1408/Ekotaidetorstai",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D76CCB19BAA5D42117F00FC3CC1C1408/Ekokonsttorsdag_",
                "en": "http://www.malmitalo.fi/en/events/event/D76CCB19BAA5D42117F00FC3CC1C1408/Eco-art_Thursday_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>",
                "sv": "<p>I verkstäderna lär deltagarna sig hur de kan använda ekologiska material inom bildkonsten.</p><p>Under bildkonstverkstäderna på torsdagar ligger tyngdpunkten på tecknings- och målningstekniker. Vi tillverkar bland annat naturliga bläck och veganska temperafärger, och använder olika återvunna material på ett kreativt sätt. Tidigare erfarenhet krävs inte och alla är välkomna att delta.  <br> <br>Lärare på verkstäderna är bildkonstnären Satu Kalliokuusi, som är väl insatt i ekologiska metoder inom bildkonsten.</p><p><u><a href=\"https://harrastukset.hel.fi/sv/kurssit/helsinki:ago7zj6thi\">Du kan anmäla dig till alla eller vissa av tillfällena via den här länken (på finska)</u></a> från och med den 1 augusti kl. 9.00. Kursen riktar sig till ungdomar i åldern 16–20 år.</p>",
                "en": "<p>In this workshop, we learn how to use eco-friendly materials in visual art.</p><p>The main focus of the art workshops on Thursdays is on drawing and painting techniques. We make supplies such as natural inks and vegan tempera paints, and make creative use of various recycled materials. No prior experience is required, and everyone is welcome to join in.  <br> <br>The workshops are led by visual artist Satu Kalliokuusi, who specialises in ecological methods in visual art.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">You can sign up for all or some of the sessions via this link (in Finnish)</u></a> from 1 August at 9.00 onwards. The course is aimed at young people aged 16–20.</p>"
            },
            "name": {
                "fi": "Ekotaidetorstai",
                "sv": "Ekokonsttorsdag",
                "en": "Eco-art Thursday"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69280/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68632",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385512,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T10:13:55.980648Z",
                    "last_modified_time": "2026-07-07T10:13:55.980664Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791315.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385512/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T10:13:55.851791Z",
            "last_modified_time": "2026-07-07T10:13:56.138295Z",
            "date_published": null,
            "start_time": "2026-11-03T16:00:00Z",
            "end_time": "2026-11-03T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti",
                "en": "http://www.malmitalo.fi/en/events/event/BBD0C8C22361C3C827C498384DCA18C8/PHMOsta_kajahtaa_-oppilaskonsertti"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>"
            },
            "name": {
                "fi": "PHMOsta kajahtaa! -oppilaskonsertti",
                "sv": "PHMOsta kajahtaa! -oppilaskonsertti",
                "en": "PHMOsta kajahtaa! -oppilaskonsertti"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68632/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69586",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:613/?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:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 / 7 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/caisa-30-club-kulttuurikeskus-caisa-21702291/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385511,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T09:13:57.906733Z",
                    "last_modified_time": "2026-07-07T09:13:57.906747Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791980.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385511/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T09:13:57.809150Z",
            "last_modified_time": "2026-07-07T09:13:58.031784Z",
            "date_published": null,
            "start_time": "2026-12-04T17:00:00Z",
            "end_time": "2026-12-04T19:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Kahden helsinkiläisen sateenkaarikuoron yhteinen klubi-ilta tarjoaa yleisölle yhteenkuuluvuutta ja välittämistä kuoromusiikin, kirjeiden ja yhteislaulun muodossa."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/19EF86BED2C9441EEE12D8464610DF21/Out_n_loud_HQFK_Queerly_Yours_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kahden helsinkiläisen sateenkaarikuoron yhteinen klubi-ilta tarjoaa yleisölle yhteenkuuluvuutta ja välittämistä kuoromusiikin, kirjeiden ja yhteislaulun muodossa.</p><p>Konsertin keskiössä on kirjoitettu, lähetetty, vastaanotettu kirje: kirjoitettuja sanoja, sanoitettuja kokemuksia ja jaettuja ajatuksia, joita kirjoittaja on halunnut jakaa vastaanottajan kanssa. Jokainen klubi-illan osallistuja saa illan aikana kirjeen, jonka joku esiintyjistä on kirjoittanut. Klubi-illan toteuttavat yhdessä gaykuoro Out ’n loud ja Helsingin queer-feministinen kuoro, HQFK.</p><p>Queerly Yours! on yhteisökokemus: lämmin halaus ja musiikillinen kirje “kaikilta meiltä, kaikille meille”. Tähän konserttiin jokainen on tervetullut juuri sellaisena omana itsenään kuin on!</p><p><b>Out ’n loud</b> on Suomen ensimmäinen gaykuoro, joka on vuodesta 2004 alkaen tuonut estradeille iloa, tunnetta ja yhteisöllistä voimaa. Viime vuonna 20-vuotista taivaltaan juhlinut kuoro tunnetaan energisistä esiintymisistään ja monipuolisesta ohjelmistostaan. Out ‘n loud herättää kappaleen kuin kappaleen eloon omalla karismallaan, kun lavalle nousee yli 30 gaykuorolaisen joukko.</p><p><b>Helsingin queer-feministinen kuoro, HQFK</b> on vuonna 2022 perustettu yhteisökuoro, joka pyrkii musiikissaan löytämään oman ainutlaatuisen äänensä sekä sävelten avulla murskaamaan patriarkaatin epätasa-arvoistavat rakenteet ja kankeat binääriset jaottelut – unohtamatta tietysti valoa ja iloa, joita yhteinen ja rakas sateenkaareva musiikkiharrastus tuo mukanaan!</p><p>Kesto: 1 t 40 min, sisältäen 20 minuutin väliajan<br>Tapahtuman kieli: laulut suomeksi, ruotsiksi ja englanniksi; juonnot suomeksi ja englanniksi.</p>"
            },
            "name": {
                "fi": "Out 'n loud & HQFK: Queerly Yours! – Caisa 30 Club"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69586/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68927",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?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:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385506,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T09:13:54.327660Z",
                    "last_modified_time": "2026-07-07T09:13:54.327675Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792273.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385506/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T09:13:54.234724Z",
            "last_modified_time": "2026-07-07T09:13:54.469130Z",
            "date_published": null,
            "start_time": "2026-11-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,
            "provider": null,
            "short_description": {
                "fi": "Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F6B2201A180752668CD9977BF9696771/Kirjailijavieraana_professori_Esko_Valtaoja",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F6B2201A180752668CD9977BF9696771/Forfattarbesok_Esko_Valtaoja",
                "en": "http://www.kanneltalo.fi/en/events/event/F6B2201A180752668CD9977BF9696771/Guest_Author_Esko_Valtaoja"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Tähtitieteilijä Esko Valtaoja ruotii aikamme ilmiöitä omaan jäljittelemättömään tyyliinsä. Haastattelijana FM Tuija Takala.</p><p><i>\"Maailmamme koostuu lukemattomista pakahduttavan mielenkiintoisista asioista ja niiden välisistä yllättävistäkin yhteyksistä.</p><p>\"'Maailmaan virtaa tauotta jotain uutta, mutta silti siedämme uskomatonta tylsyyttä' surkutteli Henry Thoreau, jo sata vuotta ennen syntymääni. Minulla on uskomattoman huono tylsyyden sietokyky; se on yksi selitys tämänkin kirjan olemassaoloon. Jos nämä kirjoitukset onnistuvat lievittämään myös jonkun muun tylsistymistä, en ole nakutellut niitä ihan turhaan.</p><p>\"Minkään tekstin ei pitäisi olla viimeinen vaan ensimmäinen sana, uusien ajatusten alullepanija lukijassa.\"</i></p><p><b>Esko Valtaoja</b> on Turun yliopiston avaruustähtitieteen emeritusprofessori ja Tuorlan observatorion entinen johtaja. Valtaoja on myös tunnettu tieteen kansantajuistajana. Hänen teoksensa Kotona maailmankaikkeudessa sai Tieto-Finlandia-palkinnon vuonna 2002.</p><p>Keskustelun kieli: suomi</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana professori Esko Valtaoja – Maksuttomat maanantait",
                "sv": "Författarbesök: Esko Valtaoja – Kostnadsfria måndagar",
                "en": "Guest Author Esko Valtaoja – Free Mondays"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68927/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68920",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385505,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T09:13:53.347738Z",
                    "last_modified_time": "2026-07-07T09:13:53.347754Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792228.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385505/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T09:13:53.232526Z",
            "last_modified_time": "2026-07-07T09:13:53.541643Z",
            "date_published": null,
            "start_time": "2026-11-04",
            "end_time": "2026-11-27",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Nyt saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin!"
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_",
                "en": "http://www.kanneltalo.fi/en/events/event/065215D7693E8E61E127865C51A957B4/Skidimarket_nyt_saa_leikkia_"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Nyt saa leikkiä! Skidimarket kutsuu uusia hyllyttäjiä, kassahenkilökuntaa ja paistopistetyyppejä hommiin!</p><p>Skidimarket on tila lasten omalle leikille ja mielikuvitusasiakkaille. Tilapäinen leikkikauppa valtaa galleriatilan, jonne muodostuu värikäs marketmaailma. Hyllyttämistä ja kassahommia tarjolla!<br> <br>Skidimarketin toteuttaa Skidit-kollektiivi, joka liputtaa leikkisän elämän puolesta. Kollektiivi järjestää suosittuja Skidit-tapahtumia, kuten diskot ja risteilyt, ja tekee hauskoja installaatioita ja performansseja.</p><p>Galleria<br>Vapaa pääsy</p>"
            },
            "name": {
                "fi": "Skidimarket: nyt saa leikkiä!",
                "sv": "Skidimarket: nyt saa leikkiä!",
                "en": "Skidimarket: nyt saa leikkiä!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68920/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69099",
            "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": [],
                    "price": {
                        "fi": "39,50€ / 32,50€",
                        "sv": "39,50€ / 32,50€",
                        "en": "39,50€ / 32,50€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jyrki-anttilan-60-vuotisjuhlakonsertti-kauneimmat-lauluni-kanneltalo-21724057/",
                        "sv": "https://www.lippu.fi/event/jyrki-anttilan-60-vuotisjuhlakonsertti-kauneimmat-lauluni-kanneltalo-21724057/",
                        "en": "https://www.lippu.fi/event/jyrki-anttilan-60-vuotisjuhlakonsertti-kauneimmat-lauluni-kanneltalo-21724057/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385502,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T08:13:51.443793Z",
                    "last_modified_time": "2026-07-07T08:13:51.443810Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793221.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385502/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T08:13:51.348414Z",
            "last_modified_time": "2026-07-07T08:13:51.550486Z",
            "date_published": null,
            "start_time": "2026-11-05T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Pitkän ja hienon uran tehnyt tenori Jyrki Anttila juhlistaa 60-vuotisjuhlavuottaan Kanneltalossa."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/1FB2E5D71D4CADFEE56940FCE8FC01DD/Tenori_Jyrki_Anttilan_60-vuotisjuhlakonsertti_Kauneimmat_lauluni",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/1FB2E5D71D4CADFEE56940FCE8FC01DD/Tenori_Jyrki_Anttilan_60-vuotisjuhlakonsertti_Kauneimmat_lauluni",
                "en": "http://www.kanneltalo.fi/en/events/event/1FB2E5D71D4CADFEE56940FCE8FC01DD/Tenori_Jyrki_Anttilan_60-vuotisjuhlakonsertti_Kauneimmat_lauluni"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Pitkän ja hienon uran tehnyt tenori Jyrki Anttila juhlistaa 60-vuotisjuhlavuottaan Kanneltalossa.</p><p>Konsertin ohjelmistoon on kerätty kaikki rakkaimmat laulut: Muistathan kai, Sun on mun sydämein, Nuoruusmuistoja, Ystävän laulu, Con te partiro, Äänisen aallot, Delilah, Kertokaa se hänelle, Hopeinen kuu, Myrskyluodon Maija, Mamma, Granada, Kotkan poikii, Rosvo-Roope, Puhu hiljaa rakkaudesta, ja monet muut ihanat laulut.</p><p>Tenori Jyrki Anttila<br>Pianisti Anu Kosonen<br>Harmonikka Petri Ikkelä</p><p>Liput: 39,5 / 32,5 €. Ryhmälippuja konserttiin myydään hintaan 32,5 € / hlö – matkanvetäjä saa ilmaisen lipun!</p><p>Kesto 1 t 50 min</p>"
            },
            "name": {
                "fi": "Tenori Jyrki Anttilan 60-vuotisjuhlakonsertti – Kauneimmat lauluni",
                "sv": "Tenori Jyrki Anttilan 60-vuotisjuhlakonsertti – Kauneimmat lauluni",
                "en": "Tenori Jyrki Anttilan 60-vuotisjuhlakonsertti – Kauneimmat lauluni"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69099/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:69330",
            "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": [],
                    "price": {
                        "fi": "20€ 15€",
                        "sv": "20€ 15€",
                        "en": "20€ 15€"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/etnosoi-festivaali-ya-voy-col-fra-kanneltalo-21721731/",
                        "sv": "https://www.lippu.fi/event/etnosoi-festivaali-ya-voy-col-fra-kanneltalo-21721731/",
                        "en": "https://www.lippu.fi/event/etnosoi-festivaali-ya-voy-col-fra-kanneltalo-21721731/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385501,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T08:13:50.874095Z",
                    "last_modified_time": "2026-07-07T08:13:50.874117Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793954.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385501/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T08:13:50.764114Z",
            "last_modified_time": "2026-07-07T08:13:50.991296Z",
            "date_published": null,
            "start_time": "2026-11-03T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "iYa Voy! on neljän muusikon taianomainen matka perinteisen kolumbialaisen musiikin ja improvisoidun musiikin kohtauspisteeseen.",
                "en": "¡Ya Voy! is the magic of a meeting between traditional Colombian music and improvised music. It is the story of four musicians who travel."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CCC357AD13AD284653EA18D53699C366/_Ya_Voy_COL_FRA_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CCC357AD13AD284653EA18D53699C366/_Ya_Voy_COL_FRA_",
                "en": "http://www.kanneltalo.fi/en/events/event/CCC357AD13AD284653EA18D53699C366/_Ya_Voy_COL_FRA_Colombian_Trance"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>iYa Voy! on neljän muusikon taianomainen matka perinteisen kolumbialaisen musiikin ja improvisoidun musiikin kohtauspisteeseen.</p><p>Yhtye laulaa utopiastaan ja luo mielikuvituksellista, eloisaa ja dynaamista uutta kansanperinnettä.</p><p><b>Alejandra Charry</b> ja <b>Moises Zamora Mesù</b> kasvoivat yhdessä Cabuyal Candelarian kylässä Länsi-Kolumbian Valle del Caucassa. Alejandra saapui Ranskaan vuonna 2004, kun taas Moises asuu edelleen Kolumbiassa. <b>Sakina Abdoun</b> ja <b>Thibault Cellierin</b> polut ovat kohdanneet eurooppalaisen jazzin ja improvisoidun musiikin kentällä vuosikymmenen ajan ilman, että heillä on aiemmin ollut mahdollisuus soittaa yhdessä.</p><p>Yhtyeen musiikissa on läsnä perinteinen kolumbialainen musiikki keinuvine kolmitahtisine rytmeineen, vapautta juhlistavat hymnit ja lyömäsoittimet, tanssi sekä transsi ja sen sosiaalinen suhde musiikkiin. iYa Voy!:n musiikissa on läsnä myös jazzin ja improvisoidun musiikin vapaus, sitoutuminen ja perinteiden omaksuminen ollen samalla vahvasti kiinni juuri tässä hetkessä.</p><p>¡Ya Voy! on kahden improvisaatioperinteen – perinnemusiikin ja free jazzin – liitto. Monimuotoisuuden jakamisen rikkaus on ¡Ya Voy!:n musiikin ytimessä, ja siinä on vahva kulttuuriperintö. Risteyskohdassa vallitsee kahlitsematon vapaan musiikin tila.</p><p>Alejandra Charry: laulu<br>Sakina Abdou: saksofonit<br>Moises Zamora Mesú: marimba, perkussiot<br>Thibault Cellier: kontrabasso</p><p>Konsertin tuotanto: Kanneltalo & Etnosoi! <br>Kiertueen tuotanto: Home Factory & Vapaat äänet</p>",
                "en": "<p>¡Ya Voy! is the magic of a meeting between traditional Colombian music and improvised music. It is the story of four musicians who travel.</p><p>¡Ya Voy! sings its utopia and creates a colorful, ever-moving imaginary folklore.<br><b>Alejandra Charry</b> and <b>Moises Zamora</b> Mesù grew up together in the village of Cabuyal Candelaria, in western Colombia, in the Valle del Cauca region. Charry arrived in France in 2004 with her voice and her cello, while Moises still lives in Colombia with his marimba and multiple instruments. On the other side of the continents, <b>Sakina Abdou</b> and <b>Thibault Cellier</b> have crossed paths on European jazz and improvised music stages for over a decade without ever having had the chance to play together.</p><p>On one side, traditional Colombian music with its lilting triple meter, its hymns celebrating freedom, its tradition of voice and percussion, dance and trance, and its social, ritualized relationship to music. On the other, jazz and improvised music with their sense of freedom, commitment, the appropriation of traditions, and the celebration of the moment. The richness of sharing this diversity lies at the heart of this music, which carries strong cultural legacies. At the intersection of this encounter emerges a free music—one that lets the heart go wherever it must.</p><p>This quartet is also the meeting of two improvisational traditions: one rooted in traditional music, the other in free jazz. Different foundations, different functions, yet the same sensitive thread that connects the four musicians: the desire to resonate together. Voice, saxophone, marimba/percussion, and double bass come together in a raw, full sound—one that sings and explores with eyes wide open!</p><p>Alejandra Charry Voice, percussion<br>Sakina Abdou Tenor saxophone<br>Moises Zamora Mesú Marimba de chonta, percussions<br>Thibault Cellier Double bass</p>"
            },
            "name": {
                "fi": "¡Ya Voy! (COL, FRA) – Etnosoi!",
                "sv": "¡Ya Voy! (COL, FRA) – Etnosoi!",
                "en": "¡Ya Voy! (COL, FRA) – Colombian Trance – Etnosoi!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68960",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 2385500,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T08:13:50.225965Z",
                    "last_modified_time": "2026-07-07T08:13:50.225981Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792381.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385500/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T08:13:50.081038Z",
            "last_modified_time": "2026-07-07T08:13:50.415197Z",
            "date_published": null,
            "start_time": "2026-11-02T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.",
                "sv": "Mångfaldigt prisbelönte Aleksi Salmenperäs (bl.a. Ett mansjobb, Jätten, Tomrum) nya film Fars dag är en ärlig tragikomedi om överlevnad.",
                "en": "The multi-award-winning director Aleksi Salmenperä (A Man’s Job, The Mine, Void) returns with Father’s Day, an honest tragicomedy about surviving life’s many challenges."
            },
            "location_extra_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva",
                "en": "http://www.kanneltalo.fi/en/events/event/46E706CE9605ECF08829141FE543DC0B/Aleksi_Salmenpera_Isanpaiva"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Moninkertaisesti palkitun Aleksi Salmenperän (mm. Miehen työ, Jättiläinen, Tyhjiö) Isänpäivä on rehti tragikomedia elämässä pärjäämisen mittareista.</p><p><b>Elokuvaluento klo 17–17.45<br>Elokuva klo 18–19.50</b></p><p>Elokuvassa Veikko (Tommi Korpela) auttaa ystäväänsä Tinkeä (Tomi Lindfors) selviämään arjesta palveluyksikössä. Tinke on juonut terveytensä, ja elämää pitää kasassa sen nurjasta puolesta kumpuava huumori. Kun ystävysten bändimenneisyydestä tutun Saimin (Laura Birn) teini-ikäiset kaksoset (Vilja ja Varpu Rintanen) päättävät ottaa selvää isästään, etsintä johtaa heidät Tinken jäljille. Saimi aikoo estää kaksosia tapaamasta Tinkeä, mutta sotkun keskelle tempautunut Veikko on eri mieltä.</p><p>Ikäraja: 7<br>Pituus: 1 tunti 40 min<br>Ohjaus: Aleksi Salmenperä<br>Käsikirjoitus: Aleksi Salmenperä<br>Näyttelijät: Tommi Korpela, Tomi Lindfors, Laura Birn, Varpu Rintanen, Vilja Rintanen<br>Genre: Draama<br>Ensi-ilta: 6.3.2026</p><p>Syksyn <b>Kino Kuutamoissa</b> nähdään uusia kotimaisia elokuvia. Elokuvahistorian asiantuntija <b>FT Harri Kilpi</b> johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Mångfaldigt prisbelönte Aleksi Salmenperäs (bl.a. Ett mansjobb, Jätten, Tomrum) nya film Fars dag är en ärlig tragikomedi om överlevnad.</p><p>Veikko (Tommi Korpela) hjälper sin kompis Tinke (Tomi Lindfors) med vardagen på en serviceenhet. Tinke har supit bort sin hälsa, och livets dystra sidor pareras med hisnande humor. När den tidigare rockgroupien Saimis (Laura Birn) tonårstvillingdöttrar (Vilja och Varpu Rintanen) beslutar att försöka ta reda på vem deras pappa är, leder spåren till Tinke. Saimi tänker se till att tvillingarna inte träffar Tinke, men Veikko blir involverad och är av annan åsikt.</p><p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>The multi-award-winning director Aleksi Salmenperä (A Man’s Job, The Mine, Void) returns with Father’s Day, an honest tragicomedy about surviving life’s many challenges.</p><p>In the film, Veikko (Tommi Korpela) helps his friend Tinke (Tomi Lindfors) navigate daily life in a residential care home. Tinke has drunk his health away, and his life is held together by humour drawn from its grim side. When the teenage daughters (Vilja and Varpu Rintanen) of a former groupie (Laura Birn) set out to discover who their father is, the trail leads to Tinke. Saimi intends to prevent the twins from meeting Tinke, but Veikko, who gets drawn into the mess, thinks otherwise.</p><p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Aleksi Salmenperä: Isänpäivä – Kino Kuutamo | Maksuttomat maanantait",
                "sv": "Aleksi Salmenperä: Isänpäivä",
                "en": "Aleksi Salmenperä: Isänpäivä"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68960/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agptxln7du",
            "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/helmet:11733/?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:p1947/?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:p8113/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln4fe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln42m/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln5fe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln5qy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln53u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln6ie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln6xe/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2385503,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-07-07T08:07:46.281950Z",
                    "last_modified_time": "2026-07-07T08:07:46.281964Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/de0665c2-47a9-42af-be85-cd8a62cc30ac.png",
                    "name": "",
                    "cropping": "114,0,482,369",
                    "photographer_name": "Canva",
                    "alt_text": "piirroskuvassa henkilöt rivissä kädet toistensa olkapäillä",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385503/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-07-07T08:11:35.844991Z",
            "last_modified_time": "2026-07-07T08:11:35.845010Z",
            "date_published": null,
            "start_time": "2026-09-07T10:00:00Z",
            "end_time": "2026-11-30T12: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,
            "provider": null,
            "short_description": {
                "fi": "Kirjaston ja Hyvä kodin yhteinen aikuisille suunnattu ryhmä"
            },
            "location_extra_info": {
                "fi": "Sininen huone"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "HYVÄN MIELEN RYHMÄ - Luovuuden vuodenajat<p><strong>Joka toinen maanan tai klo 13.00–14.30 </strong></p><p><strong>7.9.-30.11.2026 Entressen kirjasto I Sininen huone</strong></p><p>Rentoutumisharjoituksia, askartelua, innostavia tekstinpätkiä</p><p>tekemisen tueksi. Kahvi/teetarjoilu ja keksiä. Maksuton.</p><p>Voit vapaasti osallistua niille kerroille, joille haluat.</p><p>Ryhmä on tarkoitettu aikuisille.</p><p>Ohjaajina työntekijöitä Hyvä kodista ja kirjastolta.</p>"
            },
            "name": {
                "fi": "Hyvän mielen ryhmä - Luovuuden vuodenajat "
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln7du/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agptxlol2i",
            "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:p1947/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?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:p916/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxln7si/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloagq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloaye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlobgu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlobtm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlocay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlocpy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloc6q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlodnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlod3i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloeie/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloewm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlofdy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlofra/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlof54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlogkq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlogxa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlohe4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlohsm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloiaq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloin4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxloi3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlojim/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlojwq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlokc4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlokre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlok5u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlolny/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150372,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-06T12:56:37.370704Z",
                    "last_modified_time": "2026-07-07T07:47:51.029034Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/tuolijumppa2021.jpg",
                    "name": "",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Seniorit tuolijumpassa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150372/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:ago62xjtq4/?format=api"
                }
            ],
            "created_time": "2026-07-07T07:57:50.380338Z",
            "last_modified_time": "2026-07-07T07:58:51.272721Z",
            "date_published": null,
            "start_time": "2026-08-31T06:30:00Z",
            "end_time": "2027-04-26T07:15: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,
            "provider": {
                "fi": "Espoon kaupungin liikunta- ja urheiluyksikkö",
                "sv": "Esbo stads idrotts- och sportavdelning",
                "en": "City of Espoo Sports and Recreation Department"
            },
            "short_description": {
                "fi": "jumpataan tuolia apuna käyttäen",
                "sv": "gymnastik med stol",
                "en": "gymnastics with a chair"
            },
            "location_extra_info": {
                "fi": "Estradi",
                "sv": "Estradi",
                "en": "Estradi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "Espoon kaupungin liikunta- ja urheiluyksikkö järjestää tuolijumppaa kirjastolla<p><strong>Maanantaisin klo 9.30–10.15. </strong></p><p><strong>Syyskausi 31.8.-11.12.2026, ei vko 42</strong></p><p><strong>Kevätkausi 11.1.-30.4.2027, ei vko 8, ei pyhäpäivät</strong></p><p>Monipuolista sovellettua jumppaa pääasiassa tuolilla istuen. Harjoituksia voidaan tehdä myös seisten tuolin tukea hyödyntäen. Tunti sisältää liikkuvuutta ylläpitäviä, lihaksia vahvistavia ja tasapainoa haastavia liikkeitä. Ryhmä on suunnattu erityisryhmille ja senioreille, joilla on toimintakyvyn rajoituksia. Ryhmään voi osallistua myös liikkumisen apuvälineen kanssa.&nbsp;</p><p>Ei ennakkoilmoittautumista. Voit tulla mukaan, kun sinulle sopii</p><p><br></p><p>Tervetuloa!&nbsp;</p>",
                "sv": "<p>gymnastik med stol</p>",
                "en": "<p>gymnastics with a chair</p>"
            },
            "name": {
                "fi": "Tuolijumppa",
                "sv": "Stolgymnastik",
                "en": "Chair gymnastics"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agptxlol2i/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agpe7jeeuq",
            "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/helmet:11727/?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:p14710/?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:p2433/?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:p6062/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jd7dm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jd7wi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaiu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeaz4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jebki/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeb4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jecnu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jedfu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeae/?format=api"
                }
            ],
            "images": [
                {
                    "id": 2212520,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-05-22T11:45:43.073404Z",
                    "last_modified_time": "2026-05-22T11:45:43.073417Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/06c655ce-0314-41a2-beff-3f003d39ecd2.png",
                    "name": "",
                    "cropping": "420,0,1500,1080",
                    "photographer_name": "",
                    "alt_text": "Kirjasto Sellon Kesäterassilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2212520/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-22T12:01:54.150736Z",
            "last_modified_time": "2026-07-07T07:45:57.280218Z",
            "date_published": null,
            "start_time": "2026-06-02T11:00:00Z",
            "end_time": "2026-07-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,
            "provider": null,
            "short_description": {
                "fi": "Espoon kaupunginkirjasto järjestää viikkottain tapahtumaa Sellon Kesäterassilla"
            },
            "location_extra_info": {
                "fi": "Sellon Kesäterassi"
            },
            "info_url": null,
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Kirjasto järjestää jälleen ohjelmaa Sellon Kesäterassilla joka tiistai klo 14-15 kesä- ja heinäkuun ajan. Ohjelmaa riittää kaikenikäisille pitkin kesää. Ohjelmaa löytyy kirjallisuudesta teatteriin ja kirjaston eri palveluihin. Huonon sään sattuessa ohjelma siirretään kirjaston sisätiloihin.</p><p><br></p><p>2.6. Antikirjavinkkaus</p><p>9.6. Muskarikonsertti klo 14 (0-6v) + musakirjavinkkaus klo 14.30</p><p>16.6. POC-lukupiirin kirjapiknik (klo 14-16)</p><p>23.6. Kamishibai-teatteria lapsille (esitykset klo 14 ja 14.30)</p><p>30.6. Lastenkirjavinkkejä</p><p>PERUTTU: 7.7. Senioritoimintavinkkaus</p><p>14.7. Nuoret taiteilijat: musa- ja kirjavinkkaus</p><p>21.7. Lautapelivinkkaus aikuisille</p><p>28.7. Eläinkirjavinkkaus ja lukukoira esittelyssä!</p><p><br></p><p>Tervetuloa kuuntelemaan ja osallistumaan!</p>"
            },
            "name": {
                "fi": "Kirjasto Sellon Kesäterassilla"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpe7jeeuq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agphfvd5jq",
            "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:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p4878/?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": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdtvy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvduoq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdu4q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdvny/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdv44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdwni/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdw4i/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdxly/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdx2y/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdyme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdy2a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzme/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvdzzy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2im/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd2wm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3di/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd3qq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd364/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd4me/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd44i/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1493962,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-11-28T12:44:29.503562Z",
                    "last_modified_time": "2026-01-19T13:11:32.534323Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/1aaa5541-8ea2-4ce7-9789-a5cdb857c95c.png",
                    "name": "",
                    "cropping": "0,0,1920,1920",
                    "photographer_name": "Espoon kaupunki",
                    "alt_text": "eri ikäisiä piirtelemässä saman pöydän äärellä liiduilla",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493962/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2026-05-29T08:03:54.359373Z",
            "last_modified_time": "2026-07-07T07:28:09.550076Z",
            "date_published": null,
            "start_time": "2026-08-04T13:00:00Z",
            "end_time": "2026-12-15T15: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,
            "provider": null,
            "short_description": {
                "fi": "Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.",
                "sv": "Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser.",
                "en": "You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits."
            },
            "location_extra_info": {
                "fi": "Paja tai Sininen huone",
                "sv": "Verkstad eller Sininen huone",
                "en": "Maker Space or Sininen huone "
            },
            "info_url": {
                "fi": "https://helmet.finna.fi/Content/tapahtumat",
                "sv": "https://helmet.finna.fi/Content/tapahtumat?lng=sv",
                "en": "https://helmet.finna.fi/Content/tapahtumat?lng=en-gb"
            },
            "provider_contact_info": null,
            "description": {
                "fi": "<p>Joka tiistai Entressen kirjaston Paja kutsuu taiteilemaan, askartelemaan ja puuhaamaan yhdessä. Ohjaajina toimivat kirjastolaiset. Ideoita jaetaan koko porukan kesken. Toimintaan ei tarvitse ilmoittautua etukäteen. Askartelu on maksutonta. Ei ikärajoja.&nbsp;</p><p>Alle kouluikäiset osallistuu vanhempien seurassa.</p><p><br></p><p><br></p><p>#HelloEspoo</p>",
                "sv": "<p>Varje tisdag bjuder Entresse biblioteks Verkstad in till att göra konst och pyssla tillsammans. Du behöver inte registrera dig i förväg. Pysslet är kostnadsfritt och materialet tillhandahålls av biblioteket. Inga åldersgränser! Välkommen.</p><p>Barn som inte har nått skolåldern deltar tillsammans med sina föräldrar.</p><p><br></p><p>#HelloEspoo</p>",
                "en": "<p>Every Tuesday, Entresse library's workshop Paja invites you to make art and do crafts together. You do not need to register in advance. The crafts are free of charge, materials are provided by the library. No age limits! Welcome.</p><p>Children under school age participate accompanied by their parents.</p><p><br></p><p>#HelloEspoo</p>"
            },
            "name": {
                "fi": "Perhepaja",
                "sv": "Workshop för familjer",
                "en": "Workshop for Families"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agphfvd5jq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}