Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 19236,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=33",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=31"
    },
    "data": [
        {
            "id": "kulke:66348",
            "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:755/?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": 1178359,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T08:12:36.760360Z",
                    "last_modified_time": "2025-07-04T08:12:36.760373Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773473.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178359/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T08:12:36.700869Z",
            "last_modified_time": "2025-07-07T15:14:09.501535Z",
            "date_published": null,
            "start_time": "2025-10-06T15: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/87C03B6B85BE1FC93446F315E4E143C1/Kirjailijavieraana_Silvia_Hosseini",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/87C03B6B85BE1FC93446F315E4E143C1/Forfattarbesok_Silvia_Hosseini",
                "en": "http://www.kanneltalo.fi/en/events/event/87C03B6B85BE1FC93446F315E4E143C1/Visiting_author_Silvia_Hosseini"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maksuttomat maanantait Kanneltalon kahvilan stagella keskustellaan Silvia Hosseinin Kirjallisuuden kiihottava historia -teoksesta</p><p>Kirjallisuuden kiihottava historia (Gummerus 2023) vie lukijansa aikamatkalle eroottisen kirjallisuuden historiaan antiikista nykypäivään.</p><p>Miten seksiä ja kuumia tunteita on kuvattu kaunokirjallisuudessa eri aikoina? Mitä erotiikka, pornografia ja kiihottavat klassikot kertovat aikansa kaunokirjallisista ihanteista, seksuaalimoraalista ja mieltymyksistä? Arvostetun esseistin herkullisesti kirjoitettu teos tarjoaa maistiaisia aistillisista, hekumallisista ja rivoista teksteistä antiikista nykyaikaan.</p><p>Silvia Hosseini on Tampereella asuva kirjailija, opettaja ja arvostettu kirjallisuustoimittaja. Hänen omintakeiset esseekokoelmansa Pölyn ylistys (2018) ja Tie, totuus ja kuolema (2021) ovat hurmanneet lukijat ja arvostelijat.</p><p>Silvia Hosseinia haastattelee FM Tuija Takala.</p><p>Yhteistyössä Helsingin työväenopiston ja Kannelmäen kirjaston kanssa.</p><p>Kahvilan stage</p><p>Vapaa pääsy</p>",
                "sv": "<p>Avgiftsfria måndagar På Gamlasgårdens café diskuteras Silvia Hosseins verk Kirjallisuuden kiihottava historia.</p><p>Kirjallisuuden kiihottava historia (Gummerus 2023) för sin läsare till den erotiska litteraturens historia från antik till nutid. <br>Hur har sex och heta känslor beskrivits i skönlitteraturen vid olika tidpunkter? Vad säger erotik, pornografi och upphetsande klassiker om sin tids skönlitterära ideal, sexualmoral och preferenser? Ett välskrivet verk av den uppskattade essäisten ger smakprov på sensuella, passionerade och fräcka texter från antiken till våra dagar.<br>Silvia Hosseini är författare, lärare och uppskattad litteraturredaktör bosatt i Tammerfors. Hennes säregna essäsamlingar Pölyn ylistys (2018) och Tie, totuus ja kuolema (2021) har charmat läsarna och kritikerna.</p><p>Silvia Hossein intervjuas av FM Tuija Takala.</p><p>I samarbete med Helsingfors finska arbetarinstitut och Gamlas bibliotek.</p>",
                "en": "<p>Free Mondays A discussion will be held on the café stage at Kanneltalo about Silvia Hosseini's book Kirjallisuuden kiihottava historia</p><p>Kirjallisuuden kiihottava historia (Gummerus, 2023) takes readers on a time-travel journey through the history of erotic literature from antiquity to the present day. <br>How have sex and passionate feelings been portrayed in fiction throughout different eras? What do erotica, pornography and exciting classics reveal about the literary ideals, sexual morals and preferences of their times? The esteemed essayist's deliciously written work offers a taste of sensual, decadent and risqué texts from antiquity to the present day.<br>Silvia Hosseini is a writer, teacher and respected literary editor based in Tampere. Her distinctive essay collections Pölyn ylistys (2018) and Tie, totuus ja kuolema (2021) have captivated both readers and critics.</p><p>Silvia Hosseini will be interviewed by Tuija Takala.</p><p>In cooperation with Helsinki Adult Education Centre and Kannelmäki Library.</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Silvia Hosseini",
                "sv": "Författarbesök: Silvia Hosseini",
                "en": "Visiting author Silvia Hosseini"
            },
            "short_description": {
                "fi": "Maksuttomat maanantait Kanneltalon kahvilan stagella keskustellaan Silvia Hosseinin Kirjallisuuden kiihottava historia -teoksesta",
                "sv": "Avgiftsfria måndagar På Gamlasgårdens café diskuteras Silvia Hosseins verk Kirjallisuuden kiihottava historia.",
                "en": "Free Mondays A discussion will be held on the café stage at Kanneltalo about Silvia Hosseini's book Kirjallisuuden kiihottava historia"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66348/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66216",
            "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:613/?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/eventseries/name-3896871",
                        "sv": "https://www.lippu.fi/eventseries/name-3896871",
                        "en": "https://www.lippu.fi/eventseries/name-3896871"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1177353,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-04T05:13:57.074914Z",
                    "last_modified_time": "2025-07-04T05:13:57.074931Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772842.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1177353/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-04T05:13:56.939090Z",
            "last_modified_time": "2025-07-07T15:14:07.907269Z",
            "date_published": null,
            "start_time": "2025-09-25T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FDD4C597A2F460C010617E353F2C92C0/Juurisyy",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FDD4C597A2F460C010617E353F2C92C0/Juurisyy",
                "en": "http://www.kanneltalo.fi/en/events/event/FDD4C597A2F460C010617E353F2C92C0/Juurisyy"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Liisa Akimof, Katriina Honkanen ja Maria Hänninen konsertoivat yhdessä! Juurisyy-konsertin kiertue käynnistyy Kanneltalosta.</p><p>Puilla on juurensa, ja niin on myös näillä pitkän uran tehneillä artisteilla.</p><p>Juurisyy -kokonaisuudessa selviää, minkälaisella musiikillisella ravinnolla lauluntekijänaiset ovat kasvaneet ja eläneet. Ja ennen kaikkea tehneet musiikkia! Katriina Honkanen tunnetaan hiteistään Silta ja Matka Charlien kanssa, mutta mistä hänen musiikkinsa kumpuaa?</p><p>Maria Hänninen on multi-instrumentalisti ja lauluntekijä, jolle blues, rock ja laulelmallisuus ovat yhtä luontevia. Liisa Akimofin Kevät on klassikko, mutta mistä tulee bossanova ja discomeno?</p><p>Mikä oli juuri sun syy alkaa musiikintekijäksi? Lavalla naiset kertovat tarinansa. Luvassa on musiikillisia muistoja ja biisejä historian hämärästä, mutta myös uutta musiikkia. <br>Juurisyy liikuttaa ja elähdyttää niin kuin kulttuuri parhaimmillaan tekee.</p><p>Liisa – monen alan pioneeri: televisiotuottaja, ekorakentaja – ja armoton lauluntekijä. Hän perusti Suomen ensimmäisen levyttäneen tyttöbändin Tavaramarkkinat jo 1980-luvun alussa. Kevät -biisistä tuli klassikko.</p><p>Akimowskaja Sisters & Bros toi keinuvan lattarimeiningin suomipoppiin. Alkava pimeä vuodenaika! TV-klassikoista mm. Kumman kaa ja Arto Nyberg ovat Liisa Akimofin tuotantoa. Soolokeikoillaan hän on osoittautunut vastustamattomaksi yleisön villitsijäksi.</p><p>Katriina – teatterin ja musiikin moniottelija: ohjaaja, näyttelijä, käsikirjoittaja, laulaja-lauluntekijä. Katriina kuuluu naislauluntekijöiden pioneereihin. Yhdeksän suomenkielistä levyä on saanut jatkoksi kaksi englanninkielistä albumia Rolling Rust yhtyeen kanssa.</p><p>Suurelle yleisölle Katriina on tuttu Metsolat TV-sarjan Eevana. Lauluista Silta on ansainnut ikivihreän statuksen.  Katriinaa kannattaa tulla kuuntelemaan, sillä luvassa on harvinaista herkkua.</p><p>Maria – monenmakuisissa liemissä keitetty musiikin sekatyöläinen. Hän on uransa aikana kiertänyt maata mm. Hectorin, Dave Lindholmin, Pelle Miljoonan ja Freukkareiden kanssa. Soololevyjä on suomeksi ja englanniksi.</p><p>Laulavana multi-instrumentalisti / biisintekijänä mukana yli 140 levytyksellä. Monista nuoruuden idoleista on tullut työtovereita; mm. Uriah Heepin Ken Hensley. Nyt Maria mm. soittaa raskaamman rokin ja bluesin sävyjä oman Mount Mary -bändin kanssa.</p><p>Kesto 2 t 15 min (sis. väliaika)</p>",
                "sv": "<p>Liisa Akimof, Katriina Honkanen och Maria Hänninen på gemensam konsert! Juurisyy-konsertturnén börjar på Gamlasgården.</p><p>Träden har sina rötter, och det har också dessa artister med långa karriärer bakom sig. Av helheten Juurisyy framgår hurdan musiknäring låtskrivarkvinnorna växt upp och levt med. Och framför allt gjort musik! Katriina Honkanen är känd för sina hits Silta och Matka Charlien kanssa, men varifrån kommer hennes musik? Maria Hänninen är multiinstrumentalist och sångerska lika hemma i blues och rock som i visor. Liisa Akimofs Kevät är klassiker, men varifrån kommer bossanova och discoprägeln?</p><p>Vilken var just din orsak att bli musiker? På scenen berättar kvinnorna sin berättelse. Det bjuds på musikaliska minnen och låtar från historiens dunkel, men också på ny musik.</p><p>Juurisyy berör och livar upp, precis som kulturen gör då den är som bäst.</p><p>Liisa – pionjär inom många grenar: tv-producent, ekobyggare, och låtskrivare utan like! Hon grundade tjejbandet Tavaramarkkinat, som var den första i sitt slag att spela in en skiva i Finland redan i början av 1980-talet. Låten Kevät blev en klassiker. Akimowskaja Sisters & Bros hämtade svängande latinska rytmer till finsk pop. Den kommande mörka årstiden. Bland tv-klassikerna är bl.a. Kumman kaa och Arto Nyberg producerade av Liisa Akimof. Hon har under sina solokonserter visat sig vara en hejdare på att få publiken att leva upp.</p><p>Katriina – mångkonstnär inom teater och musik: regissör, skådespelare, manusförfattare, sångare och låtskrivare. Katriina är en av pionjärerna för kvinnliga låtskrivare. Nio finskspråkiga skivor har följts av två album på engelska tillsammans med Rolling Rust Group.</p><p>Den stora allmänheten känner Katriina som Eeva i tv-serien Metsolat. Av hennes sånger är Silta en evergreen.  Det lönar sig att komma och lyssna på Katriina, eftersom det bjuds på en ovanlig delikatess.</p><p>Maria – blandarbetare inom musiken med mångsidiga upplevelser Under sin karriär har hon turnerat med bland annat Hector, Dave Lindholm, Pelle Miljoona och Freukkarit. Soloalbum finns på finska och engelska. En sjungande multiinstrumentalist/låtskrivare som deltagit på över 140 skivor. Många av ungdomens idoler har blivit arbetskamrater, bl.a. Ken Hensley från Uriah Heep. Nu spelar Maria bl.a. nyanser av tyngre rock och blues med sitt eget Mount Mary-band.</p><p>Längd 2 h 15 min (inkl. paus)</p>",
                "en": "<p>Liisa Akimof, Katriina Honkanen and Maria Hänninen perform together! The Root Cause concert tour kicks off at Kanneltalo.</p><p>Trees have roots, and so do these artists with extensive careers. Root Causes reveals the type of musical nourishment these songwriters grew up on and have lived by. And – above all – created their music with! Katriina Honkanen is known for her hits Silta and Matka Charlien kanssa, but where does her music originate? Maria Hänninen is a multi-instrumentalist and songwriter for whom blues, rock and lyrical melodies come naturally. Liisa Akimof's Kevät is a classic, but where do bossa nova and disco rhythms come from?</p><p>What were their deciding factors in becoming musicians? The women will share their stories on stage. The audience can expect musical memories, songs from the mists of history, as well as some new music.</p><p>Root Cause moves and touches us like culture at its best does.</p><p>Liisa is a pioneer in many fields: TV producer, eco-builder and a relentless songwriter. She founded Finland's first recording girl band, Tavaramarkkinat, in the early 1980s. The song Kevät became a classic. Akimowskaja Sisters & Bros introduced a swinging Latin vibe to Finnish pop. The dark season is beginning! TV classics Kumman kaa and Arto Nyberg are part of Liisa Akimof's production. In her solo gigs, she has proven to make the crowds wild.</p><p>Katriina is a versatile performer in theatre and music: director, actress, screenwriter, singer and songwriter. Katriina is one of the pioneering female singer-songwriters. She has released nine Finnish-language albums, followed by two English-language ones, with the band Rolling Rust.</p><p>To the wider public, Katriina is known as Eeva from the TV series Metsolat. Her song Silta has earned an evergreen status.  Come and listen to Katriina perform, as a rare treat awaits.</p><p>Maria is a versatile music all-rounder who has been steeped in many styles. Over her career, she has toured the country with artists such as Hector, Dave Lindholm, Pelle Miljoona and Freukkarit. She has released solo albums in both Finnish and English. As a singing multi-instrumentalist and songwriter, she has contributed to over 140 recordings. Many of her childhood idols have become colleagues, including Ken Hensley from Uriah Heep. Currently, Maria plays heavier rock and blues tones with her own band, Mount Mary.</p><p>Duration: 2 hours 15 minutes (incl. intermission)</p><p>-</p>"
            },
            "name": {
                "fi": "Juurisyy",
                "sv": "Juurisyy",
                "en": "Juurisyy"
            },
            "short_description": {
                "fi": "Liisa Akimof, Katriina Honkanen ja Maria Hänninen konsertoivat yhdessä! Juurisyy-konsertin kiertue käynnistyy Kanneltalosta.",
                "sv": "Liisa Akimof, Katriina Honkanen och Maria Hänninen på gemensam konsert! Juurisyy-konsertturnén börjar på Gamlasgården.",
                "en": "Liisa Akimof, Katriina Honkanen and Maria Hänninen perform together! The Root Cause concert tour kicks off at Kanneltalo."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66216/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66343",
            "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:755/?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": 1170713,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T09:12:36.982069Z",
                    "last_modified_time": "2025-07-03T09:12:36.982082Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773472.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1170713/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-03T09:12:36.885033Z",
            "last_modified_time": "2025-07-07T14:14:14.464643Z",
            "date_published": null,
            "start_time": "2025-09-15T12: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4C963034490AE4CD4DCE997FBEC4DFED/_Kirjailijavieraana_Anni_Kytomaki",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4C963034490AE4CD4DCE997FBEC4DFED/Forfattarbesok_Anni_Kytomaki",
                "en": "http://www.kanneltalo.fi/en/events/event/4C963034490AE4CD4DCE997FBEC4DFED/Visiting_Author_Anni_Kytomaki"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Maksuton maanantai Kanneltalon kahvilan stagella keskustellaan Anni Kytömäen uusimmasta Mirabilis-romaanista.</p><p>Lukijoiden rakastaman, Finlandia-palkitun Anni Kytömäen uutuus Mirabilis (Gummerus 2024) on suuri romaani elämästä ja kuolemasta. Teos sijoittuu 1800–1900-luvun vaihteeseen ja kuvaa maailmankatsomuksellista murrosta, jolloin luonnontiede osoittaa, ettei ihminen olekaan luomakunnan kruunu.</p><p>Väkevä kirjallinen seikkailu kuljettaa nälkävuosista Amurinmaan suomalaiseen siirtokuntaan, vuorille ja villeihin metsiin ja takaisin kotimaan harjumaisemiin.</p><p>Romaani on maailmanluokan kirjallisuutta, jossa kerronnan lumo uppoaa mielen syvyyksiin ja saa katsomaan luonnon haurautta ja voimaa uusin silmin.</p><p>Anni Kytömäki (s. 1980) on hämeenkyröläinen kirjailija, joka on työskennellyt kansalaisjärjestöissä ja muusikkona. Kotiseudullaan hän kulkee harjuilla, soilla ja sammalmetsissä, kuuntelee tuulta ja etsii polkuja tarinoihin, jotka saattoivat olla totta.</p><p>Kytömäen vuonna 2020 ilmestynyt Margarita sai kaunokirjallisuuden Finlandia-palkinnon. Kytömäki on palkittu Kaarlen palkinnolla, Blogistanian Finlandialla, Tulenkantaja-palkinnolla sekä Tampereen kaupungin kirjallisuuspalkinnolla.</p><p>Anni Kytömäkeä haastattelee kirjallisuudentutkija Hanna Karhu.</p><p>Yhteistyössä Helsingin työväenopiston ja Kannelmäen kirjaston kanssa.</p>",
                "sv": "<p>Avgiftsfria måndagar På Gamlasgårdens café diskuteras Anni Kytömäkis senaste roman Mirabilis.</p><p>Nyheten Mirabilis (Gummerus 2024) av Anni Kytömäki har belönats med Finlandiapriset och älskats av läsarna och är en stor roman om liv och död. Verket är placerat vid skiftet mellan 1800- och 1900-talet och beskriver en världsomspännande omvälvning, varvid naturvetenskapen visar att människan inte är skapelsens krona.</p><p>Det starka littererära äventyret transporterar läsaren från hungeråren till Amurinlands finländska bosättning, till bergen och till vilda skogar och tillbaka till hemlandets tallåsar. Romanen är litteratur av världsklass där berättandets förtjusning sjunker ner i sinnet får läsaren att se naturens bräcklighet och styrka med nya ögon.</p><p>Anni Kytömäki (f. 1980) är en författare från Tavastkyrö som har arbetat i frivilligorganisationer och som musiker. I sina hemtrakter rör hon sig längs åsar, myrar och mossiga skogar, lyssnar på vindar och söker stigar till historier som kunde vara sanna. Kytömäkis Margarita som utkom 2020 belönades med Finlandiapriset för skönlitteratur. Kytömäki har fått Kaarle-priset, Blogistanias Finlandia, priset Tulenkantaja och Tammerfors stads litteraturpris.<br>Anni Kytömäki intervjuas av litteraturforskare Hanna Karhu.</p><p>I samarbete med Helsingfors finska arbetarinstitut och Gamlas bibliotek.</p>",
                "en": "<p>Free Mondays A discussion on Anni Kytömäki's latest novel, Mirabilis, will be held on the Kanneltalo café's stage.</p><p>Beloved by readers and a recipient of the Finlandia Prize, Anni Kytömäki's latest work, Mirabilis (Gummerus, 2024), is a grand novel about life and death. Set around the turn of the 19th and 20th centuries, it portrays a shift in worldview as natural science begins to reveal that humans are not, after all, the apex of creation.</p><p>This powerful literary adventure moves from the years of famine to a Finnish colony in the Amur region, through mountains and wild forests and back to the ridged landscapes of the homeland. The novel is world-class literature, with enchanting storytelling that dives into the depths of the mind and invites readers to see the fragility and power of nature in a new light.</p><p>Anni Kytömäki (b. 1980) is an author from Hämeenkyrö who has worked in NGOs and as a musician. In her home region, she walks the ridges, bogs and mossy forests, listens to the wind and searches for paths to stories that might have once been true. Her 2020 novel, Margarita, won the Finlandia Prize for fiction. Kytömäki has also received the Kaarle Prize, Blogistania Finlandia, the Torch-Bearer Prize and the City of Tampere Literary Award.</p><p>Anni Kytömäki will be interviewed by literary scholar Hanna Karhu.</p><p>In cooperation with Helsinki Adult Education Centre and Kannelmäki Library.</p>"
            },
            "name": {
                "fi": "Kirjailijavieraana Anni Kytömäki",
                "sv": "Författarbesök: Anni Kytömäki",
                "en": "Visiting Author Anni Kytömäki"
            },
            "short_description": {
                "fi": "Maksuton maanantai Kanneltalon kahvilan stagella keskustellaan Anni Kytömäen uusimmasta Mirabilis-romaanista.",
                "sv": "Avgiftsfria måndagar På Gamlasgårdens café diskuteras Anni Kytömäkis senaste roman Mirabilis.",
                "en": "Free Mondays A discussion on Anni Kytömäki's latest novel, Mirabilis, will be held on the Kanneltalo café's stage."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66343/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66352",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1146595,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-06-30T08:12:42.687062Z",
                    "last_modified_time": "2025-06-30T08:12:42.687080Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773509.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146595/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-06-30T08:12:42.530172Z",
            "last_modified_time": "2025-07-07T14:14:13.416215Z",
            "date_published": null,
            "start_time": "2025-09-12",
            "end_time": "2025-10-30",
            "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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-kuvia_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE-bilder_",
                "en": "http://www.kanneltalo.fi/en/events/event/D79649EC0C3D5BF905420477E9289DC7/Risto_Vuorimies_LOVE_Images_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Legendaarisen valokuvaaja Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.</p><p>Risto Vuorimies aloitti Love Records -levy-yhtiön kannentekijänä keväällä 1973. Aluksi suunniteltiin Hurriganesin ensimmäinen levynkansi Rock'n'Roll All Night Long. Samaan aikaan Vuorimies valokuvasi Rauli Badding Somerjoen Muotokuva 1 -levynkannen kuvan, jossa mies nojailee baaripöytään pienessä Hämeentien kahvilassa. Tästä eteenpäin Vuorimies teki kolmen vuoden ajan muutamia, myöhemmin varsin merkittäviksi muodostuneita levyjen kansia, mm. Hurriganesin Roadrunnerin.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen ja monet muut 1970-luvulla esiintymisensä aloittaneet suomalaisen nuorisomusiikin edustajat ovat saavuttaneet jo seitsemänkympin iän. Siis ne, jotka elävät. Näiden kuvien kuvausaikoina sekä valokuvaaja että muusikot olivat noin kaksikymppisiä. Vuorimiehen mukaan on ollut mielenkiintoista selailla vanhoja filminegatiiveja, jotka ovat erittäin hyvässä kunnossa ja järjestyksessä hänen mapeissaan. Niistä Vuorimies on saanut nykytekniikalla valmistettua tämän LOVE-kuvia valokuvanäyttelyn. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo ja muut tuon ajan Love-artistit näyttävät tyylikkäiltä ja jopa historiallisilta seinälle ripustettuina.</p><p>Kamera on merkittävä dokumentoinnin väline. Ilman 1970-luvun kuvamuistoja moni tuskin muistaisi näiden taiteilijoiden ilmeitä ja olemuksia, vaikka ne ääninä eri medioissa keskuuteemme tänä päivänä tunkeutuvatkin. Mustavalkoinen valokuva kertoo elämän sävyistä ja sävelmistä.</p><p>Tuoreimpana aineistona valokuvaaja esittelee vuosien 1973–76 Hurriganes-aiheisen kokoelman, joka perustuu uuteen kirjaan Hurriganes – Pyörremyrsky. Sen lisäksi näyttelyyn on lisätty joukko kuvia Wigwamista sekä Dave Lindholmista.</p><p>Näyttelyä ovat tukeneet Taiteen edistämiskeskus, Vapriikki-museo sekä Kuusankoskitalo.</p><p><b>Kaikki ovat tervetulleita gallerianäyttelyn avajaisiin to 11.9. klo 17–19.30 ja 16th Avenue -bändin esitykseen klo 18–19 kahvilan stagella.</b></p><p>Risto Vuorimies on valokuvaaja, muusikko ja musiikkitoimittaja.<br>1970-luvun alussa Vuorimies opiskeli valokuvausta Tukholmassa. Opiskelutoverinsa Ben Kailan kanssa Vuorimies kuvasi tuolloin ruotsinsuomalaisia maahanmuuttajia. Itsenäisyyspäivänä 1972 kuvista koottiin Vanhalle ylioppilastalolle näyttely ja parikymmentä vuotta myöhemmin tehtiin valokuvateos Siirtosuomalainen (Musta Taide, 1994), joka toi tekijöille valokuvataiteen valtionpalkinnon.<br>Vuorimies on suuri kuubalaisen musiikin ystävä, ja hän on laulanut ja soittanut Septeto Son -yhtyeessä sekä tehnyt radio-ohjelmia nimellä Papá Montero.</p>",
                "sv": "<p>Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.</p><p>Risto Vuorimies började som pärmbildsdesigner på skivbolaget Love Records våren 1973. Först designades skivomslaget till Hurriganes första skiva, Rock’n’Roll All Night Long. Samtidigt fotograferade Vuorimies omslagsbilden till Rauli ”Badding” Somerjokis album Muotokuva 1, där han lutar sig mot ett bord i ett litet café på Tavastvägen. Efteråt under tre års tid designade Vuorimies några skivomslag som senare blev synnerligen betydande, bl.a. Hurriganes Roadrunner.</p><p>Isokynä, Kojo, Badding, Maijanen, Tolonen och många andra representanter för den finländska ungdomsmusiken som inledde sina karriärer på 1970-talet har redan uppnått sjuttio års ålder. Alltså de som lever. När fotografierna togs var både fotografen och musikerna tjugo-någonting. Enligt Vuorimies har det varit intressant att bläddra bland gamla filmnegativ som är i mycket gott skick och i bra ordning i hans mappar. Av dessa har Vuorimies med dagens teknik tillverkat den här fotoutställningen LOVE-bilder. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo och många andra av den tidens Love-artister ser stiliga och rent av historiska ut uppe på väggen.</p><p>Kameran är ett viktigt redskap för dokumentering. Utan fotografiska minnen från 1970-talet skulle få komma ihåg dessa artisters ansiktsuttryck och väsen, även om de som ljud fortfarande finns bland oss även idag. Ett svartvitt fotografi berättar om livets nyanser och melodier.</p><p>Som nyaste material presenterar fotografen 1973–76 års Hurriganes-samling som baserar sig på den nya boken Hurriganes – Pyörremyrsky. Utställningen har dessutom utökats med bilder på Wigwam och Dave Lindholm.</p><p>Utställningen har understötts av Centret för konstfrämjande, Vapriikki-museet och Kuusankoskitalo.</p><p>Alla är välkomna till invigningen av galleriutställningen to 11.9 kl. 17–19.30 och till konserten med 16th Avenue kl. 18–19 på kaféets scen.</p><p>Risto Vuorimies är fotograf, musiker och musikredaktör.</p><p>I början av 1970-talet studerade Vuorimies fotografering i Stockholm. Med sin studiekamrat Ben Kaila fotograferade Vuorimies då svenskfinländska invandrare. På självständighetsdagen 1972 sammanställdes en utställning på Gamla studenthuset och cirka tjugo år senare skapades fotografiverket Siirtosuomalainen (Musta Taide, 1994), som gav upphovsmännen statspriset i fotokonst.</p><p>Vuorimies är en stor vän av kubansk musik och har sjungit och spelat i Septeto Son-bandet och gjort radioprogram under namnet Papá Montero.</p>",
                "en": "<p>The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland.</p><p>Risto Vuorimies began working as a cover designer for the record label Love Records in spring 1973. One of his first projects was designing the album cover for Hurriganes' debut Rock'n'Roll All Night Long. At the same time, Vuorimies photographed the cover image for Rauli Badding Somerjoki's album Muotokuva 1, in which the artist is leaning against a bar table in a small café on Hämeentie. From that point on, Vuorimies spent three years creating a number of covers for albums that would later become highly influential, including Hurriganes' Roadrunner.</p><p>Artists like Isokynä, Kojo, Badding, Maijanen, Tolonen and many others who began performing in the 1970s as part of Finland's youth music scene have now reached their seventies. That is, those who are still alive. At the time these photos were taken, both the photographer and the musicians were in their twenties. According to Vuorimies, it has been fascinating to browse through the old film negatives, which are in excellent condition and neatly organised in his binders. Using modern technology, Vuorimies has produced this LOVE Images+ photo exhibition from those negatives. Hurriganes, Tasavallan Presidentti, Wigwam, Dave, Alatalo and other Love artists from that era appear stylish, even historic, when displayed on the gallery walls.</p><p>The camera is an essential tool for documentation. Without the photographic memories of the 1970s, many would hardly remember the faces and presence of these artists, even though their voices still reach us through various media today. A black-and-white photo tells the story of the tones and melodies of life.</p><p>As his most recent material, the photographer presents a Hurriganes-themed collection from 1973–1976, based on the new book Hurriganes – Pyörremyrsky (\"Hurriganes – Whirlwind\"). In addition, the exhibition includes a selection of photographs of Wigwam and Dave Lindholm.</p><p>The exhibition has been supported by the Arts Promotion Centre Finland, the Vapriikki Museum Centre and Kuusankoskitalo.</p><p>Everyone is welcome to the gallery exhibition opening on Thursday, 11 September, at 17:00–19:30, and to 16th Avenue's performance on the café stage at 18:00–19:00.</p><p>Risto Vuorimies is a photographer, musician and music journalist.</p><p>In the early 1970s, he studied photography in Stockholm. Together with his fellow student Ben Kaila, Vuorimies photographed Finnish immigrants living in Sweden. On Finnish Independence Day in 1972, these photographs were exhibited at the Old Student House in Helsinki, and about twenty years later they were published in the photo book Siirtosuomalainen (Musta Taide, 1994), which earned the authors the State Prize for Photographic Art.</p><p>Vuorimies is a great admirer of Cuban music; he has sung and played in the band Septeto Son and produced radio programmes under the name Papá Montero.</p>"
            },
            "name": {
                "fi": "Risto Vuorimies: LOVE-kuvia+",
                "sv": "Risto Vuorimies: LOVE-bilder+",
                "en": "Risto Vuorimies: LOVE Images+"
            },
            "short_description": {
                "fi": "Legendaarisen valokuvaaja Risto Vuorimiehen näyttely Kanneltalon galleriassa esittelee ikonisia musiikkikuvia Suomesta.",
                "sv": "Den legendariska fotografen Risto Vuorimies utställning i Gamlasgårdens galleri förevisar ikoniska musikbilder från Finland.",
                "en": "The exhibition by legendary photographer Risto Vuorimies at Kanneltalo's gallery showcases iconic music photographs from Finland."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66232",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15€",
                        "sv": "15€",
                        "en": "15€"
                    },
                    "info_url": {
                        "fi": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets",
                        "sv": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets",
                        "en": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203858,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T14:14:09.600307Z",
                    "last_modified_time": "2025-07-07T14:14:09.600323Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772892.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203858/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T14:14:09.464923Z",
            "last_modified_time": "2025-07-07T14:14:09.786922Z",
            "date_published": null,
            "start_time": "2025-08-29T14: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/938EE5AE10D3B849B83DF17013505232/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/938EE5AE10D3B849B83DF17013505232/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis",
                "en": "http://www.annantalo.fi/en/events/event/938EE5AE10D3B849B83DF17013505232/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>",
                "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård.</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.<br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>",
                "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship.</p><p>One day, Lion finds an injured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p>Director: Kata Csató<br>Scenographer & puppet artist– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>"
            },
            "name": {
                "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025",
                "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025",
                "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.",
                "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård.",
                "en": "A Puppet Theatre Performance About True and Genuine Friendship."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66232/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66694",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203857,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T14:14:09.078879Z",
                    "last_modified_time": "2025-07-07T14:14:09.078894Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772891.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203857/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T14:14:08.940485Z",
            "last_modified_time": "2025-07-07T14:14:09.262981Z",
            "date_published": null,
            "start_time": "2025-08-29T08: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A163107FB3095975F414186C60D33B0F/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/A163107FB3095975F414186C60D33B0F/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis",
                "en": "http://www.annantalo.fi/en/events/event/A163107FB3095975F414186C60D33B0F/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>",
                "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård.</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.<br> <br><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b></p><p>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>",
                "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship.</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>"
            },
            "name": {
                "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025",
                "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025",
                "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.",
                "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård.",
                "en": "A Puppet Theatre Performance About True and Genuine Friendship."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66694/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66231",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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:99/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203856,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T14:14:08.554183Z",
                    "last_modified_time": "2025-07-07T14:14:08.554198Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772890.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203856/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T14:14:08.388237Z",
            "last_modified_time": "2025-07-07T14:14:08.786693Z",
            "date_published": null,
            "start_time": "2025-08-29T06: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9492729087358B0040D2E01399D2F976/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9492729087358B0040D2E01399D2F976/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis",
                "en": "http://www.annantalo.fi/en/events/event/9492729087358B0040D2E01399D2F976/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>",
                "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård.</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b><br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>",
                "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship.</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>"
            },
            "name": {
                "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025",
                "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025",
                "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.",
                "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård.",
                "en": "A Puppet Theatre Performance About True and Genuine Friendship."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66231/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65778",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?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": 869685,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-27T13:14:09.641516Z",
                    "last_modified_time": "2025-05-27T13:14:09.641533Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767416.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/869685/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-27T13:14:09.523176Z",
            "last_modified_time": "2025-07-07T13:14:03.752481Z",
            "date_published": null,
            "start_time": "2025-08-29T15:30:00Z",
            "end_time": "2025-08-29T18: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0EC9B739589A98926037E1EC2EA5F3A5/Kantsun_iltamat_syodaan_yhdessa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0EC9B739589A98926037E1EC2EA5F3A5/Soar_i_Gamlas_vi_ater_tillsammans",
                "en": "http://www.kanneltalo.fi/en/events/event/0EC9B739589A98926037E1EC2EA5F3A5/Kantsu_Soiree_let_s_dine_together"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule illastamaan yhdessä Sitratorille! Me tarjoamme pöydät ja penkit ja musiikkiohjelman. Tuo mukanasi ruokaa, juomaa, astiat, aterimet ja hyvää mieltä.</p><p>Osallistuminen on ilmaista, mutta vaatii ennakkoilmoittautumisen. Sateisella säällä illallinen järjestetään Kanneltalon aulassa.</p><p>Ruokailun lomassa ruokailijoita viihdyttää Global Musicin muusikot.</p><p>Ilmoittaudu mukaan Kantsun iltamiin <u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSekEeUr_0eQM-nC7f6PdX52wBylDfi4p-a2WRtEjlmOjhOOlw/viewform\">TÄSTÄ LINKISTÄ</a></u></p><p><b>Esiintyjät</b></p><p><b>Karaka-Tum</b><br>Lyömäsoitinyhtye Karaka-Tum on osa Taideyliopiston Sibelius-Akatemian Global Music -koulutusohjelman tarjoamaa kurssia.<br>Yhtye tutkii rytmiä ja sitä, miten ihmiset voivat ilmaista rytmiä kehoperkussion, lauluperkussion ja lukuisten eri puolilta maailmaa peräisin olevien lyömäsoitinten avulla.<br>Tässä esityksessä soittamamme teoksen innoittajana on toiminut kuuluisa sambarytmi, joka on keskeinen osa Brasilian karnevaaleja. Rytmi on tehokas luovuuden ja ilmaisun väline, ja pyrimmekin esittämään lyhyitä sävellyksiä ja esittelemään luovaa prosessia niiden taustalla eli sitä, miten rytmit ja ideat kehittyivät ja miten ne sovitettiin erilaisille soittimille.</p><p><b>Café Balkan</b><br>Uppoudu Balkanin sielukkaisiin melodioihin ja tarttuviin rytmeihin Café Balkanin kanssa.<br>Café Balkan on lahjakkaista kansainvälisistä muusikoista koostuva trio, joka on omistautunut Balkanin alueen rikkaan kulttuuriperinteen vaalimiseen. Yhtyeemme lumoava esitys eloisine haitarisävelmineen ja kiihkeine trumpettisooloineen kuljettaa sinut Balkanin sydämeen.<br>Tänä kesänä yhtye kunnioittaa Makedonian ja Kreikan kiehtovaa musiikkia. Mukana on esimerkiksi Syrton, Sofkan, Patrouninon ja Poustenon melodioita tarinoineen. Laita tanssikengät jalkaan ja liity piiriin!</p><p><b>Rebetiko</b><br>Suomen sydämessä, taivaalla tanssivien revontulten alla, intohimoisista muusikoista koostuva trio tuo kreikkalaisen urbaanin kansanmusiikin ja rebetikon sielukkaat sävelet eloon. Tämä alun perin kreikkalainen erityislaatuinen yhtye, jonka jäsenet ovat Chrysa Panagiotopoulou, Evangelos Velentzas ja Vasileios Katopodis, on löytänyt itselleen kodin Helsingin eloisasta musiikkimaailmasta. Nimen To Trio alla yhtyeen jäsenet yhdistelevät kotimaansa rikkaita perinteitä saumattomasti suomalaisten maisemien kiehtoviin tunnelmiin. To Trio juhlistaa laïkó- ja rebetiko-genrejä, joiden juuret ovat syvällä kreikkalaisessa urbaanissa kansanmusiikissa. Koskettavista sanoituksistaan ja sielukkaista melodioistaan tunnetut musiikkityylit jakavat tarinoita elämästä, rakkaudesta ja vastoinkäymisistä. Trion esityksissä on autenttista tunnelmaa, joka vangitsee näiden arvostettujen musiikkiperinteiden todellisen olemuksen.</p><p>Yhteistyössä Helsinki Urban Art, Sibelius-Akatemian Global Music -koulutusohjelma ja Kanneltalo.</p>",
                "sv": "<p>Kom och ät middag i gott sällskap på Sitratorget! Vi ordnar bord och bänkar samt musikprogram. Ta med dig mat, dryck, kärl, bestick och ett gott humör.</p><p>Det kostar ingenting att delta, men förhandsanmälan krävs. Om det regnar hålls middagen i Gamlasgårdens entréhall.</p><p>Musiker från Global Music underhåller matgästerna.</p><p>Länken för förhandsanmälan till evenemanget öppnar torsdagen den 12 juni 2025. <u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSekEeUr_0eQM-nC7f6PdX52wBylDfi4p-a2WRtEjlmOjhOOlw/viewform\"> Länken för förhandsanmälan</a></u></p><p><b>Artister</p><p>Karaka-Tum</b><br>Karaka-Tum är en slagverksensemble som utgör en del av en kurs som ges av programmet Global Music vid Sibelius-Akademin.<br>Ensemblen utforskar rytm och hur människor kan engagera sig i den genom bodypercussion, vocalpercussion och en rad olika slaginstrument från hela världen.<br>I detta framförande presenterar vi ett stycke som hämtat inspiration från de berömda Sambarytmerna, ett av de viktigaste inslagen i Brasiliens karnevalfirande. Rytm är ett kraftfullt verktyg för kreativitet och uttryck, och vi kommer att presentera både korta kompositioner och den kreativa processen bakom dem – hur rytmerna och idéerna utvecklades och hur de anpassats till olika instrument.</p><p><b>Café Balkan</b><br>Låt dig ryckas med av de känslosamma melodierna och klatschiga rytmerna från Balkan med Café Balkan.<br>Café Balkan är en trio bestående av begåvade musiker från hela världen, som är engagerade i att bevara och hylla regionens rika kulturarv. Från livliga dragspelslåtar till spännande trumpetsolon; vår ensemble bjuder på ett fängslande framförande som transporterar dig till hjärtat av Balkan.<br>I sommar hyllar vi den fängslande musiken från Makedonien och Grekland, genom berättelserna och melodierna från Syrto, Sofka, Patrounino, Pousteno och mycket mer. Sätt på dig dansskorna och kom med i ringen!</p><p><b>Rebetiko</b> <br>I hjärtat av Finland, där norrskenet dansar över himlen, blåser en trio passionerade musiker liv i det själfulla soundet av grekisk urban folkmusik och Rebetiko. Denna exceptionella ensemble, som härstammar från Grekland och består av Chrysa Panagiotopoulou, Evangelos Velentzas och Vasileios Katopodis, har hittat ett hem i Helsingfors livliga musikscen. Tillsammans, som To Trio, blandar de sömlöst de rika traditionerna från hemlandet med den förtrollande atmosfären i det finska landskapet.To Trio är en hyllning till grekisk urban folkmusik och Rebetiko, genrer som är djupt rotade i Greklands urbana folkmusik. Kända för sina gripande texter och rörande melodier; dessa musikaliska traditioner berättar historier om livet, kärleken och motgångar. Trion ingjuter autenticitet i sina framträdanden och fångar det väsentliga i dessa urgamla musikaliska traditioner.</p><p>Evenemanget ordnas som ett samarbete mellan Helsinki Urban Art, utbildningsprogrammet Global Music vid Sibelius-Akademin och Gamlasgården.</p>",
                "en": "<p>Come and have dinner together on Sitratori square! We will provide tables and seats as well as musical entertainment.</p><p>Bring your own food, drinks, dishes and cutlery and a cheerful spirit.</p><p>Participation is free, but requires advance registration. If it rains, the dinner will be held in the Kanneltalo lobby.</p><p>Musicians from Global Music will be entertaining the diners.</p><p>Register to the event via <u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSekEeUr_0eQM-nC7f6PdX52wBylDfi4p-a2WRtEjlmOjhOOlw/viewform\">THIS LINK</a></u></p><p><b>Performers</p><p>Karaka-Tum</b><br>Karaka-Tum is a percussion ensemble that forms part of a course offered by the Global Music programme at Sibelius Academy.<br>The ensemble explores rhythm, and how people can engage with it through body percussion, vocal percussion, and a variety of percussion instruments from around the world.<br>In this performance, we will present a piece inspired by the famous Samba rhythm, a key element of Brazil’s carnival celebrations. Rhythm is a powerful tool for creativity and expression, and we aim to showcase both short compositions and the creative process behind them—how the rhythms and ideas were developed and how they were adapted to different instruments.</p><p><b>Café Balkan</b><br>Immerse yourself in the soulful melodies and catchy rhythms of the Balkans with Café Balkan.<br>Café Balkan is a trio comprising talented musicians from around the world, dedicated to preserving and celebrating the rich cultural heritage of the region. From spirited accordion tunes to exhilarating trumpet solos, our ensemble delivers a captivating performance that will transport you to the heart of the Balkans.<br>This summer we pay tribute to the captivating music of Macedonia, Greece, through the stories, and the melodies of Syrto, Sofka, Patrounino, Pousteno and much more. Put on your dancing shoes and join the circle!</p><p><b>Rebetiko </b><br>In the heart of Finland, where the northern lights dance across the sky, a trio of passionate musicians is bringing the soulful sounds of Greek Urban Folk and Rebetiko to life. Hailing from Greece, this extraordinary ensemble, comprised of Chrysa Panagiotopoulou, Evangelos Velentzas, and Vasileios Katopodis, has found a home in the vibrant music scene of Helsinki. Together, as To Trio, they seamlessly blend the rich traditions of their homeland with the enchanting ambiance of the Finnish landscape. To Trio is a celebration of Greek Urban Folk and Rebetiko, genres deeply rooted in the urban folk music of Greece. Known for their poignant lyrics and soul-stirring melodies, these musical traditions tell stories of life, love, and hardship. The trio infuses their performances with authenticity, capturing the essence of these time-honored musical traditions.</p><p>In collaboration with Helsinki Urban Art, the Global Music Department at the Sibelius Academy and Cultural Centre Kanneltalo.</p>"
            },
            "name": {
                "fi": "Kantsun iltamat – syödään yhdessä",
                "sv": "Soaré i Gamlas – vi äter tillsammans",
                "en": "Kantsu Soiree – let's dine together"
            },
            "short_description": {
                "fi": "Tule illastamaan yhdessä Sitratorille! Me tarjoamme pöydät ja penkit ja musiikkiohjelman. Tuo mukanasi ruokaa, juomaa, astiat, aterimet ja hyvää mieltä.",
                "sv": "Kom och ät middag i gott sällskap på Sitratorget! Vi ordnar bord och bänkar samt musikprogram. Ta med dig mat, dryck, kärl, bestick och ett gott humör.",
                "en": "Come and have dinner together on Sitratori square! We will provide tables and seats as well as musical entertainment."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65778/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66386",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@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": 1203203,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T12:14:09.088201Z",
                    "last_modified_time": "2025-07-07T12:14:09.088218Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773858.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203203/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T12:14:08.945834Z",
            "last_modified_time": "2025-07-07T12:14:09.267367Z",
            "date_published": null,
            "start_time": "2025-11-07T16:00:00Z",
            "end_time": "2025-11-07T18:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3E193EB94769DD321C160D72E0D4C08F/The_Pan-African_Ensemble",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3E193EB94769DD321C160D72E0D4C08F/The_Pan-African_Ensemble",
                "en": "http://www.kanneltalo.fi/en/events/event/3E193EB94769DD321C160D72E0D4C08F/The_Pan-African_Ensemble"
            },
            "provider_contact_info": null,
            "provider": 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 2025 aikana kahtena iltana. Ensimmäisessä klubi-illassa 19.9. esiintyvät Sofra ja El_Doxa.</p><p>Toinen klubi-ilta järjestetään 7.11. yhteistyössä Etnosoi! festivaalin kanssa, jolloin esiintyvät The Pan-African Ensemble ja Etnosoi! festivaalin toinen, myöhemmin varmistuva artistivieras.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p>Klubi-ilta toteutetaan yhteistyössä ETNOSOI! Festivaalin kanssa.</p><p><b>The Pan-African Ensemble</b><br>The Pan-African Ensemble -yhtye tekee tutkimusmatkoja afrikkalaiseen nykymusiikkiin ja perinteisiin musiikkityyleihin. Yhtyeessä musiikki yhdistää kulttuurista monimuotoisuutta yhdeksi luovaksi yhteisöksi.</p><p>Eri puolilta maailmaa tulevat muusikot kokoontuvat yhteen tekemään afrikkalaista musiikkia tuoden siihen omat ainutlaatuiset instrumenttinsa ja äänensä. He uppoutuvat tanssirytmeihin ja sovittavat niitä omille soittimilleen sopiviksi. Tämä luo kuulijassa tunteen, että musiikilla ei ole rajoja.</p><p>Tanssi ja ilmaisu merkitsevät vapautta, eikä niihin vaadita minkään tietyn alueen tanssityylin tietämystä. Tule siis mukaan tanssiin! Esityksemme tarjoaa unohtumattoman kokemuksen, jossa rikotaan yleisön ja esiintyjien välisiä raja-aitoja.</p><p>Yhtyeen omaleimaisia piirteitä ovat vahvat lauluosuudet, torvisektio ja rytmit, joihin sisältyy kaikuja afrobeatistä, zoukista, soukousista sekä itäafrikkalaisesta rumbasta ja rumpumusiikista. Esiintymisissä ei myöskään unohdeta improvisaatiota.</p><p>Vapaa pääsy</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 2025. På den första klubbkvällen 19.9. framträder Sofra och El_Doxa. Den andra klubbkvällen ordnas 7.11. i samarbete med Etnosoi! Festival och då framträder The Pan-African Ensemble och Etnosoi!-festivalens andra gästartist, bekräftas senare.</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>Kanneltalo will host the club on two evenings during the autumn of 2025. The first club night on 19th  September will feature Sofra and El_Doxa. The second club night will take place on 7th November, with performances by The Pan-African Ensemble and ETNOSOI! Festival's guest artist. The club night is produced in collaboration with ETNOSOI! Festival.</p><p>The free club nights start early, which means children are welcome when accompanied by an adult. Let’s start the weekend together!</p><p><b>The Pan-African Ensemble</b><br>The Pan-African Ensemble explores contemporary African music and traditional musical styles. The music in the ensemble unites cultural diversity into one creative community. Musicians from all over the world come together to make African music, bringing their own unique instruments and voices to it. They immerse themselves in dance rhythms and adapt them to suit their own instruments. This creates a feeling in the listener that music has no boundaries.</p><p>Dance and expression mean freedom, and do not require knowledge of any particular dance style from any particular region. So come and dance! Our performance offers an unforgettable experience that breaks down the boundaries between the audience and the performers.<br> <br>The band’s distinctive features include strong vocals, a horn section and rhythms that include echoes of Afrobeat, zouk, soukous, and East African rumba and drum music. Improvisation is also not forgotten in the performances.</p><p><b>Evening in Collaboration with ETNOSOI! </b><br>Etnosoi! is an annual festival in Helsinki with concerts, club nights and side events. Established in 1988, the idea of the festival is to inspire audiences to explore new musical adventures and showcase music from around the globe - especially performers that have rarely, if ever, been seen in Finland or Europe. Etnosoi! is a member of the Forum of Worldwide Music Festivals.<br>Etnosoi! Festival is organized by Global Music Centre</p>"
            },
            "name": {
                "fi": "The Pan-African Ensemble – Global Club Nights | EtnoSoi!",
                "sv": "The Pan-African Ensemble – Global Club Nights | EtnoSoi!",
                "en": "The Pan-African Ensemble – Global Club Nights | EtnoSoi!"
            },
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66386/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66359",
            "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:613/?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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1164095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T13:12:28.373115Z",
                    "last_modified_time": "2025-07-02T13:12:28.373128Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773621.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1164095/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-07-02T13:12:28.305042Z",
            "last_modified_time": "2025-07-07T12:14:02.870591Z",
            "date_published": null,
            "start_time": "2025-09-11T15: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3F4CDE06F2F89EB89AB69D92235F0884/16th_Avenue",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3F4CDE06F2F89EB89AB69D92235F0884/16th_Avenue",
                "en": "http://www.kanneltalo.fi/en/events/event/3F4CDE06F2F89EB89AB69D92235F0884/16th_Avenue"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tervetuloa kuuntelemaan 16th Avenuen Kalifornia- ja country-mausteista musiikkia ja juhlistamaan Risto Vuorimiehen Love-kuvia+ -näyttelyn avajaisia.</p><p>16th Avenue syntyi kolmen ystävän yhteisestä rakkaudesta Kalifornia- ja country-mausteiseen musiikkiin.</p><p>Akustisen kokoonpanon ohjelmistossa kaikuu sekä 70-luku että tämä päivä. Setissä soi muun muassa America, Fleetwood Mac, Todd Rundgren, Shawn Colvin, Terri Clarke, Joni Mitchell ja Chris Stapleton.</p><p>16th Avenuessa vaikuttaa yksi Suomen eturivin muusikoista, kitaristi ja säveltäjä Jarmo Nikku sekä juuri uutta soolotuotantoaan julkaissut laulaja ja lauluntekijä Henry Kuronen.</p><p>Nikku on vaikuttanut muun muassa Hectorin ja Kirkan yhtyeissä sekä Hoedown- ja Broadcast-kokoonpanoissa. Bändin laulusolistina on Pia Karhu, joka on toiminut muun muassa stemmalaulajana Nashvillessa.</p><p>Syksyllä 2024 kokoonpanoon liittyi basisti Masa Maijanen, joka on nähty matkan varrella niin Hectorin, Hoedownin kuin Broadcastin riveissä.</p><p>16th Avenuen esiintymisellä juhlistamme Risto Vuorimiehen gallerianäyttelyn LOVE-kuvia+ avajaisia.</p><p>Kesto 1 h</p>",
                "sv": "<p>Välkommen att lyssna på 16th Avenues Kalifornia- och country-kryddade musik och fira vernissagen för Risto Vuorimies Love-foton+-utställning.</p><p>16th Avenue uppstod i tre vänners gemensamma kärlek till musik som smakar Kalifornien och country.</p><p>I programutbudet för den akustiska sammansättningen hör vi både 70-talet och denna dag. På repertoaren finns bland annat America, Fleetwood Mac, Todd Rundgren, Shawn Colvin, Terri Clarke, Joni Mitchell och Chris Stapleton.</p><p>I 16th Avenue verkar en av Finlands främsta musiker, gitarrist och kompositör Jarmo Nikku samt sångare och låtskrivare Henry Kuronen som just publicerat sin nya soloproduktion. Nikku har medverkat bland annat i Hectors och Kirkas band samt i orkestrarna Hoedown och Broadcast. Pia Karhu är bandets solist och hon har bland annat sjungit stämma i Nashville.</p><p>Hösten 2024 anslöt sig basist Masa Maijanen till bandet. Han har tidigare setts i Hectors band samt i orkestrarna Hoedown och Broadcast.</p><p>Med uppträdandet av 16th Avenue firar vi vernissagen för Risto Vuorimies galleriutställning LOVE-bilder+.</p><p>Välkommen till galleriet kl. 17–19.30. <br>Utställningen är öppen fram till 30.10 må–to kl. 9–20, fr kl. 9–18, lö 10–16.</p><p>Längd 1 timme</p>",
                "en": "<p>Come and enjoy the California and country-flavoured music of 16th Avenue and celebrate the opening of Risto Vuorimies's LOVE Images+ exhibition.</p><p>16th Avenue was born out of three friends' shared love for California and country-inspired music.  Their acoustic lineup echoes the sounds of both the 70s and today. The set features music by artists such as America, Fleetwood Mac, Todd Rundgren, Shawn Colvin, Terri Clark, Joni Mitchell and Chris Stapleton.</p><p>16th Avenue includes one of Finland's top musicians, guitarist and composer Jarmo Nikku, as well as singer-songwriter Henry Kuronen, who has just released new solo material. Nikku has played in bands with artists such as Hector and Kirka, as well as in the groups Hoedown and Broadcast. The band's vocalist is Pia Karhu, who has worked as a backing vocalist in Nashville, among other places. Joining the ensemble in autumn 2024, bass player Masa Maijanen has previously performed with Hector, Hoedown and Broadcast.</p><p>16th Avenue's performance celebrates the opening of Risto Vuorimies’s gallery exhibition LOVE Images+.</p><p>Welcome to the gallery between 17:00 and 19:30. <br>The exhibition will be open until 30 October, Mon–Thu 9:00–20:00, Fri 9:00–18:00 and Sat 10:00–16:00.</p><p>Duration: 1 hour</p>"
            },
            "name": {
                "fi": "16th Avenue",
                "sv": "16th Avenue",
                "en": "16th Avenue"
            },
            "short_description": {
                "fi": "Tervetuloa kuuntelemaan 16th Avenuen Kalifornia- ja country-mausteista musiikkia ja juhlistamaan Risto Vuorimiehen Love-kuvia+ -näyttelyn avajaisia.",
                "sv": "Välkommen att lyssna på 16th Avenues Kalifornia- och country-kryddade musik och fira vernissagen för Risto Vuorimies Love-foton+-utställning."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66359/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66230",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203202,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T12:13:59.903134Z",
                    "last_modified_time": "2025-07-07T12:13:59.903151Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772888.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203202/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T12:13:59.782561Z",
            "last_modified_time": "2025-07-07T12:14:00.084200Z",
            "date_published": null,
            "start_time": "2025-08-28T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4733DEFEFBEC1913E453E3B90E9794E8/Nukketeatteri_Sampo_Vallaton_viuhka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/4733DEFEFBEC1913E453E3B90E9794E8/Dockteater_Sampo_Vallaton_viuhka_en_ostyrig_solfjader_",
                "en": "http://www.annantalo.fi/en/events/event/4733DEFEFBEC1913E453E3B90E9794E8/Vallaton_viuhka_-_A_journey_of_sounds"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.</p><p>Visuaaliset elementit, heijastukset, liikkeet, äänet ja esineet – niiden leikki lumoaa katsojan. Mielikuvituksen voimalla matkaamme yhdessä vaikka avaruuteen, kipuamme karuselliin tai kuljemme kaupungin kaduilla!</p><p>Tämä esitys sopii loistavasti aivan perheen pienimmille, vauvoille ja taaperoille, mutta myös aikuinen saa esityksestä ihanan, rauhoittavan kokemuksen.</p><p>”Vallaton viuhka on sielulle hierontaa!” – katsojakommentti <br>tammikuussa 2025</p><p>Ikäsuositus 0+<br>Kesto n. 30 min. <br>Esitys on sanaton.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Esityksen toteutus: työryhmä / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Ohjaaja: Iivo Baric<br>Näyttämöllä: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Musiikki: Satu Lankinen, Antero Reinistö<br>Lavastus: työryhmä<br>Puvustus: Kristiina Jokinen<br>Tekniikka: Jere Kouhia</p>",
                "sv": "<p>Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.</p><p>Visuella element, reflektioner, rörelser, ljud och föremål – deras lek trollbinder publiken. Med fantasins kraft kan vi tillsammans resa ut i rymden, klättra upp på en karusell eller gå på stadens gator! <br>Föreställningen passar utmärkt för de allra yngsta, späd- och småbarn, men också vuxna får en underbar, avkopplande upplevelse.</p><p>”Vallaton viuhka är massage för själen!” – publikkommentar januari 2025</p><p>Åldersrekommendation 0 +<br> Längd: ca 30 min. <br>Föreställningen är ordlös.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b></p><p>Föreställningen har skapats av: arbetsgrupp / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Regi: Iivo Baric<br> På scenen: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br> Musik: Satu Lankinen, Antero Reinistö<br> Iscensättning: arbetsgrupp<br> Kostymering: Kristiina Jokinen<br> Teknik: Jere Kouhia</p>",
                "en": "<p>Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another.</p><p>Visual elements, reflections, movements, sounds and objects – their play enchants everyone. With the power of imagination, we travel together into space, ride a carousel or go on a walk on the streets of the city!</p><p>This performance is perfect for the youngest members of the family, babies and toddlers, but adults will also get a wonderful, calming experience from the performance.</p><p>For all ages 0+ <br>Duration: 30 min<br>Nonverbal</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Working group: Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Director: Iivo Baric<br>On stage: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Music: Satu Lankinen, Antero Reinistö<br>Scenography: work group<br>Costumes: Kristiina Jokinen<br>Technical: Jere Kouhia</p>"
            },
            "name": {
                "fi": "Nukketeatteri Sampo: Vallaton viuhka – Sampo Festivaali 2025",
                "sv": "Dockteater Sampo: Vallaton viuhka (en ostyrig solfjäder) – Sampo-festivalen 2025",
                "en": "Vallaton viuhka - A journey of sounds – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.",
                "sv": "Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.",
                "en": "Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66230/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66227",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 €",
                        "sv": "15 €",
                        "en": "15 €"
                    },
                    "info_url": {
                        "fi": "https://teatteri.sampofestival.fi/esityskalenteri/",
                        "sv": "https://teatteri.sampofestival.fi/esityskalenteri/",
                        "en": "https://teatteri.sampofestival.fi/esityskalenteri/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203201,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T12:13:59.334461Z",
                    "last_modified_time": "2025-07-07T12:13:59.334477Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772883.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203201/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T12:13:59.203225Z",
            "last_modified_time": "2025-07-07T12:13:59.511168Z",
            "date_published": null,
            "start_time": "2025-08-27T14: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/094A7577EDD5916584A6290F479CF9A2/Nukketeatteri_Sampo_Vallaton_viuhka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/094A7577EDD5916584A6290F479CF9A2/Dockteater_Sampo_Vallaton_viuhka_en_ostyrig_solfjader_",
                "en": "http://www.annantalo.fi/en/events/event/094A7577EDD5916584A6290F479CF9A2/Vallaton_viuhka_-_A_journey_of_sounds"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.</p><p>Visuaaliset elementit, heijastukset, liikkeet, äänet ja esineet – niiden leikki lumoaa katsojan. Mielikuvituksen voimalla matkaamme yhdessä vaikka avaruuteen, kipuamme karuselliin tai kuljemme kaupungin kaduilla!</p><p>Tämä esitys sopii loistavasti aivan perheen pienimmille, vauvoille ja taaperoille, mutta myös aikuinen saa esityksestä ihanan, rauhoittavan kokemuksen.</p><p>”Vallaton viuhka on sielulle hierontaa!” – katsojakommentti tammikuussa 2025</p><p>Ikäsuositus 0+<br>Kesto n. 30 min. <br>Esitys on sanaton.</p><p>Esityksen toteutus: työryhmä / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Ohjaaja: Iivo Baric<br>Näyttämöllä: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Musiikki: Satu Lankinen, Antero Reinistö<br>Lavastus: työryhmä<br>Puvustus: Kristiina Jokinen<br>Tekniikka: Jere Kouhia</p>",
                "sv": "<p>Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.</p><p>Visuella element, reflektioner, rörelser, ljud och föremål – deras lek trollbinder publiken. Med fantasins kraft kan vi tillsammans resa ut i rymden, klättra upp på en karusell eller gå på stadens gator! <br>Föreställningen passar utmärkt för de allra yngsta, späd- och småbarn, men också vuxna får en underbar, avkopplande upplevelse.</p><p>”Vallaton viuhka är massage för själen!” – publikkommentar januari 2025</p><p>Åldersrekommendation 0 +<br> Längd: ca 30 min. <br>Föreställningen är ordlös.</p><p>Föreställningen har skapats av: arbetsgrupp / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Regi: Iivo Baric<br> På scenen: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br> Musik: Satu Lankinen, Antero Reinistö<br> Iscensättning: arbetsgrupp<br> Kostymering: Kristiina Jokinen<br> Teknik: Jere Kouhia</p>",
                "en": "<p>Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another.</p><p>Visual elements, reflections, movements, sounds and objects – their play enchants everyone. With the power of imagination, we travel together into space, ride a carousel or go on a walk on the streets of the city!</p><p>This performance is perfect for the youngest members of the family, babies and toddlers, but adults will also get a wonderful, calming experience from the performance.</p><p>For all ages 0+ <br>Duration: 30 min<br>Nonverbal</p><p>Working group: Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Director: Iivo Baric<br>On stage: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Music: Satu Lankinen, Antero Reinistö<br>Scenography: work group<br>Costumes: Kristiina Jokinen<br>Technical: Jere Kouhia</p>"
            },
            "name": {
                "fi": "Nukketeatteri Sampo: Vallaton viuhka – Sampo Festivaali 2025",
                "sv": "Dockteater Sampo: Vallaton viuhka (en ostyrig solfjäder) – Sampo-festivalen 2025",
                "en": "Vallaton viuhka - A journey of sounds – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.",
                "sv": "Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.",
                "en": "Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66227/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66228",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:102/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1203200,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T12:13:58.756414Z",
                    "last_modified_time": "2025-07-07T12:13:58.756430Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772882.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203200/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T12:13:58.597098Z",
            "last_modified_time": "2025-07-07T12:13:58.957958Z",
            "date_published": null,
            "start_time": "2025-08-27T07: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,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E804D973F9D1CB2F10AE01F99FE42B2A/Nukketeatteri_Sampo_Vallaton_viuhka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E804D973F9D1CB2F10AE01F99FE42B2A/Dockteater_Sampo_Vallaton_viuhka_en_ostyrig_solfjader_",
                "en": "http://www.annantalo.fi/en/events/event/E804D973F9D1CB2F10AE01F99FE42B2A/Vallaton_viuhka_-_A_journey_of_sounds"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.</p><p>Visuaaliset elementit, heijastukset, liikkeet, äänet ja esineet – niiden leikki lumoaa katsojan. Mielikuvituksen voimalla matkaamme yhdessä vaikka avaruuteen, kipuamme karuselliin tai kuljemme kaupungin kaduilla! <br>Tämä esitys sopii loistavasti aivan perheen pienimmille, vauvoille ja taaperoille, mutta myös aikuinen saa esityksestä ihanan, rauhoittavan kokemuksen.</p><p>”Vallaton viuhka on sielulle hierontaa!” – katsojakommentti tammikuussa 2025</p><p>Ikäsuositus 0+<br>Kesto n. 30 min. <br>Esitys on sanaton.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Esityksen toteutus: työryhmä / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Ohjaaja: Iivo Baric<br>Näyttämöllä: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Musiikki: Satu Lankinen, Antero Reinistö<br>Lavastus: työryhmä<br>Puvustus: Kristiina Jokinen<br>Tekniikka: Jere Kouhia</p>",
                "sv": "<p>Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.</p><p>Visuella element, reflektioner, rörelser, ljud och föremål – deras lek trollbinder publiken. Med fantasins kraft kan vi tillsammans resa ut i rymden, klättra upp på en karusell eller gå på stadens gator! <br>Föreställningen passar utmärkt för de allra yngsta, späd- och småbarn, men också vuxna får en underbar, avkopplande upplevelse.</p><p>”Vallaton viuhka är massage för själen!” – publikkommentar januari 2025</p><p>Åldersrekommendation 0 +<br> Längd: ca 30 min. <br>Föreställningen är ordlös.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b></p><p>Föreställningen har skapats av: arbetsgrupp / Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Regi: Iivo Baric<br> På scenen: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br> Musik: Satu Lankinen, Antero Reinistö<br> Iscensättning: arbetsgrupp<br> Kostymering: Kristiina Jokinen<br> Teknik: Jere Kouhia</p>",
                "en": "<p>Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another.</p><p>Visual elements, reflections, movements, sounds and objects – their play enchants everyone. With the power of imagination, we travel together into space, ride a carousel or go on a walk on the streets of the city!</p><p>This performance is perfect for the youngest members of the family, babies and toddlers, but adults will also get a wonderful, calming experience from the performance.</p><p>For all ages 0+ <br>Duration: 30 min<br>Nonverbal</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Working group: Iivo Baric, Elina Vehkaoja, Satu Lankinen, Anne Lihavainen, Jere Kouhia, Kristiina Jokinen<br>Director: Iivo Baric<br>On stage: Satu Lankinen, Anne Lihavainen, Antero Reinistö, Elina Vehkaoja<br>Music: Satu Lankinen, Antero Reinistö<br>Scenography: work group<br>Costumes: Kristiina Jokinen<br>Technical: Jere Kouhia</p>"
            },
            "name": {
                "fi": "Nukketeatteri Sampo: Vallaton viuhka – Sampo Festivaali 2025",
                "sv": "Dockteater Sampo: Vallaton viuhka (en ostyrig solfjäder) – Sampo-festivalen 2025",
                "en": "Vallaton viuhka - A journey of sounds – Sampo Festival 2025"
            },
            "short_description": {
                "fi": "Äänimatka kutsuu kuulolle! Esityksessä lempeän heleät, yllättävät äänet ja melodiat kuljettavat tunnelmasta ja maailmasta toiseen.",
                "sv": "Du är inbjuden på en ljudresa! I den här föreställningen för milda, klara och överraskande ljud och melodier dig från en känsla och en värld till nästa.",
                "en": "Gentle, bright, surprising sounds and melodies transport you from one atmosphere and world to another."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66228/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66355",
            "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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 1163426,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-02T11:12:23.247998Z",
                    "last_modified_time": "2025-07-02T11:12:23.248012Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773594.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163426/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-02T11:12:23.182447Z",
            "last_modified_time": "2025-07-07T11:12:36.839088Z",
            "date_published": null,
            "start_time": "2025-09-05T09:30:00Z",
            "end_time": "2025-11-28T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E0F79A458690C40BC1E1F4066954F805/Kanneltalon_maksuton_taidekerho_lapsille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E0F79A458690C40BC1E1F4066954F805/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/E0F79A458690C40BC1E1F4066954F805/Looking_for_creative_activity_Come_to_Kanneltalo_s_art_club_to_learn_different_themes_and_techniques_every_Friday_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen. <br>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>",
                "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.</p><p>Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.<br>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>",
                "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday. The teacher introduced the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space<br>Free entry</p>"
            },
            "name": {
                "fi": "Kanneltalon maksuton taidekerho lapsille",
                "sv": "Kostnadsfri konstklubb för barn på Gamlasgården",
                "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday."
            },
            "short_description": {
                "fi": "Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.",
                "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.",
                "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66355/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22n6pm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n3ji/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n3xu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n4f4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n4ue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n5dm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n5se/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n6au/?format=api"
                }
            ],
            "images": [
                {
                    "id": 151294,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-05-22T11:46:30.237501Z",
                    "last_modified_time": "2024-05-22T11:46:30.237522Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg",
                    "cropping": "517,0,2583,2066",
                    "photographer_name": "",
                    "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-07-07T11:12:04.980828Z",
            "last_modified_time": "2025-07-07T11:12:04.980845Z",
            "date_published": null,
            "start_time": "2025-09-10T14:00:00Z",
            "end_time": "2025-12-03T16: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäin Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p><br></p><p>Biisipaja järjestetään syksyn aikana seitsemän kertaa joka toinen keskiviikko klo 17.00-18.00</p><p>10.9, 24.9, 8.10, 22.10, 5.11, 19.11 ja 3.12</p><p><br></p><p>#musiikki #biisi #kappale #työpaja</p>"
            },
            "name": {
                "fi": "Biisityöpaja nuorille"
            },
            "short_description": {
                "fi": "Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta."
            },
            "location_extra_info": {
                "fi": "nuortentila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n6pm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22n66a",
            "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:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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"
                }
            ],
            "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:agmk22oafu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oasq/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490096,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-05-21T12:17:38.695640Z",
                    "last_modified_time": "2025-05-21T12:17:38.695655Z",
                    "name": "Tiimityö",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/279cb29a-9107-4088-a21d-8cc458c55b85.jpg",
                    "cropping": "280,0,1000,720",
                    "photographer_name": "",
                    "alt_text": "Tiimityö",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490096/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-07-07T10:40:30.645221Z",
            "last_modified_time": "2025-07-07T10:45:20.290722Z",
            "date_published": null,
            "start_time": "2025-07-10T14:00:00Z",
            "end_time": "2025-12-18T16: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p><p><br></p><p>Kerhoa ohjaa vapaaehtoinen!</p>",
                "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar med klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p><p><br></p><p>Klubben drivs av en volontär!</p>",
                "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p><p><br></p><p>The club is run by a volunteer instructor.</p>"
            },
            "name": {
                "fi": "Ligretto-kerho ",
                "sv": "Ligrettoklubben",
                "en": "Ligretto Club"
            },
            "short_description": {
                "fi": "Tule oppimaan ja pelaamaan Ligrettoa.",
                "sv": "Kom och lär dig och spela Ligretto.",
                "en": "Come learn and play the Ligretto."
            },
            "location_extra_info": {
                "fi": "Paja",
                "sv": "Paja",
                "en": "Paja"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n66a/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22odg4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?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:p2630/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:KOTO",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oa7a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22obre/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22occ4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ocva/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150370,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2024-03-15T10:22:13.113892Z",
                    "last_modified_time": "2024-03-15T10:22:13.113919Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg",
                    "cropping": "520,0,2603,2082",
                    "photographer_name": "",
                    "alt_text": "soittimia",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api"
                }
            ],
            "created_time": "2025-07-07T10:29:30.635027Z",
            "last_modified_time": "2025-07-07T10:29:30.635050Z",
            "date_published": null,
            "start_time": "2025-09-08T14:00:00Z",
            "end_time": "2025-09-29T15: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,
            "info_url": null,
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tule mukaan Sellon kirjaston studiossa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa. Ei ennakkoilmoittautumista.</p><p>Kurssi järjestetään maanantaisin klo 17-18 neljä kertaa 8.9, 15.9, 22.9, 29.9</p><p><br></p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin</p><p>​lauri.iljin(at)espoo.fi</p>",
                "sv": "<p>Bandkurs på Sello bibliotek! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 12-20-åringar. Deltagandet är kostnadsfritt.</p><p><br></p><p>Kursen är fyra gånger på måndagar 8.9, 15.9, 22.9, 29.9 kl. 17.00-18.00.</p>",
                "en": "<p>Band course for young people at the Sello Library! During the course you will be able to play and practice band instruments. The course is aimed for 12-20 year olds. Participation is free of charge.</p><p>The course is four times on Mondays 8.9, 15.9, 22.9, 29.9 at 17.00-18.00. </p>"
            },
            "name": {
                "fi": "Bändisoittimia nuorille",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "short_description": {
                "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu nuorille. Osallistuminen on maksutonta.",
                "sv": "Bandkurs för unga",
                "en": "Band course for young people"
            },
            "location_extra_info": {
                "fi": "studio",
                "sv": "studio",
                "en": "studio"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22odg4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66385",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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"
                },
                {
                    "@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": 1171714,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-03T12:14:06.773581Z",
                    "last_modified_time": "2025-07-03T12:14:06.773606Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773856.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1171714/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-03T12:14:06.664635Z",
            "last_modified_time": "2025-07-07T10:13:59.546999Z",
            "date_published": null,
            "start_time": "2025-09-19T15:00:00Z",
            "end_time": "2025-09-19T18: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,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa",
                "en": "http://www.kanneltalo.fi/en/events/event/CB8D81E420C933F72A85EC325D450950/Global_Club_Nights_Sofra_El_Doxa"
            },
            "provider_contact_info": null,
            "provider": 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 2025 aikana kahtena iltana. Ensimmäisessä klubi-illassa 19.9. esiintyvät Sofra ja El_Doxa.</p><p>Toinen klubi-ilta järjestetään 7.11. yhteistyössä Etnosoi! festivaalin kanssa, jolloin esiintyvät The Pan-African Ensemble ja toinen festivaalin artistivieras, joka varmistuu myöhemmin.</p><p>Maksuttomat klubi-illat alkavat ajoissa, joten lapsetkin ovat tervetulleita aikuisen seurassa. Aloitetaan viikonloppu yhdessä!</p><p><b>Sofra</b><br>Me olemme Melisa, Hadi ja Merve – kolmikko, jonka tavoitteena on kehittää musiikillinen ”Sofra” eli Syyrian, Turkin ja Kosovon alueiden melodioita ja tarinoita yhteenkokoava ”ruokapöytä”. Sofra tarkoittaa arabian, turkin ja monen Balkanin maan kielellä ruokapöytää ja symboloi vieraanvaraisuutta, yhteenkuuluvuuden tunnetta ja kulttuurin jakamista.</p><p>Projektimme tutkii näiden maiden rikasta musiikkiperintöä keskittyen niiden melodioihin sekä maiden välisiin historiallisiin ja kulttuurisiin risteyskohtiin. Tavoitteenamme on tämän työn kautta juhlistaa ja vaalia jaettuja perinteitä ja tehdä samalla tilaa vuoropuhelulle, yhteenkuuluvuudelle ja ilolle.</p><p>Melisa Yıldırım – laulu & kamanja<br>Hadi Hrekes – laulu & lyömäsoittimet<br>Merve Abdurrahmani – laulu & piano</p><p><b>El_Doxa-yhtye ja highlife-musiikki</b><br>Highlife on Nigeriasta ja Ghanasta peräisin oleva musiikkilaji. El_Doxa on kuuden nigerialaisen muodostama yhtye, joka vaalii nigerialaisen musiikin rytmisistä ja melodisista juurista kumpuavia vaikutteita ja ilmaisutapoja.</p><p>Soittolista on tarkoituksella laadittu jaettavaksi koko yhteisön kanssa ja tuomaan ihmisiä yhteen, jotta kaikki voivat juhlistaa taidetta ja musiikkia yhdessä.</p><p>Kappaleiden sanoituksissa on käytetty monipuolisesti Nigerian eri osissa puhuttavia kieliä. Yleisön osallistamiseksi musiikkiin myös sanoitusten kautta jotkut kappaleet ovat englanniksi tai niissä käytetään afrikkalaisten puhumaa puhekielistä englantia, joka muiden maiden näkökulmasta on pidginiä.</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 2025. På den första klubbkvällen 19.9. framträder Sofra och El_Doxa. <br>Den andra klubbkvällen ordnas 7.11. i samarbete med Etnosoi! Festival och då framträder The Pan-African Ensemble och en annan av festivalens artistgäster, som bekräftas senare.</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><p><b>Sofra</b><br>Vi är Melisa, Hadi och Merve – en trio som vill bygga ett musikaliskt ”Sofra”, ett gemensamt bord av melodier och berättelser som förenar Syrien, Turkiet och Kosovo. På arabiska, turkiska och många balkanspråk syftar sofra på ett middagsbord och symboliserar gästfrihet, gemenskap och en gemensam kultur.</p><p>Vårt projekt utforskar de här ländernas rika musikaliska arv, och fokuserar på deras melodier och de musikaliska och kulturella kopplingarna mellan dem. Genom vårt arbete vill vi uppmärksamma och bevara de gemensamma traditionerna samtidigt som vi skapar utrymme för dialog, enighet och glädje.</p><p>Melisa Yıldırım – sång & kamancha<br>Hadi Hrekes – sång & slagverk<br>Merve Abdurrahmani – sång & piano</p><p><b>El_Doxa och Highlife musik</b><br>Highlife är en musikgenre från Nigeria och Ghana, och El_Doxa är ett band med sex nigerianska medlemmar som uppskattar influenser och rytmer från den nigerianska musikens rytmiska och melodiska rötter.</p><p>Låtarna har medvetet valts med tanke på integration och en viljan att hylla konsten och musiken för och tillsammans med alla.<br>Vi får höra olika språk i låtar från olika delar av Nigeria, och för att publiken ska kunna delta och relatera till låtarna utöver det rent musikaliska är en del låtar också på engelska och afrikansk pidgin-engelska.</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>Kanneltalo will host the club on two evenings during the autumn of 2025. The first club night on 19th September will feature Sofra and El_Doxa.</p><p>The second club night will take place on 7th November, with performances by The Pan-African Ensemble and another of the festival's guest artists, who will be confirmed later.</p><p><b>Sofra</b><br>We are Melisa, Hadi and Merve—a trio dedicated to building a musical \"Sofra\", a shared table of melodies and stories that bridge the regions of Syria, Turkey and Kosovo. In Arabic, Turkish, and many Balkan languages, sofra refers to a dining table, symbolizing hospitality, togetherness, and the sharing of culture.</p><p>Our project explores the rich musical heritage of these lands, focusing on their melodies and the historical and cultural intersections between them. Through this work, we aim to celebrate and preserve shared traditions while creating a space for dialogue, unity and joy.</p><p>Melisa Yıldırım – voice & kamancha<br>Hadi Hrekes – voice & percussion<br>Merve Abdurrahmani – voice & piano</p><p><b>El_Doxa and Highlife music</b><br>Highlife is a genre of music from Nigeria and Ghana, and as a band of people from Nigeria, El_Doxa band is a band of six people from Nigeria who appreciates the influence and expressions from the rhymthic and melodic root of Nigeria music.</p><p>The choice of song selections is intentionally sculpted for integration and sharing to all community to celebrate art and music with everyone and for everyone.</p><p>Served with the diverse language infused in songs from different part of Nigeria, and for popular participations some are music in English and colloquial English of Africans which is pidgin for other countries for Africa to also relate with the music beyond the musicals.</p>"
            },
            "name": {
                "fi": "Global Club Nights: Sofra & El_Doxa – Global Club Nights",
                "sv": "Global Club Nights: Sofra & El_Doxa – Global Club Nights",
                "en": "Global Club Nights: Sofra & El_Doxa – Global Club Nights"
            },
            "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,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66385/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66684",
            "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:596/?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": 1202546,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T10:13:56.978088Z",
                    "last_modified_time": "2025-07-07T10:13:56.978105Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773606.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1202546/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T10:13:56.883778Z",
            "last_modified_time": "2025-07-07T10:13:57.138814Z",
            "date_published": null,
            "start_time": "2025-09-05T09:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B620354D15EB754ACC0405C5665BD6EC/Kanneltalon_maksuton_taidekerho_lapsille",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B620354D15EB754ACC0405C5665BD6EC/Kostnadsfri_konstklubb_for_barn_pa_Gamlasgarden",
                "en": "http://www.kanneltalo.fi/en/events/event/B620354D15EB754ACC0405C5665BD6EC/Looking_for_creative_activity_Come_to_Kanneltalo_s_art_club_to_learn_different_themes_and_techniques_every_Friday_"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.</p><p>Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen. <br>Olet tervetullut Kanneltalon taidekerhoon piipahtamaan tai viihtymään pidemmäksikin aikaa. Opettaja esittelee teemat ja tekniikat ja auttaa sinua tarvittaessa. Mukaasi saat oman ainutlaatuisen teoksesi ja myös uudet taidot ja ideat, jotka toivottavasti inspiroivat itsenäiseen työskentelyyn työpajan jälkeenkin.<br> <br>Syksyn ohjelmassa on esimerkiksi pienikokoinen kirja, pressprint-grafiikkaa, huovutettu heijastin, monotypia, värioppia, naamio, tussimaalausta, huovutettu joulukoriste ja paljon muuta kivaa!</p><p>Taidekerhon non-stop-toiminta on suunniteltu alakouluikäisille, nuoremmat lapset ovat tervetulleita osallistumaan yhdessä aikuisen kanssa.<br> <br>Ohjaajana kuvataiteilija Chloé Mahy-Hulkko <br>Opetuskielet suomi, englanti, ranska <br>Kirjaston monitoimitila Tempo</p><p>Vapaa pääsy</p>",
                "sv": "<p>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!</p><p>Kostnadsfri konstklubb för barn på Gamlasgården<br>Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång.</p><p>Konstklubbens non-stop-verksamhet är utformad med tanke på barn i grundskolan, men yngre barn är välkomna i sällskap av en vuxen.<br>Handledare är bildkonstnären Chloé Mahy-Hulkko</p><p>Undervisningsspråk finska, engelska, franska</p><p>Fritt inträde<br>Plats: Bibliotekets allaktivitetslokal Tempo</p>",
                "en": "<p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday.</p><p>Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday. The teacher introduced the used techniques and helps with working whenever needed. You get to keep all the art you create in the non-stop club, and hopefully the new skills and ideas inspire on independent working after the club too.</p><p>The autumn's program includes for example making a small book, press print graphic, felted reflector, monotypia, color theory, mask, marker painting, felted Christmas decoration and many other fun things!</p><p>The non-stop activities of the art club are designed for primary school children. Younger children are welcome together with an adult.</p><p>Directed by visual artist Chloé Mahy-Hulkko<br>Languages of instruction: Finnish, English, French<br>Location: The library's Tempo multifunctional space<br>Free entry</p>"
            },
            "name": {
                "fi": "Kanneltalon maksuton taidekerho lapsille",
                "sv": "Kostnadsfri konstklubb för barn på Gamlasgården",
                "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday."
            },
            "short_description": {
                "fi": "Kaipaatko luovaa toimintaa? Tule perjantaisin Kanneltalon taidekerhoon – teemat ja tekniikat vaihtelevat kerrasta toiseen.",
                "sv": "Behöver du få utlopp för din kreativitet? Kom med på konstklubb på Gamlasgården på fredagar – teman och tekniker varierar från gång till gång. Höstens program innehåller till exempel en liten bok, pressprint-grafik, en tovad reflex, monotypi, färglära, en mask, en tuschmålning, en tovad juldekoration och mycket annat fint!",
                "en": "Looking for creative activity? Come to Kanneltalo's art club to learn different themes and techniques every Friday."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66684/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66691",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": 1202219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-07-07T09:13:56.299839Z",
                    "last_modified_time": "2025-07-07T09:13:56.299857Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771515.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1202219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-07-07T09:13:56.138063Z",
            "last_modified_time": "2025-07-07T09:13:56.516654Z",
            "date_published": null,
            "start_time": "2025-09-15T07:15:00Z",
            "end_time": "2025-12-15T09: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,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0BBBCA20280228F4EBB6B6B93C17E0D2/Tanssi_ja_leikki_",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0BBBCA20280228F4EBB6B6B93C17E0D2/Dans_och_lek",
                "en": "http://www.caisa.fi/en/events/event/0BBBCA20280228F4EBB6B6B93C17E0D2/The_dance_and_play"
            },
            "provider_contact_info": null,
            "provider": null,
            "description": {
                "fi": "<p>Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä aikuisensa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija Alito Alessin kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija Vera Lapitskaya, sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa.</p><p>Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p><b>Aikataulut</b><br>Tanssi ja leikki -työpajat Caisassa maanantaisin 15.9.–15.12. klo 9.15–10 ja 10.15–11.</p><p>HUOM! Työpajaa EI järjestetä 13.10. eikä 3.11.2025.</p><p>Työpajaohjaaja: Vera Lapitskaya<br>Ikäryhmä: 1–3-vuotiaille lapsille yhdessä aikuisen kanssa<br>Kielet: Suomi (English, Russian and Spanish if needed)<br>Vapaa pääsy</p>",
                "sv": "<p>Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Handledaren på kursen är danskonstnären Vera Lapitskaya, certifierad DanceAbility-lärare.</p><p><b>Deltagande:</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p><b>Tidschema</b><br>Workshops på Caisa på måndagar 15.9–15.12 kl. 9.15–10.00 och 10.15–11.00.</p><p>OBS! Ingen workshop hålls 13.10 och 3.11.2025.</p><p>Språk: finska (engelska, ryska och spanska vid behov)</p>",
                "en": "<p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way.</p><p>The course is also suitable for participants with special needs and different mobility abilities.</p><p>The instructor of the course is dance artist and instructor Vera Lapitskaya, a certified DanceAbility teacher.</p><p><b>Participation:</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together. You can participate either one workshop or all of them on consecutive weeks. Arrive on time.</p><p>No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p><b>Schedule</b><br>Workshops at Caisa on Mondays from 15 September to 15 December, at 9:15–10:00 and 10:15–11:00.</p><p>NOTE! No workshop on 13 October and 3 November 2025.</p><p>Languages: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki – Työpaja 1–3-vuotiaille taaperoille ja heidän aikuisilleen",
                "sv": "Dans och lek – Verkstaden för småbarn",
                "en": "The dance and play"
            },
            "short_description": {
                "fi": "Tanssi ja leikki- työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek -verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66691/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}