Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?format=api&keyword=yso%3Ap4354&page=3
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 6935,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=4",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&keyword=yso%3Ap4354&page=2"
    },
    "data": [
        {
            "id": "kulke:67875",
            "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: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: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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494510,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T13:13:43.090068Z",
                    "last_modified_time": "2026-01-16T13:13:43.090085Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780531.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494510/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-16T13:13:42.934000Z",
            "last_modified_time": "2026-03-20T01:13:54.572584Z",
            "date_published": null,
            "start_time": "2026-04-08T07:00:00Z",
            "end_time": "2026-04-08T09: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,
            "short_description": {
                "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!",
                "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!",
                "en": "In these imaginatively modified play environments, play gets to run wild!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84460F68B9C6061812325F93A9D5CA6B/Taideleikit_leikin_oma_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/84460F68B9C6061812325F93A9D5CA6B/Konstlekar_en_egen_plats_for_lek",
                "en": "http://www.annantalo.fi/en/events/event/84460F68B9C6061812325F93A9D5CA6B/Art_games_a_space_for_play"
            },
            "description": {
                "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen   <br>Aika: 10–12 (nonstop)  <br>Ikäryhmä: 0-3v<br>Kieli: suomi    <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>",
                "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.  <br>Regi: Noora Puranen   <br>Tid: kl. 10–12 (non-stop)  <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>",
                "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen   <br>Time: 10.00–12.00 (non-stop)  <br>Age group: 0–3<br>Language: Finnish    <br>Free of charge</p>"
            },
            "name": {
                "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa",
                "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen",
                "en": "Art games – a space for play – Children aged 0–3 with an adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67875/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67983",
            "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: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: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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494522,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T14:13:36.340664Z",
                    "last_modified_time": "2026-01-16T14:13:36.340693Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781415.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494522/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-16T14:13:36.249488Z",
            "last_modified_time": "2026-03-20T01:13:54.445149Z",
            "date_published": null,
            "start_time": "2026-04-08T06: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,
            "short_description": {
                "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.",
                "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.",
                "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka_Danskortlek",
                "en": "http://www.annantalo.fi/en/events/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka"
            },
            "description": {
                "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen. Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>",
                "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>",
                "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Ko-kollektiivi: Tanssikorttipakka",
                "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek",
                "en": "Ko-kollektiivi: Tanssikorttipakka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67983/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67890",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494304,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T09:13:51.551249Z",
                    "last_modified_time": "2025-12-23T09:13:51.551263Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781413.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494304/?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-12-23T09:13:51.458151Z",
            "last_modified_time": "2026-03-20T01:13:53.988999Z",
            "date_published": null,
            "start_time": "2026-04-07T07: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,
            "short_description": {
                "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.",
                "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.",
                "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka_Danskortlek",
                "en": "http://www.annantalo.fi/en/events/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka"
            },
            "description": {
                "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>",
                "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>",
                "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Ko-kollektiivi: Tanssikorttipakka",
                "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek",
                "en": "Ko-kollektiivi: Tanssikorttipakka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67889",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494303,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T09:13:51.205118Z",
                    "last_modified_time": "2025-12-23T09:13:51.205133Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781412.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494303/?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-12-23T09:13:51.089331Z",
            "last_modified_time": "2026-03-20T01:13:53.880870Z",
            "date_published": null,
            "start_time": "2026-04-07T06: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,
            "short_description": {
                "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.",
                "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.",
                "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka_Danskortlek",
                "en": "http://www.annantalo.fi/en/events/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka"
            },
            "description": {
                "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>",
                "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>",
                "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>"
            },
            "name": {
                "fi": "Ko-kollektiivi: Tanssikorttipakka",
                "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek",
                "en": "Ko-kollektiivi: Tanssikorttipakka"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67889/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67242",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?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: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:734/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494336,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-30T12:13:06.133817Z",
                    "last_modified_time": "2025-12-30T12:13:06.133830Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780320.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494336/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-30T12:13:06.027463Z",
            "last_modified_time": "2026-03-20T01:13:53.481679Z",
            "date_published": null,
            "start_time": "2026-04-02",
            "end_time": "2026-06-13",
            "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,
            "short_description": {
                "fi": "Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.",
                "sv": "Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.",
                "en": "Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu_Dodens_kulle",
                "en": "http://www.annantalo.fi/en/events/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu"
            },
            "description": {
                "fi": "<p>Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.</p><p>Sarjakuvan hahmot perustuvat suurimmalta osin lukijoiden ehdotuksiin. Ensimmäiset hahmot kerättiin Annantalon sarjakuvakurssien oppilailta. Kalmakumpu ilmestyy kahdesti vuodessa. Sen ensimmäinen osa julkaistiin syksyllä 2025.<br> <br>Kalmakummun tavoitteena on syventää lasten suhdetta sarjakuvaan siinä käytetyn laajan tunnespektrin avulla. Teos pyrkii kehittämään lukijoiden empatiaa sekä vahvistamaan lapsen asemaa lukijana. Teoksessa luotetaan lapsen kykyyn käsitellä myös vakavia asioita luetun kautta. Kalmakummussa käsitellään kuoleman eri ulottuvuuksia turvallisessa ja lempeässä ympäristössä.<br> <br>Näyttely esittelee sarjakuvan hahmoja ja tunnelmia. Se juhlistaa toisen Kalmakumpu-albumin ilmestymistä.</p><p>Työskentelyä on tukenut Koneen Säätiö.</p><p><a href=\"https://www.kalmakumpu.fi/\"><b>www.kalmakumpu.fi</b></a></p><p>_</p><p>Tervetuloa näyttelyn avajaisiin ja Kalmakumpu 2:n julkkareihin Annantalon Kahvila Naperoon 2.4. klo 17-19!</p><p>Klo 18 auditoriossa Markus Koistisen Kalmakumpu-aiheinen pelikonsertti!</p>",
                "sv": "<p>Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.</p><p>Karaktärerna i serien är till stor del baserade på förslag från läsarna. De första figurerna samlades in från deltagarna i Annegårdens seriekurser. Kalmakumpu utkommer två gånger per år. Den första delen publicerades hösten 2025.<br> <br>Kalmakumpu syftar till att fördjupa barns relation till tecknade serier genom det breda känslospektrum som används i dem. Verket syftar till att utveckla läsarnas empati och stärka barnets roll som läsare. Verket förlitar sig på barnets förmåga att hantera allvarliga frågor genom läsning. Kalmakumpu behandlar dödens olika dimensioner i en trygg och vänlig miljö.<br> <br>Utställningen presenterar den tecknade seriens karaktärer och stämningar. Den firar utgivningen av det andra Kalmakumpu-albumet.</p><p>Arbetet har fått stöd av Konestiftelsen.</p><p>www.kalmakumpu.fi</p>",
                "en": "<p>Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants.</p><p>The characters of the comic are largely based on suggestions from readers. The ideas for the first characters were collected from students of Annantalo’s comic courses. Kalmakumpu is published twice a year. The first issue was published in autumn 2025.<br> <br>Kalmakumpu aims to deepen children’s relationship with comics through the broad emotional spectrum that it uses. The work aims to develop empathy among readers and strengthen the role of children as readers. It trusts that children are also able to process serious matters through what they read. Kalmakumpu deals with different dimensions of death in a safe and gentle environment.<br> <br>This exhibition presents the characters and moods of the comic. It celebrates the release of the second Kalmakumpu album.</p><p>The work has been supported by the Kone Foundation.</p><p>www.kalmakumpu.fi</p>"
            },
            "name": {
                "fi": "Kalmakumpu – Kuvitusnäyttely kahvila Naperossa",
                "sv": "Kalmakumpu – Dödens kulle – Illustrationsutställning på kafé Napero",
                "en": "Kalmakumpu – Illustration exhibition at Café Napero"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67242/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67243",
            "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:31/?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:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494295,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T07:13:48.157866Z",
                    "last_modified_time": "2025-12-23T07:13:48.157881Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780384.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494295/?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-12-23T07:13:48.009840Z",
            "last_modified_time": "2026-03-20T01:13:50.993202Z",
            "date_published": null,
            "start_time": "2026-03-29T10:00:00Z",
            "end_time": "2026-03-29T13: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,
            "short_description": {
                "fi": "Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.",
                "sv": "Med öppna sinnen eller Aistit avoinna är ett privat evenemang för familjer med barn med autismspektrumtillstånd vid en tidpunkt då det inte finns någon annan verksamhet på Annegården.",
                "en": "Senses Open is a dedicated private event for families with autism spectrum disorder, during which there will be no other activities at Annantalo."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1FA6B47FD8EC53CAB015CDC6C7100182/Aistit_avoinna_2026",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/1FA6B47FD8EC53CAB015CDC6C7100182/Aistit_avoinna_2026_Med_oppna_sinnen_2026",
                "en": "http://www.annantalo.fi/en/events/event/1FA6B47FD8EC53CAB015CDC6C7100182/Senses_Open_2026"
            },
            "description": {
                "fi": "<p>Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.</p><p>Päivän ohjelma on suunniteltu autismikirjon näkökulmasta autismiystävälliseksi. Jokaisella lapsella tulee olla mukana oma aikuinen. Tapahtumaan ei ole ala- tai yläikärajaa.  <br>Tapahtuma on maksuton.</p><p>Klikkaa tästä ja ilmoittaudu mukaan: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Ilmoittaudu mukaan!</b></a></p><p>Lähetämme ennen tapahtumaa sähköpostitse saapumisohjeet Annantalolle. <br>Paikalle saapuessa Autismisäätiön oppaat ovat sinua vastassa Annantalon ala-aulassa. <br>Tapahtumassa on rauhallinen huone, jossa voit rauhoittua ja levähtää.</p><p>Annantalon Kahvila Napero on auki koko tapahtuman ajan. Voit halutessasi ostaa aistiystävällistä lounasta, kahvia sekä suolaisia ja makeita herkkuja.</p><p>Tapahtuman kieli on suomi. Myös muunkieliset osallistujat ovat lämpimästi tervetulleita.</p><p>Tapahtuman järjestävät yhteistyössä Lasten ja nuorten taidekeskus Annantalo, Autismiliitto, Autismisäätiö sekä Autismiyhdistys PAUT ry.</p><p>Tutustu ohjelmaan! <br> <br><b>Esitykset: </b></p><p><b>Musiikkiteatteriesitys: Hinni–Hiiri </b><br>klo 13.30 ja 15.00  <br>Tule laulamaan ja tutustumaan erilaisiin soittimiin!<br>Muskariope Tuuli Paasolainen tuo tapahtumaan interaktiivisen ja innostavan musiikkiteatteriesityksen, joka ilostuttaa kaiken ikäisiä. Vähäsanainen esitys sopii kaikille, kielestä tai erityistarpeista riippumatta.  <br>Osallistumisliput infosta tapahtuman aikana.</p><p><b>Esiintymistuokio: Lavalla Mauno </b><br>klo 14.15 <br>Kirjolla–sarjasta tuttu 18-vuotias Mauno tuo lavalle musiikkia ja merkityksiä. Esiintymistuokiossa kuullaan hänen omia kappaleitaan sekä cover-biisejä. Musiikin lomassa Mauno jakaa ajatuksiaan neuroepätyypillisyydestä – rehellisesti, rohkeasti ja omasta näkökulmastaan. <br>Osallistumisliput infosta tapahtuman aikana. <br> <br><b>Työpajat: </b><br>klo 13-16. Työpajoissa voit piipahtaa tai viipyä pidempään.</p><p><b>Varjoteatteria -työpaja </b><br>Tilassa on varjoteatterikangas ja värivalot. Liiku ja tutki, millaisia varjoja sinusta muodostuu. Muuttuvat värit ja rauhallinen musiikki luovat tunnelmaa.Ohjaajina taidekasvattajat Karoliina Helminen ja Sari Tupamäki.</p><p><b>Aistipolku: Koe aisteilla </b><br>Aistipolun pisteellä voi pysähtyä kokemaan ja tutkimaan aisteja eri tavoin. Tarjolla on aisteihin liittyviä kokemuksia, joita voi kokeilla ja tunnustella omaan tahtiin. Osallistu juuri sillä tavalla kuin itselle tuntuu sopivalta. Aistipolun toteuttaa Autismiyhdistys PAUT ry.</p><p><b>Sirkustyöpaja </b><br>Tule testaamaan vanteen pyörittämistä, jonglööraamaan erilaisilla välineillä, tasapainottelemaan tasapainolaudalla ja pyörittelemään voimistelunauhoja. Sirkuspajaa ohjaavat Sirkus Magentan sosiaalisen sirkuksen ohjaajat.</p><p><b>Kuvantekijän ateljee </b><br>Tervetuloa tutustumaan Jenni Horton taidenäyttelyyn! Inspiroidutaan Jennin teoksista ja kokeillaan minkälaisia kuvia saamme aikaiseksi, kun käytössämme ovat liidut, sitruuna ja mustikka. Ohjaajina taidekasvattajat Anne Rossi-Horto ja Santtu Koivu.</p><p><b>Pop-up-kirjasto </b><br>Helsingin kaupunginkirjaston pisteellä voi lukea ja lainata autismiin ja neuromoninaisuuteen liittyviä kirjoja kaikenikäisille. Paikalla on rauhallisia lukumajoja, joissa voi pysähtyä lukemaan. Pääset myös itse rakentamaan majan.</p><p><b>Toiveiden tapahtuma  </b><br>Työpajassa jutellaan haaveista ja toiveista, ja tutustutaan toisiin. Toteutamme yhteisen Toiveiden tapahtuma -kollaasityön: piirrä, kirjoita, leikkaa, liimaa tai vain juttele. Kollaasityö on osa yhteisöpedagogiopiskelija Mona Kuusiston opinnäytetyötä.</p><p><b>Pinssipiste </b><br>Pinssipisteellä voi suunnitella ja tehdä itselleen pinssin. Pisteellä voi piirtää, kirjoittaa tai toteuttaa oman idean ja valmistaa siitä pinssin omaan tahtiin. Pinssipisteen toteuttaa Autismiyhdistys PAUT ry.</p><p>Tapahtumassa on mukana Autismiliiton edustaja – voit poiketa  kysymään asiantuntijaneuvoja matalalla kynnyksellä.</p><p>Lämpimästi tervetuloa!</p>",
                "sv": "<p>Med öppna sinnen eller Aistit avoinna är ett privat evenemang för familjer med barn med autismspektrumtillstånd vid en tidpunkt då det inte finns någon annan verksamhet på Annegården.</p><p>Programmet för dagen är utformat autismvänligt. Varje barn bör ha en ledsagare eller en närstående med sig. Det finns ingen nedre eller övre åldersgräns för evenemanget. Evenemanget är avgiftsfritt.</p><p>Klicka här för att anmäla dig: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Anmäl dig nu!</b></a></p><p>Vi skickar anvisningar för ankomst till Annegården per e-post före evenemanget. <br>Vid ankomsten möts du av guider från Autismstiftelsen i Annegårdens nedre foajé. <br>Under evenemanget finns ett lugnt rum där du kan varva ner och vila en stund.</p><p>Annegårdens egna ljuvliga Café Napero är öppet under hela evenemanget. Du kan köpa sinnesvänlig och näringsrik lunch, kaffe samt salta och söta godsaker om du vill.</p><p>OBS! Evenemanget går på finska. Deltagare med annat modersmål är också varmt välkomna.</p><p>Evenemanget ordnas i samarbete mellan Annegårdens konstcentrum för barn och unga, AutismFinland, Autismisäätiö och  Autismiyhdistys PAUT ry. <br> <br>Program för dagen: <br> <br><b>Föreställningar: </b></p><p><b>Musikteaterföreställning – Hinni–Musen</b> <br>kl. 13.30 och 15.00 <br>Sjung och upptäck olika musikinstrument! Musikpedagogen Tuuli Paasolainen bjuder på en interaktiv och inspirerande föreställning som gläder alla åldrar. Föreställningen är lågmäld och passar alla, oavsett språk eller särskilda behov. <br>Biljetter för deltagande finns vid informationsdisken under evenemanget.</p><p><b>Scenframträdande – Mauno på scenen </b><br>kl. 14.15 <br>Mauno, 18 år och känd från serien Kirjolla, tar med musik och mening till scenen. Under framträdandet får du höra hans egna låtar samt covers. Mellan musiken delar Mauno sina tankar om neurodiversitet – ärligt, modigt och ur sitt eget perspektiv. <br>Biljetter för deltagande finns vid informationsdisken under evenemanget.</p><p><b>Verkstäder: </b><br>kl. 13–16 <br>Du kan delta en stund eller stanna längre i verkstäderna.</p><p><b>Skuggteater </b><br>I rummet finns en skuggteaterskärm och färgade ljus. Rör dig och utforska vilka skuggor du kan skapa. Föränderliga färger och lugn musik skapar en mysig atmosfär. Välkommen att leka med ljus och skugga! Ledare: konstpedagogerna Karoliina Helminen och Sari Tupamäki.</p><p><b>Sensorisk stig: Upplev med sinnena</b> <br>På den sensoriska stigen kan du stanna upp och uppleva samt utforska sinnena på olika sätt. Här erbjuds sensoriska upplevelser som du kan prova och känna i din egen takt. Du deltar på det sätt som känns bäst för dig. Den sensoriska stigen arrangeras av Autismförbundet PAUT ry.</p><p><b>Cirkusverkstad </b><br>I verkstaden du kan testa att snurra med ringar, jonglera med olika redskap, balansera på balansbräda och snurra gymnastikband. Verkstaden leds av instruktörer från Circus Magentas sociala cirkus.</p><p><b>Bildskaparnas ateljé på Annegården </b><br>Välkommen att utforska Jenni Hortons konstutställning! Låt dig inspireras av Jennis verk och prova att skapa egna bilder med kritor, citron och blåbär. Ledare: konstpedagogerna Anne Rossi-Horto och Santtu Koivu.</p><p><b>Pop-up-bibliotek</b><br>På Helsingfors stadsbiblioteks pop-up-bibliotek kan du läsa och låna böcker om autism och neurodiversitet för alla åldrar. Det finns lugna lästält där du kan läsa i egen takt.</p><p><b>Önskemål och drömmar </b><br>Vi skapar tillsammans ett gemensamt Önskans evenemang-collage. Du kan delta på det sätt du vill: rita, skriva, klippa, klistra eller bara prata. Collaget är en del av studeranden i samhällspedagogi Mona Kuusistos examensarbete.</p><p><b>Knappstation </b><br>På knappstationen kan du designa och göra din egen knapp. Du kan rita, skriva eller förverkliga din idé och skapa knappen lugnt  i egen takt. Stationen arrangeras av Autismförbundet PAUT ry.</p><p>En representant från Autism Finland rf. finns också på plats – du kan stanna till för att prata och få expertråd på ett lågt tröskelnivå.</p><p>Välkomna!</p>",
                "en": "<p>Senses Open is a dedicated private event for families with autism spectrum disorder, during which there will be no other activities at Annantalo.</p><p>The day’s programme was designed from an autism-friendly perspective. Every child should arrive and participate in the events in the company of an adult. The event has no age restrictions. The event is free of charge.</p><p>Click here to register: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Register now!</b></a></p><p>Before the event, we will send arrival instructions to Annantalo by email. Upon arrival, guides from the Autism Foundation Finland will welcome you in the main lobby of Annantalo. A quiet room will be available during the event for rest and calming down. <br> <br>Annantalo’s Café Napero will be open throughout the event. You can purchase sensory-friendly lunch, coffee, as well as sweet and savoury treats if you wish.</p><p>The event will be held in Finnish. People speaking other languages are also warmly welcome.</p><p>The event is organised in cooperation between the Annantalo Arts Centre for Children and Young People, Autism Finland, Autism Foundation Finland and the Autism Association of Greater Helsinki Area PAUT.</p><p>Check out the program below! <br> <br><b>Performances:</b></p><p><b>Music Theatre Performance –  Hinni the Mouse</b><br>at 1:30 pm and 3:00 pm <br>Tuuli Paasolainen brings an interactive and inspiring music theatre performance that delights audiences of all ages. This low-verbal performance is suitable for everyone, regardless of language or special needs. <br>Participation tickets available at the info desk during the event.</p><p><b>Performance – Mauno on Stage</b><br>at 2:15 pm <br>Mauno, 18, known from the Kirjolla series, brings music and meaning to the stage. During this performance, you’ll hear his own songs as well as cover songs. Between songs, Mauno shares his thoughts on neurodivergence — honestly from his own perspective. <br>Participation tickets available at the info desk during the event.</p><p><b>Workshops:</b><br>from 1:00 pm to 4:00 pm <br>You can drop by briefly or stay longer at the workshops.</p><p><b>Shadow Theatre -workshop</b><br>The space features a shadow theatre screen and colourful lights, inviting you to move and explore your own shadows. Changing colours and calm music set the mood. Facilitators: art educators Karoliina Helminen and Sari Tupamäki.</p><p><b>Sensory Path: Experience Through the Senses</b> <br>At the sensory path, you can pause to experience and explore the senses in different ways. Participate in whatever way feels right for you. The sensory path is organized by the Autism Association of Greater Helsinki Area PAUT.</p><p><b>Circus Workshop</b><br>Come and test hoop spinning, juggle with various props, balance on a balance board and twirl rhythmic ribbons. The workshop is led by social circus instructors from Circus Magenta.</p><p><b>The Painter’s Atelier</b><br>Welcome to explore artist Jenni Horto’s art exhibition! Let’s get inspired by Jenni’s works and experiment with chalk, lemon, and blueberry to create images. Facilitators: art educators Anne Rossi-Horto and Santtu Koivu.</p><p><b>Pop-Up Library</b><br>At the Helsinki City Library’s pop-up library, books on autism and neurodiversity are available to read and borrow for all ages. Reading nooks invite you to read and relax.</p><p><b>The Event of Wishes Collage</b><br>In this workshop, we talk about dreams and wishes and get to know each other. Together, we will create a shared Event of Wishes collage. Draw, write, cut, glue, or simply chat. The collage is part of community pedagogy student Mona Kuusisto’s thesis project.</p><p><b>Pin Badge Station</b><br>At the pin badge station, you can design and create your own pin badge at your own pace. Bring your own idea to life. The Pin Badge station is organized by Autism Association of Greater Helsinki Area PAUT.</p><p>An Autism Finland representative will be present at the event — feel free to stop by for a chat and friendly expert advice.</p><p>A warm welcome!</p>"
            },
            "name": {
                "fi": "Aistit avoinna 2026 – Autisminkirjon perheiden oma yksityinen tapahtuma",
                "sv": "Aistit avoinna 2026 – Med öppna sinnen 2026 – Ett privat evenemang för familjer med barn med autismspektrumtillstånd",
                "en": "Senses Open 2026 – A private event for families with autism"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67243/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67501",
            "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:30/?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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1644063,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-16T15:13:30.779982Z",
                    "last_modified_time": "2026-03-16T15:13:30.780001Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781608.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1644063/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-16T15:13:30.681865Z",
            "last_modified_time": "2026-03-20T01:13:49.200563Z",
            "date_published": null,
            "start_time": "2026-03-28T09:00:00Z",
            "end_time": "2026-03-28T12: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,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.",
                "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_",
                "en": "http://www.annantalo.fi/en/events/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Tunneduunarin kunniamerkki</b><br>Työpajassa valmistetaan väripapereista, metallikartongeista ja nauhoista askarrellen upea tunneduunarin arvomerkki. Onko se sinulle, vai haluatko antaa sen jollekulle toiselle, joka myös on ansioitunut tunnetaitotreenissä? Missä merkin saaja on onnistunut?</p><p>Työpaja liittyy Annantalon kahvilan Tunnemuskelit-kuvitusnäyttelyyn ja sen ohjaajana toimii kuvittaja Satu Kettunen.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p>",
                "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Tunneduunarin kunniamerkki",
                "sv": "Annantalon taidelauantai: Tunneduunarin kunniamerkki",
                "en": "Annantalon taidelauantai: Tunneduunarin kunniamerkki"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67501/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67874",
            "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: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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494508,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T12:13:34.698774Z",
                    "last_modified_time": "2026-01-16T12:13:34.698792Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780528.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494508/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-16T12:13:34.566073Z",
            "last_modified_time": "2026-03-20T01:13:44.704814Z",
            "date_published": null,
            "start_time": "2026-03-25T08:00:00Z",
            "end_time": "2026-03-25T10: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,
            "short_description": {
                "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!",
                "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!",
                "en": "In these imaginatively modified play environments, play gets to run wild!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F2DE43E96676EC188C1CEB4FBA129186/Taideleikit_leikin_oma_tila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F2DE43E96676EC188C1CEB4FBA129186/Konstlekar_en_egen_plats_for_lek",
                "en": "http://www.annantalo.fi/en/events/event/F2DE43E96676EC188C1CEB4FBA129186/Art_games_a_space_for_play"
            },
            "description": {
                "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin.</p><p>Aktiivisessa tilassa toimii lisäksi leikittäjä. Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen   <br>Aika: 10-12 (nonstop)  <br>Ikäryhmä: 0-3v<br>Kieli: suomi    <br>Maksuton    <br>Tila: kuvataide 1  ja Kahvila Napero</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>",
                "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen.  <br>Regi: Noora Puranen   <br>Tid: kl. 10–12 (non-stop)  <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>",
                "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen   <br>Time: 10.00–12.00 (non-stop)  <br>Age group: 0–3<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "name": {
                "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa",
                "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen",
                "en": "Art games – a space for play – Children aged 0–3 with an adult"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67874/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67943",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/",
                        "sv": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/",
                        "en": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179283/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T14:13:34.244884Z",
                    "last_modified_time": "2026-01-16T14:13:34.244901Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783707.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494521/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-16T14:13:34.152902Z",
            "last_modified_time": "2026-03-20T01:13:43.300345Z",
            "date_published": null,
            "start_time": "2026-03-22T13: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,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.annantalo.fi/en/events/event/6805928E17A208C5B4899098C5F16290/Helena_Krinal_Shapeshifter_Kujumuutja"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p><p>Liput: 6 € per henkilö</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months.</p><p>It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance.</p><p>Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festivalen",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67943/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67942",
            "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:32/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/",
                        "sv": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/",
                        "en": "https://www.lippu.fi/event/annantalo-bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-annantalo-21179256/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-16T14:13:33.871344Z",
                    "last_modified_time": "2026-01-16T14:13:33.871370Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_783706.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494520/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-16T14:13:33.756058Z",
            "last_modified_time": "2026-03-20T01:13:43.164479Z",
            "date_published": null,
            "start_time": "2026-03-22T11: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,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.annantalo.fi/en/events/event/666C0E4AA8259E524219AF294AAA9157/Helena_Krinal_Shapeshifter_Kujumuutja"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p><p>Liput: 6 € per henkilö</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months.</p><p>It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance.</p><p>Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festivalen",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo! Festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67942/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67959",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098313/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494438,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T14:13:01.978729Z",
                    "last_modified_time": "2026-01-09T14:13:01.978742Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779146.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494438/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-09T14:13:01.905516Z",
            "last_modified_time": "2026-03-20T01:13:42.788668Z",
            "date_published": null,
            "start_time": "2026-03-21T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä kaksikielisesti ruotsiksi ja suomeksi!",
                "sv": "Ett interaktivt dansverk om vattnets budskap tvåspråkigt på svenska och finska!",
                "en": "Interactive dance performance about the world of water bilangual in Swedish and Finnish!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Vattnet_viskar_suomi-ruotsi_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Vattnet_viskar_tvasprakigt_",
                "en": "http://www.vuotalo.fi/en/events/event/907FF8631FB0C8813460969B34E412DF/Ama_Kyei_Ama_Kyei_Waters_Whisper_bilangual_"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä kaksikielisesti ruotsiksi ja suomeksi!</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia. Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: ruotsi</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>",
                "sv": "<p>Ett interaktivt dansverk om vattnets budskap tvåspråkigt på svenska och finska!</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska/svenska/engelska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p>",
                "en": "<p>Interactive dance performance about the world of water bilangual in Swedish and Finnish!</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music.</p><p>Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.<br>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Swedish <br>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "name": {
                "fi": "Ama Kyei: Vattnet viskar (suomi-ruotsi) – Bravo!-festivaali",
                "sv": "Ama Kyei: Vattnet viskar (tvåspråkigt) – Bravo!-festivalen",
                "en": "Ama Kyei: Ama Kyei: Waters Whisper (bilangual) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67959/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67958",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098312/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6€",
                        "sv": "6€",
                        "en": "6€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494437,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-09T14:13:01.677370Z",
                    "last_modified_time": "2026-01-09T14:13:01.677382Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779145.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494437/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-09T14:13:01.587942Z",
            "last_modified_time": "2026-03-20T01:13:42.322357Z",
            "date_published": null,
            "start_time": "2026-03-21T13: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,
            "short_description": {
                "fi": "Interaktiivinen tanssiteos veden viesteistä!",
                "sv": "Ett interaktivt dansverk om vattnets budskap!",
                "en": "Interactive dance performance about the world of water!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Veden_kuiskaus_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Vattnet_viskar_",
                "en": "http://www.vuotalo.fi/en/events/event/A44D6F11922D59CB1D6D193B202B1A53/Ama_Kyei_Waters_Whisper"
            },
            "description": {
                "fi": "<p>Interaktiivinen tanssiteos veden viesteistä!</p><p>Mytologiasta ammentava teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Veden kuiskaus on interaktiivinen tanssiteos 3–7-vuotiaille lapsille ja erityislapsille ala-asteikään asti. Teos on saanut inspiraationsa vesitutkija M. Emoton kirjasta ”The hidden messages of water”, jossa tutkija kertoo, kuinka hänen tutkimuksissaan vesi muodosti kauniita jääkristalleja, kun se kuuli kauniita ja rohkaisevia sanoja, rukouksia tai musiikkia. Teoksen inspiraatioina ovat myös Mami Wata ja Vellamo. Mami Wata on Länsi-Afrikan veden jumalatar, joka muistuttaa meitä veden pyhästä ja elämää antavasta voimasta. Vellamo on suomalaisessa mytologiassa veden jumalatar. Teos kantaa jälkiä ghanalaisesta tarinankerrontaperinteestä, jossa taikuus ja tanssi ovat yleisiä viestintävälineitä.</p><p>Teoksen koreografin ja esiintyjän Kyein tanssitausta on katutansseissa sekä perinteisissä länsiafrikkalaisissa tansseissa. Kyei on opiskellut tanssia Tukholman taideyliopistossa (Ruotsi), Åsan kansanopistossa (Ruotsi) sekä École des sables´ssa (Senegal). Tämän lisäksi Kyei on opiskellut tanssia sosiaalisissa tanssikonteksteissa Ghanassa, Beninissä ja Brasiliassa.</p><p>Teoksen tanssi pohjautuu Kyein liikekieleen. Lavastuksen on toteuttanut monialainen taiteilija Wanda Holopainen. Lavastukseen kuuluu tekstiiliteos, joka on saanut inspiraationsa vesikristalleista sekä Mami Watan ja Vellamon mytologiasta. Teoksen musiikin ovat säveltäneet Sophia Mitiku, Saban Ramadani ja Diva Cruz. Teoksen on rahoittanut Konstnärsnämnden (Ruotsi).</p><p>Kesto n. 30 min.<br>Ikäsuositus: 3-7-v<br>Esityskieli: suomi / ruotsi / englanti</p><p>Koreografi, esiintyjä: Ama Kyei<br>Lavastus: Wanda Holopainen<br>Musiikki: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>",
                "sv": "<p>Ett interaktivt dansverk om vattnets budskap!</p><p>Verket är inspirerat av mytologi och bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Veden kuiskaus är ett interaktivt dansverk för barn i åldern 3–7 år och specialbarn upp till lågstadieåldern. Verket är inspirerat av boken ”The hidden messages of water” av vattenforskaren M. Emoto, där forskaren berättar hur vattnet i hans forskning bildade vackra iskristaller när det fick höra vackra och uppmuntrande ord, böner och musik. Verket är också inspirerat av Mami Wata och Vellamo. Mami Wata är en västafrikansk vattengudinna som påminner oss om vattnets heliga och livgivande kraft. Vellamo är vattengudinnan i den finska mytologin. Verket bär spår av en berättartradition från Ghana, där magi och dans är vanliga kommunikationsmedel.</p><p>Koreografen och artisten Kyei har en bakgrund inom streetdance och traditionella västafrikanska danser. Kyei har studerat dans vid Stockholms konstnärliga högskola (Sverige), Åsa Folkhögskola (Sverige) och École des sables (Senegal). Dessutom har Kyei studerat dans i sociala danssammanhang i Ghana, Benin och Brasilien.</p><p>Dansen är baserad på Kyeis rörelsespråk. Scenografin är skapad av den mångsidiga konstnären Wanda Holopainen. I scenografin ingår ett textilverk som är inspirerat av vattenkristaller och av myterna om Mami Wata och Vellamo. Musiken är komponerad av Sophia Mitiku, Saban Ramadani och Diva Cruz. Arbetet har finansierats av Konstnärsnämnden (Sverige).</p><p>Längd ca 30 min.<br>Åldersrekommendation: 3–7 år<br>Föreställningens språk: finska/svenska/engelska</p><p>Koreograf, artist: Ama Kyei<br>Iscensättning: Wanda Holopainen<br>Musik: Sophia Mitiku, Saban Ramadani och Diva Cruz</p>",
                "en": "<p>Interactive dance performance about the world of water!</p><p>Inspired by mythologies, Waters Whisper carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common.</p><p>Waters Whisper is a dance performance for 3-7 years old children and children with special needs up to elementary school. The performance is inspired by water researcher Emoto's book called \"The hidden messages of water`, in which he observed that water formed beautiful icecrystals when it heard beautiful and encouraging words, prayers, or music. Another source of inspiration for the work is Mami Wata, the water goddess with roots in West Africa, who reminds us of waters sacred and life giving power. The work carries traces of Ghanaian storytelling traditions, where magic and dance as means of communication are common. In the performance, dancer Kyei seeks a channel of communication with water through various dances, in collaboration with the audience.</p><p>The choreography and perfoming of the piece is done by Ama Kyei. Kyeis background is in dance traditions stemming from the African continent (adwoa, kete & kpanlogo) and diaspora (house, hip hop, salsa). Kyei has done her official dance studies in Western contemporary dance ( Stockholm Uniarts) and in street styles (Åsa folkhögskola). The dance language in the piece will stem from these dance traditions and from the dances of the children.</p><p>Scenography is done by multidisciplinary artist Wanda Holopainen. The scenography involves textile works inspired by mythologies of Mami wata.</p><p>Music of the piece is done by Sophia Mitiku, Saban Ramadani and Diva Cruz. The music is a blend of electronic music with traces of latin american percussion and soundscapes inspired by water and afrodiasporic ancestry.</p><p>Duration approx. 30 min<br>Age recommendation: 3-7-years<br>Language: Finnish / Swedish / English<br>Choreography, performer: Ama Kyei<br>Scenography: Wanda Holopainen<br>Music: Sophia Mitiku, Saban Ramadani ja Diva Cruz</p>"
            },
            "name": {
                "fi": "Ama Kyei: Veden kuiskaus – Bravo!-festivaali",
                "sv": "Ama Kyei: Vattnet viskar – Bravo!-festivalen",
                "en": "Ama Kyei: Waters Whisper – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67958/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67969",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494460,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:37.437194Z",
                    "last_modified_time": "2026-01-13T08:13:37.437211Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779147.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494460/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-13T08:13:37.342953Z",
            "last_modified_time": "2026-03-20T01:13:41.975664Z",
            "date_published": null,
            "start_time": "2026-03-21T10:00:00Z",
            "end_time": "2026-03-21T13: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,
            "short_description": {
                "fi": "Tule leikkimään kevät esiin!",
                "sv": "Kom och lek fram våren!",
                "en": "Come play with us to bring out the spring!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/ED6D4F88DA6510326FAF837F10EB58A8/Ilmiomaiset_kevatkarkelot",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/ED6D4F88DA6510326FAF837F10EB58A8/Fenomenala_varlekar",
                "en": "http://www.vuotalo.fi/en/events/event/ED6D4F88DA6510326FAF837F10EB58A8/Phenomenal_Spring_Fest"
            },
            "description": {
                "fi": "<p>Tule leikkimään kevät esiin!</p><p>Kevät puhkeaa kukkaan! Ilmiömäiset kevätkarkelot kutsuvat koko perheen viettämään päivää täynnä iloa, luovuutta ja yhteistä tekemistä.</p><p>Ohjelmassa on mm.<br>•\tTeatterileikkejä ja improvisaatiota: heittäydy mukaan ja päästä mielikuvitus valloilleen. <br>•\tKevättansseja ja pieniä esityksiä: nauti rytmistä, musiikista sekä Teatterikoulu ILMI Ö:n oppilaiden teatteriesityksistä.<br>•\tYhteisötaideteos \"Kevään kudelma\": luodaan yhdessä taideteos väreistä ja kevätmuistoista. <br>•\tKevääseen ja pääsiäiseen sopivaa askartelua koko perheelle!<br>Luvassa iloa, raikkaita yllätyksiä ja mukavia keväthetkiä. Tule sellaisena kuin olet ja tehdään tästä kevään hauskin päivä!</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Kom och lek fram våren!</p><p>Våren slår ut i blom! Fenomenala vårlekar bjuder in hela familjen till en dag fylld av glädje, kreativitet och gemensamma aktiviteter.</p><p>I programmet ingår bland annat<br>•\tTeaterlekar och improvisation: kasta dig in i leken och låt fantasin flöda. <br>•\tVårdans och små föreställningar: njut av rytm, musik och teaterföreställningar av Teatterikoulu ILMI Ö:s elever.<br>•\tSamhällskonstverket ”Kevään kudelma” (vårens väv): vi skapar tillsammans ett konstverk av färger och vårminnen. <br>•\tVår- och påskpyssel för hela familjen!</p><p>Här utlovas glädje, fräscha överraskningar och trevliga vårstunder. Kom som du är, vi gör dagen till vårens roligaste dag!</p><p>Fritt inträde</p>",
                "en": "<p>Come play with us to bring out the spring!</p><p>Spring is blooming! Phenomenal Spring Fest invites the whole family to spend a day full of fun, creativity and shared activities.</p><p>The programme includes activities such as:<br>•\tTheatre games and improvisation: immerse yourself in the games and let your imagination run wild. <br>•\tSpring dances and small performances: enjoy rhythm, music and theatre performances by students of Theatre School ILMI Ö.<br>•\tCommunity artwork Kevään kudelma (‘Spring Tapestry’): we will create an artwork together, featuring colours and memories of spring. <br>•\tSpring and Easter-themed arts and crafts for the whole family!</p><p>We will have fun, fresh surprises and pleasant spring moments. Come as you are, and let us make this the most fun day of the spring!</p><p>Free entry!</p>"
            },
            "name": {
                "fi": "Ilmiömäiset kevätkarkelot",
                "sv": "Fenomenala vårlekar",
                "en": "Phenomenal Spring Fest"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67969/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67499",
            "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:30/?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: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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494174,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-10T12:13:27.641592Z",
                    "last_modified_time": "2025-12-10T12:13:27.641607Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781606.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494174/?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-12-10T12:13:27.550583Z",
            "last_modified_time": "2026-03-20T01:13:41.870256Z",
            "date_published": null,
            "start_time": "2026-03-21T09:00:00Z",
            "end_time": "2026-03-21T12: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,
            "short_description": {
                "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.",
                "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.",
                "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalon_taidelauantai_Fragmentit_framille",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0A69CF3E4C62E3C642C84F140B53111B/Annegardens_konstlordagar_Fram_med_fragmenten",
                "en": "http://www.annantalo.fi/en/events/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalo_Art_Saturdays_Fragments_to_the_front"
            },
            "description": {
                "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b><br>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?<br>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>",
                "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>",
                "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>"
            },
            "name": {
                "fi": "Annantalon taidelauantai: Fragmentit framille",
                "sv": "Annegårdens konstlördagar: Fram med fragmenten",
                "en": "Annantalo Art Saturdays: Fragments to the front"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67499/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67603",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494083,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-04T13:12:59.794900Z",
                    "last_modified_time": "2025-12-04T13:12:59.794920Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782014.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494083/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2025-12-04T13:12:59.701404Z",
            "last_modified_time": "2026-03-20T01:13:41.311299Z",
            "date_published": null,
            "start_time": "2026-03-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.",
                "sv": "Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.",
                "en": "Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi",
                "en": "http://www.kanneltalo.fi/en/events/event/48CFFEFE00B3219757A9840AE424AA8A/Jazz_for_Kids_Max_Zenger_Antti_Ahoniemi"
            },
            "description": {
                "fi": "<p>Jazz for Kids -konsertteihin ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä volyymillä aulassa.</p><p>Mikko Hassinen Future Food Factory -yhtyeestä tutut muusikot, saksofonisti ja puupuhallinsoittaja Max Zenger sekä kontrabasisti Antti Ahoniemi, esittävät yhtyeen akustista ja hengittävää musiikkia. Sävellykset ovat Teosto-palkitun lyömäsoittajan Mikko Hassisen käsialaa ja kuvaavat hänen monimuotoista luontosuhdettaan. Tämän lisäksi kuullaan Zengerin ja Ahoniemen toisen yhtyeen, Jazzup!:in, niin ikään luonnon inspiroimia kappaleita.</p><p>Max Zenger on yksi maamme kysytyimmistä jazzmuusikoista. Omien yhtyeidensä lisäksi hän kuuluu UMO Helsinki Jazz Orchestran vakituiseen kokoonpanoon, toimii Porvoo Jazz Festivalin taiteellisena johtajana sekä pyörittää Flame Jazz Records -levy-yhtiötä. Antti Ahoniemi on puolestaan aktiivinen ja monipuolinen freelancemuusikko, joka on nuoresta iästään huolimatta ehtinyt esiintyä monien suomalaisen jazzin huippunimien, kuten Jukka Eskolan ja Timo Lassyn, kanssa sekä muun muassa Saimaa-yhtyeessä.</p><p>Tilaisuuden kesto on 45 min. Yhtye esiintyy noin 35 minuuttia, jonka jälkeen yleisö voi tervehtiä muusikoita ja soittimia.</p><p>Max Zenger – alttosaksofoni <br>Antti Ahoniemi – kontrabasso</p><p>Jazz for Kids on korkeatasoisten jazzkonserttien sarja, johon ovat tervetulleita kaikki vauvoista vaareihin! Ammattimuusikot esittävät omaa tuotantoaan lapsiystävällisellä äänenvoimakkuudella kulttuurikeskusten helposti saavutettavissa aulatiloissa.<br>Suomen Jazzliiton ja Helsingin kulttuurikeskusten Jazz for Kids -toimintamalli pohjautuu samannimiseen konserttisarjaan, jota on järjestetty Espoon kulttuurikeskuksessa vuodesta 2015 yhteistyössä Espoon musiikkiopiston pop/jazzlinja Ebelin kanssa. Konseptin kehittäjä on Espoon musiikkiopiston pop/jazzlinja Ebeli.</p><p>Vuonna 2026 tulee kuluneeksi 100 vuotta siitä, kun jazz symbolisesti rantautui Andania-laivan mukana Suomeen. Vuosi on siten historiallinen kotimaisen jazzin juhlavuosi: Jazz Suomi 100 -juhlavuosi. Juhlavuosi nostaa esiin kotimaista jazzia ja sen tekijöitä niin Suomessa kuin ulkomailla, ja juhlii jazzia osana suomalaista kulttuuriperintöä. Jazz Suomi 100 -kampanjaa koordinoi Suomen Jazzliitto.</p><p>Kesto 45 min<br>Vapaa pääsy<br>Paikka: Kahvilan stage</p>",
                "sv": "<p>Jazz for Kids-konserterna är öppna för alla, oavsett ålder! Professionella musiker framför sina egna verk med en barnvänlig volym i lobbyn.</p><p>Musiker kända från gruppen Mikko Hassinen Future Food Factory, saxofonisten och träblåsinstrumentmusikern Max Zenger samt kontrabasisten Antti Ahoniemi, framför bandets akustiska och levande musik. Tonsättningarna är av den Teosto-belönade slagverkaren Mikko Hassinen och beskriver hans mångsidiga relation till naturen. Dessutom får vi höra låtar av Zengers och Ahoniemis andra band, Jazzup!, som också är inspirerade av naturen.<br>Max Zenger är en av Finlands mest efterfrågade jazzmusiker. Utöver sina egna grupper hör han till UMO Helsinki Jazz Orchestras permanenta sammansättning, är konstnärlig ledare för Porvoo Jazz Festival och driver skivbolaget Flame Jazz Records. Antti Ahoniemi är en aktiv och mångsidig frilansmusiker som trots sin unga ålder har uppträtt med många av den finska jazzens toppnamn, som Jukka Eskola och Timo Lassy, och bland annat i gruppen Saimaa.<br>Evenemanget varar i 45 minuter. Bandet spelar i ca 35 minuter, varefter publiken kan hälsa på musikerna och instrumenten.<br>Max Zenger – altsaxofon <br>Antti Ahoniemi – kontrabas<br>Jazz for Kids är en serie jazzkonserter på hög nivå där alla åldrar är välkomna! Professionella musiker framför sin egen produktion med barnvänlig volym i kulturcentrens lättillgängliga lobbyutrymmen.</p><p>Suomen Jazzliittos och Helsingfors kulturcenters verksamhetsmodell Jazz for Kids baserar sig på en konsertserie med samma namn som har ordnats på kulturcentren i Esbo sedan 2015 i samarbete med pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto. Konceptet har utvecklats av pop-/jazzlinjen Ebeli vid Espoon musiikkiopisto.</p><p>År 2026 blir det 100 år sedan jazzen symboliskt landsteg i Finland med fartyget Andania. Året är alltså ett historiskt jubileumsår för den inhemska jazzen: Jubileumsåret Jazz Finland 100. Under jubileumsåret lyfter vi fram den finländska jazzen och dess artister både i Finland och utomlands samt firar jazzen som en del av det finländska kulturarvet. Kampanjen Jazz Suomi 100 samordnas av Suomen Jazzliitto.</p><p>Längd 45 min.<br>Fritt inträde<br>Plats: Café Stage</p>",
                "en": "<p>Jazz for Kids concerts welcome everyone from babies to grandparents! Professional musicians perform their own work at a child-friendly volume in the lobby.</p><p>Musicians familiar from Mikko Hassinen Future Food Factory, saxophonist and woodwind player Max Zenger and double bassist Antti Ahoniemi, will perform the band's acoustic and breathy music. The compositions are by Teosto-award-winning percussionist Mikko Hassinen and reflect his diverse relationship with nature. In addition to this, there will be songs inspired by nature by Zenger and Ahoniemi's other band, Jazzup!.<br>Max Zenger is one of the most sought-after jazz musicians in the country. In addition to his own ensembles, he is a permanent member of the UMO Helsinki Jazz Orchestra, artistic director of the Porvoo Jazz Festival and runs the Flame Jazz Records label. Antti Ahoniemi is an active and versatile freelance musician who, despite his young age, has performed with many of the top names in Finnish jazz, such as Jukka Eskola and Timo Lassy, and in Saimaa, among others.<br>The duration of the event is 45 minutes. The band will perform for about 35 minutes, after which the audience can greet the musicians and see the instruments.<br>Max Zenger – alto saxophone <br>Antti Ahoniemi – double bass<br>Jazz for Kids is a series of high-quality jazz concerts for everyone from babies to grandchildren! Professional musicians perform their work at child-friendly volumes in easily accessible lobbies in cultural centres.</p><p>The Jazz for Kids operating model of the Finnish Jazz Federation and City of Helsinki Cultural Centres is based on the concert series of the same name, which has been organised at the Espoo Cultural Centre since 2015 in cooperation with Espoo Music Institute's pop/jazz line Ebeli. The concept was developed by Ebeli, the pop/jazz line at Espoo Music Institute.</p><p>In 2026, it will be 100 years since jazz symbolically landed in Finland on the Andania ship. The year is, thus, a historic celebration of Finnish jazz: Jazz in Finland 100 centenary. The centenary will highlight Finnish jazz and its artists both in Finland and abroad, and celebrate jazz as part of the Finnish cultural heritage. The Jazz in Finland 100 campaign is coordinated by the Finnish Jazz Federation.</p><p>Duration 45 min<br>Free entry<br>Location: Café stage</p>"
            },
            "name": {
                "fi": "Jazz for Kids: Max Zenger & Antti Ahoniemi",
                "sv": "Jazz for Kids: Max Zenger & Antti Ahoniemi",
                "en": "Jazz for Kids: Max Zenger & Antti Ahoniemi"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67603/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68190",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1586925,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-03-10T10:13:00.166799Z",
                    "last_modified_time": "2026-03-10T10:13:00.166812Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786124.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1586925/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-03-10T10:13:00.036095Z",
            "last_modified_time": "2026-03-20T01:13:40.994705Z",
            "date_published": null,
            "start_time": "2026-03-20T14:00:00Z",
            "end_time": "2026-03-20T17: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,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.",
                "sv": "Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.",
                "en": "Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_kevaan_juhla",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_varens_fest",
                "en": "http://www.stoa.fi/en/events/event/3CBCCAE9A6B503E37DD47E9CDFE7A6ED/Nowruz_celebrating_spring"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa Stoaan! Juhlaa vietetään musiikin, tiedon ja yhteisen tekemisen merkeissä.</p><p>Nowruz on kevätpäiväntasauksen juhla ja iranilaisen kalenterin uusivuosi. Sitä on juhlittu yli 3000 vuoden ajan Iranissa sekä laajasti Keski-Aasiassa, Kaukasuksella, Mustanmeren alueella ja kurdien keskuudessa.</p><p><b>Klo 16–17.45 Luova askartelupaja aulassa</b><br>Lapsiperheiden askartelupajassa tehdään kevätaiheinen postikortti Nowruzin symboleista inspiroituen. Työpaja kutsuu osallistujat pohtimaan kevään, luonnon ja uuden alun teemoja rennon tekemisen kautta. Työpajan ohjaa Sadaf Yazdizadeh. <br> <br><b>Klo 16–17 Tutkija Jonas Maristo kirjastossa</b><br>Suomalainen tutkija Jonas Maristo pitää luennon Nowruzin historiasta. Luento esittelee juhlan pitkää historiaa, zarathustralaisia juuria, perinteistä juhlapöytää (sofre-ye haft sin) sekä Nowruzin viettoa eri puolilla maailmaa.<br> <br><b>Klo 18–19 Road Ensemble aulassa</b><br>Illan päättää Road Ensemble, joka yhdistelee iranilaiskansojen, kurdien ja afgaanien kansanmusiikkia. Yhtyeessä soittavat Fardin Abbasi (perkussiot, laulu), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, laulu, taiteellinen johtaja) sekä Mehrab (dombyra, laulu).<br> <br>Tilaisuus on maksuton ja avoin kaikille.</p>",
                "sv": "<p>Välkommen att fira vårens ankomst och Nowruz på Stoa! Festen firas med musik, information och gemensamma aktiviteter.</p><p>Nowruz är vårdagjämningens fest och den iranska kalenderns nyår. Den har firats i över 3 000 år i Iran och i stora delar av Centralasien, Kaukasus och Svartahavsregionen samt bland kurderna.</p><p><b>Kl. 16–17.45 Kreativ pysselverkstad i aulan</b><br>I pysselverkstaden för barnfamiljer får man göra ett vårligt vykort med inspiration från Nowruz symboler. Verkstaden bjuder in deltagarna att fundera kring våren, naturen och en ny början genom en avslappnad aktivitet. Verkstaden leds av Sadaf Yazdizadeh. <br> <br><b>Kl. 16–17 Forskaren Jonas Maristo på biblioteket</b><br>Den finländske forskaren Jonas Maristo håller en föreläsning om Nowruz historia. Föreläsningen berättar om högtidens långa historia, zarathustriska rötter och traditionella festbord (sofre-ye haft sin), samt hur Nowruz firas på olika håll i världen.<br> <br><b>Kl. 18–19 Road Ensemble i aulan</b><br>Kvällen avslutas med Road Ensemble, som kombinerar folkmusik från iranska folk, kurder och afghaner. I bandet spelar Fardin Abbasi (slagverk, sång), Sheida Sanati (bass tar/moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santour, sång, konstnärlig ledare) och Mehrab (dombyra, sång).<br> <br>Evenemanget är avgiftsfritt och öppet för alla.</p>",
                "en": "<p>Join us in celebrating the arrival of spring and Nowruz at Stoa! The event will feature music, information and shared activities.</p><p>Nowruz is the celebration of the spring equinox and the New Year in the Iranian calendar. It has been observed for more than 3,000 years in Iran and widely throughout Central Asia, the Caucasus, in the Black Sea area and among Kurds.</p><p><b>16.00–17.45 Creative crafts workshop in the lobby</b><br>Come to the crafts workshop for families with children and create a spring-themed postcard inspired by Nowruz symbols. The workshop encourages participants to think about the themes of spring, nature and new beginnings by participating in relaxed shared activities. The workshop is led by Sadaf Yazdizadeh.<br> <br><b>16.00–17.00 Lecture by researcher Jonas Maristo in the library</b><br>Finnish researcher Jonas Maristo will give a lecture on the history of Nowruz. The lecture will provide an overview of the long history of the celebration, its Zoroastrian roots, the traditional festive spread (Sofreh Haft Sin) as well as how Nowruz is observed around the world. <br> <br><b>18.00–19.00 Road Ensemble in the lobby</b><br>The evening will be closed by the Road Ensemble combining folk music by Iranian peoples, Kurds and Afghans. The line-up of the group includes Fardin Abbasi (percussion, vocals), Sheida Sanati (bass tar / moraj), Khashayar Eshkevari (kamancheh), Farshad Sanati (santur, vocals, artistic direction) and Mehrab (dombyra, vocals).<br> <br>The event is free of charge and open to all.</p>"
            },
            "name": {
                "fi": "Nowruz – kevään juhla",
                "sv": "Nowruz – vårens fest",
                "en": "Nowruz – celebrating spring"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67968",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098315/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494459,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T08:13:36.836781Z",
                    "last_modified_time": "2026-01-13T08:13:36.836796Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779245.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494459/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-13T08:13:36.732459Z",
            "last_modified_time": "2026-03-20T01:13:40.704196Z",
            "date_published": null,
            "start_time": "2026-03-20T09: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,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/18C3AEC0A871C0DB01C2409E86658ACA/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months. It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance. Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67968/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67967",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/",
                        "sv": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/",
                        "en": "https://www.lippu.fi/event/bravo-kansainvalinen-esittavan-taiteen-festivaali-lapsille-ja-nuorille-14-22-3-2026-vuotalo-21098314/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494458,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-13T07:13:36.536056Z",
                    "last_modified_time": "2026-01-13T07:13:36.536074Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_779244.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494458/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-13T07:13:36.358529Z",
            "last_modified_time": "2026-03-20T01:13:40.560090Z",
            "date_published": null,
            "start_time": "2026-03-20T07: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,
            "short_description": {
                "fi": "Vuorovaikutteinen esitys kaikkein pienimmille!",
                "sv": "En interaktiv show för de minsta!",
                "en": "An interactive dance performance for babies!"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja",
                "en": "http://www.vuotalo.fi/en/events/event/016AEB047CB948A245972436FE944E44/Helena_Krinal_Shapeshifter_Kujumuutja_Estonia_"
            },
            "description": {
                "fi": "<p>Vuorovaikutteinen esitys kaikkein pienimmille!</p><p>Shapeshifter on vuorovaikutteinen tanssiesitys kaikkein pienimmille! Lempeässä esityksessä tanssijan hahmo muuttaa alati muotoaan kiehtovilla tavoilla ja juhlistaa jokaista uutta olomuotoa yhdessä yleisön kanssa.</p><p>Esityksen jälkeen kaikki ovat tervetulleita tutustumaan näyttämöön ja rekvisiittaan tarkemmin.</p><p>Esityskieli: Sanaton<br>Kesto: Esityksen kesto 30 minuuttia, jonka jälkeen vapaata leikkiaikaa kaikenikäisille<br>Ikäsuositus: 6–18 kk aikuisen kanssa</p><p>Ohjaaja, esiintyjä: Helena Krinal<br>Mentori, dramaturgi: Birute Baneviciute (Lithuania)<br>Äänisuunnittelija: Liis Ring<br>Pukusuunnittelija: Tiina Pikas<br>Valokuvat: Eesi Raa Oreškin<br>Videokuvaus: Evelina Nõmme<br>Tuotanto: MTÜ Krinalmansour<br>Yhteistuotanto: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Estonian Theatre Award 2024 -ehdokas</p>",
                "sv": "<p>En interaktiv show för de minsta!</p><p>Shapeshifter är en interaktiv dansföreställning för de allra minsta! I denna milda föreställning förändrar dansaren sin form på ett fascinerande sätt och firar varje ny gestalt tillsammans med publiken.</p><p>Efter föreställningen är alla välkomna att ta en närmare titt på scenen och rekvisitan.</p><p>Föreställningens språk: Ordlöst<br>Längd: Föreställningens längd är 30 minuter, och därefter följer fri lek för alla åldrar<br>Åldersrekommendation: 6–18 månader med en vuxen</p><p>Regissör, artist: Helena Krinal<br>Mentor, dramaturg: Birute Baneviciute (Litauen)<br>Ljuddesigner: Alice Ring<br>Kostymdesigner: Tiina Pikas<br>Foton: Eesi Raa Oreškin<br>Videoinspelning Evelina Nõmme<br>Produktion: NGO Krinalmansour<br>Samproduktion: Dansema Dance Theatre (Litauen), Sareyyet Ramallah (Palestina)<br>Nominerad till Estonian Theatre Award 2024</p>",
                "en": "<p>An interactive dance performance for babies!</p><p>Shapeshifter is an interactive dance performance for a very young audience, for babies aged 6 months to 18 months. It is a poetic journey of a character who keeps changing its shape, evolving its being and celebrating each new shape while remembering the past.</p><p>The performance is interactive for the babies in the age group and welcomes all members of the audience to explore the stage and the props after the performance. Duration of the performance is 30 minutes, followed by unstructured play time on stage for all ages.</p><p>Director, performer: Helena Krinal<br>Mentor, dramaturgy: Birute Baneviciute (Lithuania)<br>Sound composer: Liis Ring<br>Costume designer: Tiina Pikas<br>Photographer: Eesi Raa Oreškin<br>Cinematographer: Evelina Nõmme<br>Production: MTÜ Krinalmansour<br>Co-production: Dansema Dance Theatre (Lithuania), Sareyyet Ramallah (Palestine)<br>Nominee of Estonian Theatre Award 2024</p>"
            },
            "name": {
                "fi": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "sv": "Helena Krinal: Shapeshifter / Kujumuutja – Bravo!-festivaali",
                "en": "Helena Krinal: Shapeshifter / Kujumuutja (Estonia) – Bravo!-festivaali"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67967/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67562",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-21076982",
                        "sv": "https://www.lippu.fi/event/name-21076982",
                        "en": "https://www.lippu.fi/event/name-21076982"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494307,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T10:13:56.964590Z",
                    "last_modified_time": "2025-12-23T10:13:56.964605Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781729.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494307/?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-12-23T10:13:56.821784Z",
            "last_modified_time": "2026-03-20T01:13:40.288723Z",
            "date_published": null,
            "start_time": "2026-03-19T15:30:00Z",
            "end_time": "2026-03-19T16:15:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!",
                "sv": "Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!",
                "en": "Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_",
                "en": "http://www.malmitalo.fi/en/events/event/0B3FCE3CDC9DF01953B70BEEBB163531/Claire_Parsons_Co_Dust_Ruotsi_"
            },
            "description": {
                "fi": "<p>Tanssi, miimi ja akrobatia kietoutuvat esityksessä, joka kertoo unelmista, muistoista ja vaihtoehtoisista todellisuuksista!</p><p>Onko huonekaluilla tunteita? Voiko pölyn nähdä?</p><p>Dust (suomeksi pöly) on fiktiivinen tarina, joka yhdistää leikkisästi muistoja, maagista realismia, pehmeää sirkusta ja akrobatiaa. Näyttämö on toisinaan aivan ylösalaisin kun kolme esiintyjää matkustaa läpi maailman, jossa jotakin erikoista on tapahtunut; esineet liikkuvat omillaan ja musiikki tanssii. Seikkailu etenee ihastuttavan oudoilla ja ihmeellisillä tavoilla.</p><p>Koreografia ja näyttämöllepano: Claire Parsons ja ensemble<br>Esiintyjät 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel</p><p>Skenografia: Anna Nyberg<br>Pukusuunnittelu ja ompelu: Matilda Hyttsten<br>Ompelu: Pia Gyll, Bitte Palm<br>Valosuunnittelu: Christian Farcher<br>Musiikki ja äänisuunnittelu: Mikael Svanevik<br>Hiukset, peruukit, naamiointi: Angelica Ekeberg, Theresia Frisk<br>Tuottaja: Lena Yngvesson<br>Valokuvaus: Linda Himsel<br>Video: Marc Davin</p><p>Kesto: n. 45 min<br>Ikäsuositus: 6+<br>Kieli: sanaton</p>",
                "sv": "<p>Dans, mim och akrobatik möts i en föreställning om drömmar, minnen och parallella verkligheter!</p><p>Puder är sammanhang, minnen, förnimmelser och påminnelser. Magisk realism möter sång, dans, kropp och påståenden. PUDER är en utflykt till en plats där rummet rör sig och rörelsen sjunger. Det oväntade får huvudrollen.</p><p>Puder undersöker parallella verkligheter i en lekpark där dans, mim, akrobatik och det däremellan möts. En föreställning inspirerad av den franske filosofen Gaston Bachelards idéer om drömmar och rumslighet.<br> <br>En scenkonstupplevelse för alla från 6 år.</p><p>Premiär 23 november 2023 på Lokstallarna i Karlshamn, i samarbete med Regionteatern Blekinge Kronoberg.<br>Ordlös</p><p>För alla från 6 år.</p>",
                "en": "<p>Dance, mime and acrobatics intertwine in a performance about dreams, memories and parallel realities!</p><p>Does furniture have feelings? Can you see the dust? Dust is a fictional tale in a playful mix of memory and tactility, magical realism, soft circus and acrobatics, in an upside and sometimes sideways viewed space. Three performers travel through a world where something has happened; objects move and music dances in an adventure that transfers in delightfully strange and wondrous ways.</p><p>A performance that challenges the fictional with a poetic truth or two, to see if this space is a true place, if furniture has feelings and if you can see the dust.</p><p>Premiere: 23 November 2023 at Lokstallarna, Karlshamn, in collaboration with Regionteatern Blekinge Kronoberg</p><p>Non-verbal<br>For everyone aged 6 and above!</p><p>Choreography & staging: Claire Parsons with ensemble<br>Performers 2024/2025: Mira Björkman, Viktor Gyllenberg, Simon Wiborn, Marula Bröckerhoff, Linn Ragnarsson, Matthes Speidel<br>Scenography: Anna Nyberg<br>Costumes and tailoring: Matilda Hyttsten<br>Tailoring: Pia Gyll, Bitte Palm<br>Lighting design: Christian Farcher<br>Music and sound design: Mikael Svanevik<br>Hair, wigs and makeup: Angelica Ekeberg, Theresia Frisk<br>Producer: Lena Yngvesson<br>Photo: Linda Himsel<br>Video: Marc Davin</p>"
            },
            "name": {
                "fi": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festivaali",
                "sv": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival",
                "en": "Claire Parsons Co: Dust (Ruotsi) – Bravo!-festival"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67562/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67806",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494383,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-05T15:13:10.503113Z",
                    "last_modified_time": "2026-01-05T15:13:10.503126Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782912.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494383/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2026-01-05T15:13:10.374740Z",
            "last_modified_time": "2026-03-20T01:13:39.010954Z",
            "date_published": null,
            "start_time": "2026-03-19T07: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,
            "short_description": {
                "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.",
                "sv": "Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.",
                "en": "Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Muumien_maailma",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_Mumintrollens_varld",
                "en": "http://www.stoa.fi/en/events/event/B89041295545A5DB5E3A8DE0D2388E6B/Skidikino_The_world_of_Moomins"
            },
            "description": {
                "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Keväällä 2026 nähdään rakastetun Muumiperheen seikkailuja restauroidun klassikko-nukkeanimaation muodossa. Maaliskuun Skidikinossa seurataan talvisia tarinoita, ja huhtikuussa ollaan jo keväisemmissä tunnelmissa.<br> <br>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti. <br> <br>ikäsuositus: Päiväkoti-ikäisille  <br>Paikka: teatterisali<br>Kesto n. 35-40 min  <br>Kieli: suomi  <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: Kultus.hel.fi 13.1. klo 10 alkaen.</p><p>Lisätiedot: hanna.westerholm@hel.fi</p>",
                "sv": "<p>Skidikino är en högkvalitativ stund av kortfilm för barn över 3 års ålder. Lämpar sig för daghemsgrupper eller för barn under skolåldern som vårdas hemma tillsammans med en förälder.</p><p>Våren 2026 får vi se den älskade muminfamiljens äventyr i form av en restaurerad klassisk dockanimation. På Skidikino i mars får vi ta del av vinterberättelser, och i april är det redan vårstämning.<br> <br>Till Skidikino hör Pikkukroko-läromedel, som kan laddas ner från Stoas webbplats. Biobesök är temat i det illustrerade materialet.</p><p>Åldersrekommendation: Barn i daghemsåldern  <br>Plats: teatersalen<br>Längd: cirka 35–40 min.  <br>Språk: finska  <br>Fri entré, obligatorisk anmälan för grupper: Kultus.hel.fi från 13.1 kl. 10.</p>",
                "en": "<p>Skidikino is a short movie event for children over the age of three. It is suitable for daycare groups and children under school age in home care with an adult accompanying them.</p><p>In spring 2026, the adventures of the beloved Moomin family will be presented in a restored classic puppet animation. In March, Skidikino will present winter stories, and in April, viewers will be treated to spring vibes.<br> <br>The Skidikino events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from the Stoa website. The illustrated material revolves around going to the cinema. <br> <br>Recommended age: For daycare-age children  <br>Location: theatre hall<br>Duration approx. 35–40 minutes  <br>Language: Finnish  <br>Free admission, registration required for groups: Kultus.hel.fi from 13 January from 10.00 onwards.</p>"
            },
            "name": {
                "fi": "Skidikino: Muumien maailma",
                "sv": "Skidikino: Mumintrollens värld",
                "en": "Skidikino: The world of Moomins"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67806/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}