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/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=23
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32397,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=24",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=22"
    },
    "data": [
        {
            "id": "kulke:68483",
            "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:348/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1821523,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:09.064115Z",
                    "last_modified_time": "2026-04-16T13:13:09.064130Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786029.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821523/?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-04-16T13:13:08.826942Z",
            "last_modified_time": "2026-04-22T11:14:03.877176Z",
            "date_published": null,
            "start_time": "2026-06-09T07: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,
            "provider": null,
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/27AF1F9BBC1F58DCED930BCEA36AC50F/Annantalo_s_summertime_music_playschools"
            },
            "name": {
                "fi": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68483/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68482",
            "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:348/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1821522,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:08.154349Z",
                    "last_modified_time": "2026-04-16T13:13:08.154370Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786028.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821522/?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-04-16T13:13:07.899025Z",
            "last_modified_time": "2026-04-22T11:14:03.583533Z",
            "date_published": null,
            "start_time": "2026-06-09T06: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,
            "provider": null,
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/AAA722D2DB8DF40F96B4C6E1F4A80035/Annantalo_s_summertime_music_playschools"
            },
            "name": {
                "fi": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68482/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68481",
            "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:348/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1821521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:06.931394Z",
                    "last_modified_time": "2026-04-16T13:13:06.931409Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786024.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821521/?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-04-16T13:13:06.729849Z",
            "last_modified_time": "2026-04-22T11:14:02.275760Z",
            "date_published": null,
            "start_time": "2026-06-02T07: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,
            "provider": null,
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/8923CF1215AE5E8BE7BF0815A4F7733A/Annantalo_s_summertime_music_playschools"
            },
            "name": {
                "fi": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68481/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68480",
            "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:348/?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: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": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1821520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-16T13:13:06.156812Z",
                    "last_modified_time": "2026-04-16T13:13:06.156827Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786023.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1821520/?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-04-16T13:13:05.907660Z",
            "last_modified_time": "2026-04-22T11:14:01.843572Z",
            "date_published": null,
            "start_time": "2026-06-02T06: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,
            "provider": null,
            "short_description": {
                "fi": "Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen."
            },
            "description": {
                "fi": "<p>Annantalon A-lavan Kesämuskarit kutsuvat laulamaan, leikkimään, liikkumaan ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskarit ovat suunnatut 0–7-vuotiaille, mutta kaikenikäiset ovat tervetulleita mukaan! Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaiken kieliset.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin. Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook ja Instagram-sivuilla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. Muskariin ovat tervetulleita sekä perheet että päiväkotiryhmät.</p><p>A-lava sijaitsee Annantalon takapihalla ja vaunut jätetään vaunuparkkiin.</p><p><b>Kesämuskarit 2026</b><br>ti 2.6. klo 9.30 ja 10.30<br>ti 9.6. klo 9.30 ja 10.30<br>ti 16.6. klo 9.30 ja 10.30</p><p>ti 11.8. klo 10.00 <br>ti 18.8. klo 10.00 <br>ti 25.8. klo 9.30 ja 10.30</p><p>Vapaa pääsy, ei ennakkoilmoittautumista<br>kesto 40 min</p>",
                "sv": "<p>Sommarmusiklekiset på Annegårdens A-scen bjuder in barnen att sjunga, leka, röra på sig och ramsa tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekiset riktar sig till barn i åldern 0–7 år, men alla åldrar är välkomna!</p><p><b>Tidtabell</b><br>Tisdag 2.6 kl. 9.30 och 10.30<br>Tisdag 9.6 kl. 9.30 och 10.30<br>Tisdag 16.6 kl. 9.30 och 10.30</p><p>Tisdag 11.8 kl. 10.00<br>Tisdag 18.8 kl. 10.00<br>Tisdag 25.8 kl. 9.30 och 10.30</p><p>A-scenen finns på Annegårdens bakgård, och barnvagnar kan lämnas på vagnparkeringen.</p>",
                "en": "<p>The Annantalo A stage summertime music playschools invite children to sing, play, move and enjoy nursery rhymes with music playschool teacher Tuuli Paasolainen.</p><p>The summertime music playschools are intended for ages 0–7, but all ages are welcome!</p><p><b>Summertime music playschools 2026</b><br>Tuesday 2 June at 9:30 and 10:30<br>Tuesday 9 June at 9:30 and 10:30<br>Tuesday 16 June at 9:30 and 10:30</p><p>Tuesday 11 August at 10:00<br>Tuesday 18 August at 10:00<br>Tuesday 25 August at 9:30 and 10:30</p><p>The A stage is located in the backyard of Annantalo, and you can leave your pram in a dedicated parking area.</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2CC386A38644A1CEB7434516AC9592FE/Annantalon_Kesamuskarit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/2CC386A38644A1CEB7434516AC9592FE/Annegardens_sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/2CC386A38644A1CEB7434516AC9592FE/Annantalo_s_summertime_music_playschools"
            },
            "name": {
                "fi": "Annantalon Kesämuskarit",
                "sv": "Annegårdens sommarmusiklekis",
                "en": "Annantalo’s summertime music playschools"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3jabbvi",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824224,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T09:06:08.295700Z",
                    "last_modified_time": "2026-04-22T09:06:08.295715Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ca687ba5-3e2e-4823-b676-7373d551d008.jpeg",
                    "name": "",
                    "cropping": "315,0,1125,810",
                    "photographer_name": "Espoon musiikkiopisto",
                    "alt_text": "Lapsia jousisoittiminen kanssa",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824224/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-22T09:08:13.742739Z",
            "last_modified_time": "2026-04-22T09:08:13.742755Z",
            "date_published": "2026-04-22T09:05:00Z",
            "start_time": "2026-05-26T13:30:00Z",
            "end_time": "2026-05-26T14:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Espoon musiikkiopisto"
            },
            "short_description": {
                "fi": "Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä."
            },
            "description": {
                "fi": "<p>Espoon musiikkiopiston jousikvartetit ja viulusolistit esiintyvät kirjastossa.</p><p>Esiintyjät:</p><ul><li>Arco-kvartetti ja Nauru-kvartetti</li><li>Ea Kauppila ja Unna Angervo, viulu</li></ul><p>Kuulemme Bachin, Mozartin, Beethovenin, Paganinin ja Tsaikovskin musiikkia lasten ja nuorten esittämänä. Tilaisuus sopii kaikille, tervetuloa!</p>"
            },
            "info_url": {
                "fi": "https://emo.fi/"
            },
            "name": {
                "fi": "Espoon musiikkiopiston jousikvartetit ja viulusolistit"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Kaija"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3jabbvi/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67595",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "sv": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/",
                        "en": "https://www.lippu.fi/event/malmijazz-jimi-tenor-band-malmitalo-20930018/"
                    },
                    "price": {
                        "fi": "15€/20€",
                        "sv": "15€/20€",
                        "en": "15€/20€"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494103,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-05T10:12:54.343688Z",
                    "last_modified_time": "2025-12-05T10:12:54.343708Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494103/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-05T10:12:54.241230Z",
            "last_modified_time": "2026-04-22T08:13:46.405190Z",
            "date_published": null,
            "start_time": "2026-04-23T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.",
                "sv": "Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.",
                "en": "The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk."
            },
            "description": {
                "fi": "<p>Kansainvälisesti arvostetun Jimi Tenorin musiikki puikkelehtii sujuvasti kokeellisesta rockista ja jazzista aina psykedeeliseen souliin ja funkyyn asti.</p><p>Jimi Tenor Band julkaisi taannoin ensimmäisen studioalbuminsa ”Selenites, Selenites!”. Levy äänitettiin pääosin Hampurissa keväällä 2025. Musiikillisesti ”Selenites, Selenites!” jatkaa afro-romanttis-kosmisella<br>linjalla.</p><p>Jimi Tenor Band on huippumuusikoista koostuva yhtye, jonka kokoonpano on seuraava:</p><p>Jimi Tenor – saksofoni, huilu, syntetisaattorit, laulu<br>Eeti Nieminen – rummut, perkussiot, laulu<br>Heikki Tuhkanen – pasuuna, tuuba, laulu<br>Lauri Kallio – kitara, basso, laulu</p><p>Kesto: 2 t, sis 20 min väliajan</p>",
                "sv": "<p>Den internationellt ansedda Jimi Tenors musik hoppar smidigt från experimentell rock och jazz fram till den psykedeliska soulen och funken.</p><p>Jimi Tenor Band är ett band med toppmusiker med följande sammansättning:<br>Jimi Tenor – saxofon, flöjt, syntetisator, sång<br>Eeti Nieminen – trummor, perkussion, sång <br>Heikki Tuhkanen – basun, tuba, sång <br>Lauri Kallio – gitarr, bas, sång</p>",
                "en": "<p>The agile music of the internationally renowned Jimi Tenor weaves its way around experimental rock and jazz all the way to psychedelic soul and funk.</p><p>Jimi Tenor Band consists of the following top musicians:<br>Jimi Tenor – saxophone, flute, synthesisers, vocals<br>Eeti Nieminen – drums, percussion, vocals <br>Heikki Tuhkanen – trombone, tuba, vocals <br>Lauri Kallio – guitar, bass, vocals</p>"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_",
                "en": "http://www.malmitalo.fi/en/events/event/CF432761FFCAA6CD8B3CC0D71CAFC74F/Jimi_Tenor_Band_"
            },
            "name": {
                "fi": "Jimi Tenor Band – MalmiJazz",
                "sv": "Jimi Tenor Band – MalmiJazz",
                "en": "Jimi Tenor Band – MalmiJazz"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67595/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:31738848-203e-f111-88b4-7ced8d4a0702",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869281"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:49.477568Z",
            "last_modified_time": "2026-04-22T07:58:49.477585Z",
            "date_published": "2026-04-22T07:53:10Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05: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": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "ALI 2 Kattotapahtuma + alitapahtumat"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat3466869280"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:43.898495Z",
            "last_modified_time": "2026-04-22T07:58:43.898510Z",
            "date_published": "2026-04-22T07:53:03Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05: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": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "ALI 1 Kattotapahtuma + alitapahtumat"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4",
            "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/yso:p1947/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=KATTO_Kattotapahtuma_alitapahtumat346686928"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:6ae14b44-203e-f111-88b4-70a8a57af1be/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:31738848-203e-f111-88b4-7ced8d4a0702/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/es/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:58:04.912274Z",
            "last_modified_time": "2026-04-22T07:58:04.912291Z",
            "date_published": "2026-04-22T07:52:51Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-24T05:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 10,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Tapahtuman järjestäjä"
            },
            "short_description": {
                "fi": "lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Pitkä kuvaus</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "KATTO Kattotapahtuma + alitapahtumat"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:0a26df6b-128c-47a6-8137-e0b24c745ae4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3isyvua",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824223,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-22T07:46:42.686218Z",
                    "last_modified_time": "2026-04-22T07:46:57.996074Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/0e89abe4-6887-4c1c-a350-eabd4e4d6451.png",
                    "name": "",
                    "cropping": "295,0,1705,1410",
                    "photographer_name": "",
                    "alt_text": "Vaaleansinisellä pohjalla värikkäitä viirejä, kirja, sekä tekstit: \"Satuhetki\" ja \"Lastenkulttuurin juhlaviikko\"",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824223/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:56:06.355656Z",
            "last_modified_time": "2026-04-22T07:56:06.355672Z",
            "date_published": null,
            "start_time": "2026-05-20T15:00:00Z",
            "end_time": "2026-05-20T21:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Satuhetki Stagella"
            },
            "description": {
                "fi": "<p>Yhtenä päivänä viidakkoon ilmestyy herkullisen näköinen eksoottinen hedelmä, jota kaikki norsut haluavat maistaa. Mutta miten hedelmän saisi alas puusta? </p><p>Tule kuulemaan satua yhteistyön riemukkaasta voimasta Ison Omenan kirjaston Stagelle 20.5. klo 18. Satuhetki sopii kaikenikäisille, satu luetaan suomeksi. </p>"
            },
            "info_url": null,
            "name": {
                "fi": "Satumainen satuhetki"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Stage"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3isyvua/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198",
            "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/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin2045592081"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [],
            "images": [
                {
                    "id": 1824220,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T07:47:37.455730Z",
                    "last_modified_time": "2026-04-22T07:47:37.455751Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc",
                    "name": "Helsinki-tunnus",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunki",
                    "alt_text": "Helsinki-tunnus",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:47:30.290316Z",
            "last_modified_time": "2026-04-22T07:47:38.719195Z",
            "date_published": "2026-04-22T05:21:46Z",
            "start_time": "2026-04-23T06:00:00Z",
            "end_time": "2026-04-23T07: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": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin - Alitapahtuma 2"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Annansali"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "jiiri:61e3343f-4613-4d4e-90d6-88fc65659661",
            "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/yso:p1235/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": {
                        "fi": "https://assets-eur.mkt.dynamics.com/0ceb02cd-84cb-f011-89f5-000d3ab41d52/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Kattotapahtuman_ja_alitapahtumien_julkaisu_Linked_Eventsiin204559208"
                    },
                    "price": {
                        "fi": "0"
                    }
                }
            ],
            "data_source": "jiiri",
            "publisher": "ahjo:u480400",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:a1e0b923-0b3e-f111-88b4-7ced8d4a0198/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1824218,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2026-04-22T07:46:43.196409Z",
                    "last_modified_time": "2026-04-22T07:46:43.196455Z",
                    "url": "https://assets-eur.mkt.dynamics.com/f61dce5f-f37b-ef11-ac1e-000d3a69df77/digitalassets/images/d902d635-da99-f011-b4cc-0022489f36bc",
                    "name": "Helsinki-tunnus",
                    "cropping": "",
                    "photographer_name": "Helsingin kaupunki",
                    "alt_text": "Helsinki-tunnus",
                    "data_source": "jiiri",
                    "publisher": "ahjo:u480400",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                }
            ],
            "created_time": "2026-04-22T07:46:45.385012Z",
            "last_modified_time": "2026-04-22T07:46:45.385036Z",
            "date_published": "2026-04-22T05:21:23Z",
            "start_time": "2026-04-23T05:00:00Z",
            "end_time": "2026-04-23T07:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 100,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "Helsingin kaupunki"
            },
            "short_description": {
                "fi": "Lyhyt kuvaus"
            },
            "description": {
                "fi": "<div><p>Tapahtuman kuvaus</p></div>"
            },
            "info_url": null,
            "name": {
                "fi": "Kattotapahtuman ja alitapahtumien julkaisu Linked Eventsiin"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Annansali"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:61e3343f-4613-4d4e-90d6-88fc65659661/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:21166416",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4066188/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166416/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166416/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/antigone-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21166416/?affiliate=ADV&language=en"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1494413,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-01-08T13:14:30.658671Z",
                    "last_modified_time": "2026-01-08T13:14:30.658685Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/3b/e7/antigone-tickets_493078_3911304_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494413/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-01-06T21:14:54.960188Z",
            "last_modified_time": "2026-04-21T23:15:04.593147Z",
            "date_published": null,
            "start_time": "2026-04-21T15: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,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Sofokles ANTIGONE Antigone on koneille ja ihmisäänelle läpisävelletty tragedia 14 näyttelijälle."
            },
            "description": {
                "fi": "<p>Sofokles<br><strong>ANTIGONE</strong></p><p>Antigone on koneille ja ihmisäänelle läpisävelletty tragedia 14 näyttelijälle. Tämä Sofokleen kirjoittama näytelmä kantaesitettiin Ateenassa noin vuonna 442 ennen ajanlaskun alkua.</p><p>Se on radikaali klassinen murhenäytelmä nuoresta radikaalista naisesta, joka kaikkea uhmaten valitsee sydämensä äänen ja nousee vallanpitäjän käskyä vastaan. Esitys on varoittava esimerkki siitä, mitä tapahtuu, kun vallanpitäjät ovat sokeita omalle lyhytnäköisyydelleen ja hyvälle hallitusohjelmalleen, ja miten itsestään selvinä pitämämme asiat, kuten ihmisoikeudet tai demokraattiset valtiot, voivat luhistua muutamassa sekunnissa.</p><p>Esitys on Helsingin Kaupunginteatterin ja Taideyliopiston Teatterikorkeakoulun yhteistuotanto.</p><p>Kirjailija: Sofokles<br>Suomentaja: Kirsti Simonsuuri<br>Ohjaus ja sovitus: Minna Harjuniemi<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Katariina Kirjavainen<br>Pukusuunnittelu: Laura Dammert<br>Valosuunnittelu: Kari Leppälä<br>Sävellys ja äänisuunnittelu: Emma Raunio<br>Naamioinnin suunnittelu: Henri Karjalainen</p><p>Rooleissa TeaKin opiskelijat: Olavi Angervo, Abdirahman Bile, Annika Junno, Eeli Jurvelin, Clara Kinnunen, Elisa Mattila, Adela Ogunbor, Venla Pulkkinen, Mawlawi Rahem, Alberto Rama, Pyry Rautiainen, Pyry Räty, Miriam Shange, Freddie Sukura</p>"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/antigone-4066188/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Antigone"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21166416/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:21069454",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4046960/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069454/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069454/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/somatic-sitcom-helsingin-kaupunginteatteri-studio-pasila-21069454/?affiliate=ADV&language=en"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1494143,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-09T00:15:02.573629Z",
                    "last_modified_time": "2025-12-09T00:15:02.573645Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/5d/be/somatic-sitcom-tickets_480661_3832956_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494143/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-12-09T00:15:02.464557Z",
            "last_modified_time": "2026-04-21T23:15:04.448121Z",
            "date_published": null,
            "start_time": "2026-04-21T15: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,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Anna Maria Häkkinen SOMATIC SITCOM Ystävykset painuvat yhä syvemmälle sohvaan."
            },
            "description": {
                "fi": "<p>Anna Maria Häkkinen<br><strong>SOMATIC SITCOM</strong></p><p>Ystävykset painuvat yhä syvemmälle sohvaan. Selkärankojen nivelvälit täyttyvät nesteestä.</p><p>Sitten ovikello soi.</p><p>Somatic Sitcom on esitys, joka paljastaa arkisten tilanteiden, tavaroiden ja tilojen koomisuuden. Se löytää runoutta pienistä eleistä: oven avauksesta, sohvalle vajoamisesta ja ystävysten välisistä katseista.</p><p>Tapahtumapaikkana on 90-luvun tilannekomedioista tuttu huone. Yhtäkkiä ovikello soi. Joku avaa oven. Toinen heittää takin naulakkoon. Näennäisesti merkityksettömät eleet kasvavat kiehtovaksi koreografiaksi, joka houkuttelee havainnoimaan arkielämän ihmeellisyyttä ja kummallisuutta.</p><p>Alaleuat käyvät raskaiksi ja raukeavat. Olkapäiden ja lonkkamaljojen pallonivelet alkavat hitaasti kääntyä auki. Yksi sohvan jaloista katkeaa.</p><p>Somatic Sitcom -esityksen taustalla on koreografi Anna Maria Häkkisen, näyttämösuunnittelija Erno Aaltosen ja dramaturgi Emil Santtu Uutun jaettu kiinnostus 1990-luvun klassisia tilannekomedioita kohtaan. Työryhmä purkaa aikakauden sitcom-sarjojen rytmejä, eleitä ja tunnelmia, ja siirtää ne hienovaraisesti osaksi nykytanssin ja ruumiillisen ilmaisun kieltä.</p><p>Kolmikko on työskennellyt aiemmin yhdessä teoksissa Phoenix – a deep relaxation serotonin release (2023), joka toteutettiin Taideyliopiston Teatterikorkeakoulun tanssin opiskelijoille, sekä Afterglow, low lingering slips of light (2023), joka sai ensiesityksensä New Yorkin Performa-biennaalissa.</p><p>Rooleissa: Hanna Ahti, Juha Jokela, Vappu Nalbantoglu, Esete Sutinen, Antti Timonen</p><p>Konsepti ja koreografia: Anna Maria Häkkinen<br>Konsepti sekä lavastus, valo- ja äänisuunnittelu: Erno Aaltonen<br>Dramaturgi: Emil Santtu Uuttu<br>Puvustus: Paula Ojala + työryhmä<br>Naamioinnin suunnittelu: Ronja Nylund<br>Tanssin ennakkotyö: Taru Aho<br>Asiantuntijavierailu kokemuksellisesta anatomiasta: Niina Hosiasluoma<br></p>"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/somatic-sitcom-4046960/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Somatic Sitcom Ensi-Ilta"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21069454/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:20858597",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-4010503/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858597/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858597/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/hildur-helsingin-kaupunginteatteri-arena-nayttamo-20858597/?affiliate=ADV&language=en"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 1491149,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-10-22T20:15:45.803353Z",
                    "last_modified_time": "2025-10-22T20:15:45.803370Z",
                    "url": "https://www.lippu.fi/obj/mam/finland/05/d2/hildur-tickets_457344_3678695_222x222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491149/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-10-22T20:16:01.834717Z",
            "last_modified_time": "2026-04-21T23:15:04.308732Z",
            "date_published": null,
            "start_time": "2026-04-21T15: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,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "short_description": {
                "fi": "Satu Rämö – Satu Rasila HILDUR Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio "
            },
            "description": {
                "fi": "<p>Satu Rämö – Satu Rasila<br><strong>HILDUR</strong></p><p>Satu Rämön kansainväliseen suosioon noussut dekkari-ilmiö saapuu Helsinkiin! Satu Rasilan dramatisoima aivan uusi teatteriversio Hildurista saa ensi-iltansa Arena-näyttämöllä 28. tammikuuta.</p><p>Näytelmä perustuu Hildur-dekkarisarjan ensimmäiseen ja samannimiseen osaan (WSOY 2022) ja tekee oikeutta Rämön menestysteoksen pohjoiselle mystiikalle – unohtamatta kutkuttavan jännittävän murhamysteerin pienimpiäkään käänteitä. Tulos on aitoon nordic blue -henkeen hengittävä teatteriteos, jossa Islannin karu kauneus ja ihmismielen syvyydet kohtaavat näyttämöllä.</p><p>Hildur kertoo rikosetsivä Hildur Rúnarsdóttirista (Elena Leeve) ja vie katsojat Islannin myyttisille Länsivuonoille, jossa Hildur selvittää kotikaupungissaan tapahtuneita murhia yhdessä suomalaiskollega Jakobin (Paavo Kinnunen) kanssa. Traumojensa kanssa taisteleva Hildur ja menneisyyttään pakeneva Jakob joutuvat keskelle omituista rikosvyyhtiä, joka kytkeytyy järisyttävästi Hildurin omaan lapsuuteen.</p><p>Hildur kutoo katsojan tiukasti mukaan tihenevään jännitykseen, kun menestysdekkari herää näyttämöllä henkiin. Arena-näyttämö on osoittanut paikkansa maan ykkösdekkarinäyttämönä, jossa myös Hildurin tiivistunnelmainen tarina pääsee oikeuksiinsa ja asettuu komeasti viime vuosien Agatha Christie -dekkarisovitustemme joukkoon.</p><p>Rooleissa: Elena Leeve, Paavo Kinnunen, Sari Haapamäki,<br>Sanna-June Hyde, Linda Hämäläinen, Unto Nuora,<br>Jari Pehkonen, Ursula Salo, Mauno Terävä</p><p>Esitysoikeuksien valvoja: Agency North<br>Kirjailija: Satu Rämö<br>Dramatisointi: Satu Rasila<br>Ohjaus: Tuomas Parkkinen<br>Dramaturgi: Ari-Pekka Lahti<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Elina Kolehmainen<br>Valo- ja videosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Äänisuunnittelu: Eradj Nazimov<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Valosuunnittelu: Petteri Heiskanen<br>Videosuunnittelu: Toni Haaranen<br>Läheisyyskoreografi: Johanna Elovaara<br></p>"
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/hildur-4010503/?affiliate=ADV&language=en"
            },
            "name": {
                "fi": "Hildur"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Arena-näyttämö, Hämeentie 2"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20858597/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3bjhexm",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T14:38:01.401296Z",
                    "last_modified_time": "2026-04-21T14:38:01.401401Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/637a7b87-95ed-428e-9c01-2ae9840b5b29.jpg",
                    "name": "Memories around coffee",
                    "cropping": "329,0,1916,1587",
                    "photographer_name": "Zeynep Sahin-Avci",
                    "alt_text": "Kahvipöytä, jolla erilaisia elementtejä. Herkkuja, kahvikuppeja ja lintuja.",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T14:44:04.542543Z",
            "last_modified_time": "2026-04-21T14:44:04.542560Z",
            "date_published": "2016-04-21T14:55:00Z",
            "start_time": "2026-05-17T08:30:00Z",
            "end_time": "2026-05-30T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin, kunnes palaset loksahtivat paikoilleen orgaanisesti.",
                "sv": "Det började när jag märkte att jag saknade kaffestunder med familj och vänner efter att ha flyttat långt ifrån. Jag målade tills bitarna föll samman organiskt.",
                "en": "It began when I found myself missing coffee moments with family and close friends after moving far away. I painted until the pieces came together organically."
            },
            "description": {
                "fi": "<p>Olen työskennellyt tämän taidenäyttelyn parissa lähes vuoden. Se alkoi, kun huomasin kaipaavani kahvihetkiä perheeni ja läheisten ystävieni kanssa muutettuani kauas heistä. Maalasin yhden teoksen ja sitten tunsin, että voisin tehdä paremmin. Niinpä maalasin yhä uudelleen ja uudelleen, kunnes palaset loksahtivat paikoilleen orgaanisesti.</p>",
                "sv": "<p>Jag har arbetat med den här konstutställningen i nästan ett år. Det började när jag märkte att jag saknade kaffestunder med min familj och nära vänner efter att ha flyttat långt ifrån dem. Jag målade en komposition och kände sedan att jag kunde göra bättre. Så jag målade om och om igen, tills bitarna föll samman organiskt.</p>",
                "en": "<p>I have been working on this art exhibition for almost a year. It began when I found myself missing coffee moments with my family and close friends after moving far away from them. I painted one composition, then felt I could do better. So I painted again and again, until the pieces came together organically.</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Muistoja kahvin ympäriltä",
                "sv": "Minnen kring kaffe",
                "en": "Memories around coffee"
            },
            "provider_contact_info": null,
            "location_extra_info": {
                "fi": "Salonki",
                "sv": "Salonki rummet",
                "en": "Salonki room"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3bjhexm/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:67898",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1494318,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-12-23T12:14:03.929506Z",
                    "last_modified_time": "2025-12-23T12:14:03.929523Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777015.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494318/?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-23T12:14:03.781196Z",
            "last_modified_time": "2026-04-21T14:14:07.543638Z",
            "date_published": null,
            "start_time": "2026-05-19",
            "end_time": "2026-05-24",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!",
                "sv": "I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!",
                "en": "At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!"
            },
            "description": {
                "fi": "<p>Toukokuun lopussa Annantalossa juhlistetaan valtakunnallista lastenkulttuurin juhlaviikkoa. Juhlaviikolla tuomme lasten ja nuorten äänen kuuluviin ja juhlistamme heidän tekemäänsä taidetta!</p><p>Esitykset ovat seuraavasti:</p><p><b>Värisevät varpaat -tanssia ja kuvataidetta yhdistävä kurssi (9-17v): Ihanat rakkaat linnut</b> <br>Ti 19.5. klo 10 koululaisesitys, ilmoittautuminen: kultus.hel.fi <br>Ke 20.5. klo 17.30<br>Su 24.5. klo 13</p><p>Naamio piilottaa jotain ja samalla tuo jotain muuta esille. Viuhka kätkee jotain, mutta näyttää jotain muuta. Millainen tarina on piilossa sinun mielessäsi? Saatko sen esiin, kun katsot tätä tanssia? Monien kykyjen kirjo on tärkeä rikkaus. Erilaiset taidot, herkkyydet ja ajattelutavat ovat ryhmän voimavara. Kurssilla on huomioitu erityiset ja tavalliset tarpeet. Teoksen rekvisiitta on ryhmän itse valmistamaa. Osa siitä jää Piilossa! -näyttelyyn esitysten jälkeen.</p><p>Kesto noin 10 min<br>Esitys soveltuu kaiken ikäisille</p><p><b>Andromeda-teatterikurssi (10-12v): Muutoksia</b> <br>Ke 20.5. klo 10:30 koululaisesitys, ilmoittautuminen: kultus.hel.fi<br>To 21.5. klo 17.30<br>Su 24.5. klo 12</p><p>Millaisia muutoksia uusi koulu ja uudet ystävät voivat tuoda tullessaan? Onko itseään muutettava ystävyyden vuoksi? Entä mitä tapahtuu, kun metsänhenki ilmestyy koulun metsäretkelle? Muutoksia on löyhästi juonellinen esitys, jonka kohtaukset ovat saaneet innoituksensa Annantalon tämän vuoden Piilo-teemasta.</p><p>Kesto: 20 min<br>Ikäsuositus 7+</p><p><b>Komeetta-teatterikurssi (16-18v): Sota ja rauha</b> \t<br>Ke 20.5. klo 13 koululaisesitys, ilmoittautuminen: kultus.hel.fi\t<br>To 21.5. klo 18.30<br>La 23.5. klo 14</p><p>Sota saa nyt luvan odottaa, meillä on juhlat!</p><p>Komeetta esittää kohtauksia Pasi Lampelan kirjoittamasta näytelmästä Sota ja rauha, joka on dramatisointi Tolstoin romaanista. Valituissa kohtauksissa keskitytään henkilöiden siviilielämään. He yrittävät elää sodasta huolimatta unelmoiden ja rakastaen, mutta sota vaarallisena ja painostavana ajaa ihmiset rajalle. Vaikka unelmat rakkaudesta ja rauhasta murskautuvat jää jotain hyvää ja kirkasta jäljelle.</p><p>Komeetan näyttelijät ovat 17–19-vuotiaita ja heidän toiveenaan on ollut päästä esittämään roolihenkilöitä, joiden elämässä tapahtuu näytelmän aikana suuria käänteitä. Haluttiin harjoitella näytelmätekstin kautta syntyvää roolityötä ja esitystä.<br>Esityksen oikeuksia valvoo Nordic Drama Corner.</p><p>Kesto noin 55 min<br>Ikäsuositus: 12+</p><p><b>Dancehearts-tanssikurssi (7-17v): Kadonneet ystävät</b> <br>To 21.5. klo 10 koululaisesitys, ilmoittautuminen: kultus.hel.fi<br>Ti 19.5. klo 18.30<br>La 23.5. klo 13</p><p>Yksinäinen keiju etsii kadonneita ystäviään tähtien keskellä. Taikaversumin nurkassa ihmeellinen kaappi piilottaa sisäänsä ja puhaltaa ulos. Ovatko ystävät kadonneet kaappiin? Vai löytyykö sieltä uusia ystäviä?</p><p>Yhdessä tanssimalla ja meitä varten editoituun musiikkiin eläytymällä syntyi kohtauksia, joista tämä esitys rakentui. Taitojen kirjon jokainen kohta on ryhmällemme tärkeä. Vamma tai vammattomuus ei ole osallisuuden este. Sekä kokemus että kokemattomuus rikastavat yhteistä ilmaisua.</p><p>Ikäsuositus: 5+<br>Kesto noin 20 min<br>Ajoittain voimakasta musiikkia</p><p><b>Otava-teatterikurssi (13-15v): Piiloja ja paljastuksia</b> <br>Ke 20.5. klo 18.30<br>Su 24.5. klo 14</p><p>Piiloja ja paljastuksia on mosaiikkimainen esitys, jossa teatteriryhmä yrittää työstää esitystä Piilo-teemaan liittyen. Kohtauksien kautta avautuu kirjava kattaus tilanteita, joissa asiat välillä katoavat - välillä tulevat esille. Näemme kadonneita tavaroita, piilotettuja tunteita, valheita, salaisuuksia sekä täiden elämää.</p><p>Kesto: 30 min<br>Ikäsuositus: 10+</p><p><b>Linnunrata-teatterikurssi (7-9v): Salaisuuksia</b> <br>Ti 19.5. klo 17.30<br>La 23.5. klo 12</p><p>Tervetuloa Linnunradan mielikuvitusmaailmaan! Annantalon nuorimpien teatterilasten esitys on syntynyt piiloteeman inspiroimana. Mietittiin mikä voisi olla piilossa ja miksi? Toiveroolien ja leikin kautta syntyi kaksi tarinaa, joissa on salaisuuksia.</p><p>Kesto: 15 min<br>Esitys soveltuu kaiken ikäisille</p><p>Varaa lippusi oheisella lomakkeella: https://link.webropolsurveys.com/EP/CAC9F36076532395</p>",
                "sv": "<p>I slutet av maj firar Annegården den nationella barnkulturveckan. Under veckan lyfter vi fram barns och ungas röster och firar den konst som de skapar!</p><p>Föreställningar hålls enligt följande:</p><p><b>Vibranta tår – kurs i dans och bildkonst (9–17-åringar): Underbara kära fåglar</b> <br>Tis 19 maj kl. 10.00 skolföreställning, anmälan: kultus.hel.fi  <br>Ons 20.5. kl. 17.30  <br>Sön 24.5. kl. 13</p><p>Masken gömmer något och samtidigt framkallar den något annat. Fläkten döljer något, men visar något annat. Vilken sorts berättelse gömmer sig i ditt sinne? Kan du ta fram den när du ser den här dansen? Mångfalden av förmågor är en rikedom. Olika färdigheter, känslighet och tankesätt är en resurs inom gruppen. På kursen har vi beaktat särskilda och vanliga behov. Rekvisitan till  verket är gjord av gruppen själva. En del av den kommer att stanna I gömman -utställning efter föreställningarna.  <br>Längd: 10 min <br>Föreställningen passar alla åldrar</p><p><b>Andromeda–teaterkurs (10–12-åringar): Förändringar</b>\t <br>Ons 20.5. kl. 10:30 skolföreställning, anmälan: kultus.hel.fi <br>Tor 21.5. kl. 17.30  <br>Sön 24.5. kl. 12</p><p>Vilka förändringar kan en ny skola och nya vänner medföra? Måste du förändra dig själv för vänskapens skull? Och vad händer, när skogsanden dyker upp på skolans skogsresa? Förändringar är en löst planerad föreställning, vars scener är inspirerade av Annegårdens årets I gömman -tema.  <br>Längd: 20 min <br>Åldersrekommendation: 7+</p><p><b>Kometen–teaterkurs (16–18-åringar): Krig och fred</b><br>Ons 20.5. kl. 13 skolföreställning, anmälan: kultus.hel.fi <br>Tor 21.5. kl. 18.30  <br>Lör 23.5. kl. 14</p><p>Kriget får nu vänta, vi har en fest!</p><p>Kometen framför scener från Pasi Lampelas pjäs Krig och fred, som är en dramatisering av Tolstojs roman. De utvalda scenerna fokuserar på karaktärernas privatliv. De försöker leva drömmande och kärleksfullt trots kriget, men kriget, som farligt och förtryckande, driver människor till gränsen. Även om drömmar om kärlek och fred krossas, finns något gott och ljust kvar.</p><p>Skådespelarna i Kometen är 17–19 år gamla och har hoppats kunna spela karaktärer vars liv tar stora vändningar under pjäsen. Målet var att repetera rollarbetet och föreställningen som skapats genom pjäsens text. Rättigheterna till föreställningen förvaltas av Nordic Drama Corner. <br>Längd: 55 min <br>Åldersrekommendation: 12+\t <br> <br><b>Dancehearts–danskurs (7–17-åringar): Försvunna vänner</b><br>Tor 21.5. kl. 10 skolföreställning, anmälan: kultus.hel.fi<br>Tis 19.5. kl. 18.30 <br>Lör 23.5. kl. 13</p><p>En ensam fe söker efter sina försvunna vänner bland stjärnorna. I hörnet av magiversen gömmer sig ett mirakulöst skåp och blåser ut. Har vännerna försvunnit in i skåpet? Eller kommer du att hitta nya vänner där?</p><p>Genom att dansa tillsammans och att sätta oss in i musiken som redigerats åt oss, skapades scener som föreställningen byggdes på. Spektrumet av färdigheter inspirerar. Det spelar ingen roll om man har en funktionsnedsättning eller inte. Både erfarenhet och oerfarenhet berikar det gemensamma uttrycket. <br>Längd: 20 min<br>Åldersrekommendation: 5+\t   <br>Ibland hög musik</p><p><b>Karlavagnen–teaterkurs (13–15-åringar): Gömställen och avslöjanden</b><br>Ons 20.5. kl. 18.30 <br>Sön 24.5. kl. 14</p><p>Gömställen och avslöjanden är en mosaikliknande föreställning där en teatergrupp försöker arbeta på en föreställning relaterad till I gömman -temat. Genom scenerna öppnas en mångfald av situationer, där saker ibland försvinner, ibland kommer fram i ljuset. Vi ser försvunna föremål, gömma känslor, lögner, hemligheter och lössens liv.  <br>Längd: 30 min <br>Åldersrekommendation: 10+</p><p><b>Vintergatan–teaterkurs (7–9-åringar): Hemligheter</b><br>Tis 19.5. kl. 17.30 <br>Lör 23.5. kl. 12</p><p>Välkommen till Vintergatan’s fantasivärld! Annegårdens yngsta teaterbarnens föreställning har skapats med inspiration från temat “I gömman\". Vi funderade på vad som kunde finnas gömt och varför? Genom drömroller och lek föddes två berättelser, som har hemligheter.  <br>Längd: 15 min <br>Föreställningen passar alla åldrar</p><p>Anmälning till föreställningar: https://link.webropols</p>",
                "en": "<p>At the end of May, Annantalo will celebrate National Children's Culture Week. During the week, we will celebrate the art of children and young people!</p><p>Performances are held as follows:</p><p><b>Trembling Toes – a course in dance and visual arts (9–17-year-olds): Wonderful Dear Birds</b><br>Tue 19.5. at 10 school performance, registration: kultus.hel.fi<br>Wed 20.5. at 17.30<br>Sun 24.5. at 13</p><p>The mask hides something and at the same time it evokes something else. The fan hides something but shows something else. What kind of story is lurking in your mind? Can you bring it out when you see this dance? All kinds of abilities are valuable to our group. Different skillsets, sensitivities, and ways of thinking are an asset to this group. The props for the work are made by the group themselves. Some of them will stay in Hidden! exhibition after the performances. <br>Duration: 10 min<br>Suitable for all ages</p><p><b>Andromeda – theatre course (10–12-year-olds): Changes</b> <br>Wed 20 May at 10.30 school performance, registration: kultus.hel.fi <br>Thu 21.5. at 17.30  <br>Sun 24.5. at 12</p><p>What changes can a new school and new friends bring? Do you have to change yourself for the sake of friendship, and what happens when the forest spirit shows up on the school trip? Changes is a loosely scripted performance, the scenes of which are inspired by Annantalo's theme of this year: “Hidden”.  <br>Duration: 20 min <br>Age recommendation: 7+</p><p><b>Comet – theatre course (16–18-year-olds): War and Peace</b><br>Wed 20.5. at 13 school performance, registration: kultus.hel.fi <br>Thu 21.5. at 18.30  <br>Sat 23.5. at 14</p><p>The war will have to wait, we have a party! Comet performs scenes from Pasi Lampela's play War and Peace, which is a dramatization of Tolstoy's novel. The selected scenes focus on the characters' private lives. They try to live hopefully and lovingly despite the war, but the war, as dangerous and oppressive, drives people to the limit. Even if dreams of love and peace are shattered, something good and bright remains. The actors in Comet are 17–19 years old and have hoped to play characters whose lives take big turns during the play. The rights to the performance are managed by Nordic Drama Corner.<br>Duration: 55 min<br>Age recommendation: 12+</p><p><b>Dancehearts – dance course (7–17-year-olds): Lost Friends</b><br>Thu 21.5. at 10 school performance, registration: kultus.hel.fi <br>Tue 19.5. at 18:30<br>Sat 23.5. at 13</p><p>A lonely fairy searches for her missing friends among the stars. In the corner of the magiverse, a miraculous cabinet conceals within itself and blows out. Have the friends disappeared into the closet? Or will there be new friends to be found? The scenes that the performance was built on were created by dancing together and getting to know the music that was edited for us. The diversity of skills serves as inspiration for us. Disability or no disability – nothing prevents you from taking part. <br>Duration: 20 min<br>Age recommendation: 5+<br>Some loud music</p><p><b>The Big Dipper – theatre course (13–15-year-olds): Hiding Places and Revelations</b><br>Wed 20.5. at 18.30<br>Sun 24.5. at 14</p><p>Hiding Places and Revelations is a mosaic-like performance in which a theatre group tries to work on a performance related to the theme “Hidden\". Through the scenes, a multitude of situations unfold, and sometimes things disappear, sometimes come to light. We see lost objects, hidden feelings, lies, secrets and the life of lice.<br>Duration: 30 min<br>Age recommendation: 10+</p><p><b>Milky Way – theatre course: Secrets</b><br>Tue 19.5. at 17.30<br>Sat 23.5. at 12</p><p>Welcome to the fantasy world of the Milky Way! The performance of Annantalo's youngest theatre children has been created with inspiration from the theme \"Hidden\". We wondered what could be hidden and why? Through dream roles and play, two stories were born, both of which have secrets. <br>Duration: 15 min <br>The performance is suitable for all ages</p><p>Registration to performances: https://link.webropolsurveys.com/EP/CAC9F36076532395</p>"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9A5D093B348188A742A42EC13FDC160B/Annantalon_lastenkulttuurin_juhlaviikon_esitykset",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9A5D093B348188A742A42EC13FDC160B/Barnkulturens_festveckans_forestallningar",
                "en": "http://www.annantalo.fi/en/events/event/9A5D093B348188A742A42EC13FDC160B/Children_s_Culture_Week_performances"
            },
            "name": {
                "fi": "Annantalon lastenkulttuurin juhlaviikon esitykset",
                "sv": "Barnkulturens festveckans föreställningar",
                "en": "Children's Culture Week performances"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67898/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3a3s2oq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:61461/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T13:14:02.079943Z",
                    "last_modified_time": "2026-04-21T13:14:02.079960Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T13:32:18.980234Z",
            "last_modified_time": "2026-04-21T13:32:18.980251Z",
            "date_published": null,
            "start_time": "2026-05-04T15:00:00Z",
            "end_time": "2026-05-04T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "kirjasto",
                "sv": "biblioteket",
                "en": "library"
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!",
                "sv": "Välkommen att fira våren och vårt bibliotek!",
                "en": "Welcome to celebrate spring and your library!"
            },
            "description": {
                "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen.</p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto!</p>",
                "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare.&nbsp;</p><p>Välkommen, evenemanget arrangeras av biblioteket!&nbsp;</p>",
                "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener.&nbsp;</p><p><br></p><p>Welcome! This event is organized by the library!&nbsp;</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Juhlat Kalajärven kirjastolla! ",
                "sv": "Fest på Kalajärvi biblioteket! ",
                "en": "Party at the Kalajärvi Library! "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s2oq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:ago3a3s3gu",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15365/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aa4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1824216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T13:14:02.079943Z",
                    "last_modified_time": "2026-04-21T13:14:02.079960Z",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/a923b739-6a1b-49d2-b020-c34774c83ba3.png",
                    "name": "",
                    "cropping": "200,0,1000,800",
                    "photographer_name": "",
                    "alt_text": "kuvassa muusikot Lauri Iljin ja Tiina Tuuri",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T13:22:52.290179Z",
            "last_modified_time": "2026-04-21T13:22:52.290196Z",
            "date_published": null,
            "start_time": "2026-05-04T15:00:00Z",
            "end_time": "2026-05-04T16:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": {
                "fi": "kirjasto",
                "sv": "biblioteket",
                "en": "library"
            },
            "short_description": {
                "fi": "Tervetuloa juhlimaan kevättä ja omaa kirjastoa!",
                "sv": "Välkommen att fira våren och vårt bibliotek!",
                "en": "Welcome to celebrate spring and your library!"
            },
            "description": {
                "fi": "Juhlat kirjastolla!<p><strong>Ma 4.5. klo 18 | Kalajärven kirjasto</strong></p><p>Tervetuloa juhlimaan kevättä ja omaa kirjastoa!</p><p>Ohjelmassa:</p><p>• Kirjastossa toteutettavan uudistuksen julkistus</p><p>• Katse Espooseen -runokilpailun näyttelyn avaus</p><p>• Musiikkia: Duo Tiina ja Lauri</p><p>Tarjoilua 60 ensimmäiselle!</p><p><br></p><p><strong>Muusikot Tiina Tuuri ja Lauri Iljin esiintyvät! </strong>Duo Tiina ja Lauri<strong> </strong>on tunnelmallinen ja monipuolinen duo, jonka musiikissa yhdistyy tulkinta, herkkyys ja läsnäolo. Duo tuo musiikillaan Kalajärven kirjastoon tunnelman, joka jää jokaisen kuulijan mieleen. </p><p><br></p><p>Tervetuloa, tapahtuman järjestää kirjasto! </p>",
                "sv": "Fest på biblioteket!<p><strong>Mån 4 maj kl. 18 | Kalajärvi-biblioteket</strong></p><p><br></p><p>Välkommen att fira våren och vårt bibliotek!</p><p>På programmet:</p><p>• Presentation av bibliotekets kommande renovering</p><p>• Invigning av utställningen från poesitävlingen ”Katse Espooseen”</p><p>• Musik: Duo Tiina och Lauri</p><p><br></p><p>Förfriskningar till de 60 första!</p><p><strong>Musikerna Tiina Tuuri och Lauri Iljin uppträder! </strong>Duo Tiina och Lauri är en stämningsfull och mångsidig duo vars musik förenar tolkning, känslighet och närvaro. Med sin musik skapar duon en stämning i Kalajärvi-biblioteket som kommer att stanna kvar i minnet hos alla åhörare.&nbsp;</p><p>Välkommen, evenemanget arrangeras av biblioteket!&nbsp;</p>",
                "en": "Party at the library!<p><strong>Mon, May 4 at 6:00 p.m. | Kalajärvi Library</strong></p><p><br></p><p>Come celebrate spring and your library!</p><p>Program:</p><p>• Announcement of the library’s renovation</p><p>• Opening of the “Looking Toward Espoo” poetry contest exhibition</p><p>• Music: Duo Tiina and Lauri</p><p><br></p><p>Refreshments for the first 60 guests!</p><p><br></p><p><strong>Musicians Tiina Tuuri and Lauri Iljin will perform</strong>! Duo Tiina and Lauri is an atmospheric and versatile duo whose music combines interpretation, sensitivity, and presence. With their music, the duo brings an atmosphere to the Kalajärvi Library that will stay with every listener.&nbsp;</p><p><br></p><p>Welcome! This event is organized by the library!&nbsp;</p>"
            },
            "info_url": null,
            "name": {
                "fi": "Juhlat Kalajärven kirjastolla! ",
                "sv": "Fest på Kalajärvi biblioteket! ",
                "en": "Party at the Kalajärvi Library! "
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago3a3s3gu/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:68502",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "info_url": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 1824213,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2026-04-21T12:14:01.761699Z",
                    "last_modified_time": "2026-04-21T12:14:01.761713Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789989.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824213/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2026-04-21T12:14:01.639845Z",
            "last_modified_time": "2026-04-21T13:13:17.144462Z",
            "date_published": null,
            "start_time": "2026-06-03T15:00:00Z",
            "end_time": "2026-06-03T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider": null,
            "short_description": {
                "fi": "Tervetuloa Anne Roinisen Made in Vuosaari -teoksen avajaisiin 3.6.2026 Vuotalon pihalle!",
                "sv": "Välkommen till öppningsceremonin för Anne Roininens verk Made in Vuosaari på Nordhusets gård!",
                "en": "Welcome to the opening ceremony of Anne Roininen's Made in Vuosaari artwork in the Vuotalo courtyard!"
            },
            "description": {
                "fi": "<p>Tervetuloa Anne Roinisen Made in Vuosaari -teoksen avajaisiin 3.6.2026 Vuotalon pihalle!</p><p>Roininen ja Henriikka Ahtiainen järjestävät avajaisten kunniaksi teehetken. Teehetkessä käytetään asukkailta kerättyjä kuppeja, astioita ja kannuja, jolloin jo kertaalleen käyttäjien turhiksi toteamat esineet saavat uuden, merkityksellisen käyttötarkoituksen.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Henriikka Ahtiainen opettaa Urasenken perinteen mukaista japanilaista teetaidetta Suomenlinnan japanilaisella teehuoneella ja toimii tällä hetkellä Suomen Urasenke Tankokai yhdistys ry:n pääsihteerinä.</p>",
                "sv": "<p>Välkommen till öppningsceremonin för Anne Roininens verk Made in Vuosaari på Nordhusets gård!</p><p>Roininen och Henriikka Ahtiainen ordnar en tebjudning öppningsceremonin till ära. Vid tebjudningen används koppar, kärl och kannor som samlats från invånarna. Tack vare detta får föremål som användarna en gång konstaterat vara onödiga ett nytt, meningsfullt användningsändamål.<br> <br>Anne Roininen är en skulptör som ofta arbetar platsbundet och processbaserat. En viktig del av Roininens arbete är möten med människor, och verken är ofta också politiskt laddade.</p><p>Henriikka Ahtiainen undervisar i japansk tekonst enligt Urasenke-traditionen på det japanska tehuset på Sveaborg. För närvarande agerar hon som generalsekreterare för Suomen Chado Urasenke Tankokai yhdistys ry.</p>",
                "en": "<p>Welcome to the opening ceremony of Anne Roininen's Made in Vuosaari artwork in the Vuotalo courtyard!</p><p>Roininen and Henriikka Ahtiainen will organise a tea ceremony to celebrate the opening. The tea ceremony uses cups, dishes and teapots collected from residents, giving a new, meaningful purpose to items that have been found to be useless by their original users.<br> <br>Anne Roininen is a sculptor whose works are often site-specific and process-based. Encounters with people are an important part of Roininen's work, and the works are often politically charged.</p><p>Henriikka Ahtiainen teaches Japanese tea art in the Urasenke tradition at the Japanese tea room in Suomenlinna and is currently the secretary general of the Chado Urasenke Tankokai Finland Association.</p>"
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C040196A5CAB378A7D35EADD1A3ED7B1/Made_in_Vuosaari_-avajaiset",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/C040196A5CAB378A7D35EADD1A3ED7B1/Oppningsceremoni_for_Made_in_Vuosaari",
                "en": "http://www.vuotalo.fi/en/events/event/C040196A5CAB378A7D35EADD1A3ED7B1/Made_in_Vuosaari_opening_ceremony"
            },
            "name": {
                "fi": "Made in Vuosaari -avajaiset – Japanilainen teehetki",
                "sv": "Öppningsceremoni för Made in Vuosaari – Japansk tebjudning",
                "en": "Made in Vuosaari opening ceremony – Japanese tea ceremony"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68502/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}