Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 26806,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=177&registration__remaining_waiting_list_capacity__isnull=true",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=175&registration__remaining_waiting_list_capacity__isnull=true"
    },
    "data": [
        {
            "id": "kulke:65828",
            "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:33/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613828,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T14:13:22.790966Z",
                    "last_modified_time": "2025-04-25T14:13:22.790982Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767564.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613828/?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-04-25T14:13:22.738300Z",
            "last_modified_time": "2025-05-14T08:13:35.108269Z",
            "date_published": null,
            "start_time": "2025-06-10T07: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,
            "name": {
                "fi": "Kesämuskari",
                "sv": "Sommarmusiklekis",
                "en": "Summertime music playschool"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6684EF8363F72FD7383DA8ECC559CA95/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/6684EF8363F72FD7383DA8ECC559CA95/Sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/6684EF8363F72FD7383DA8ECC559CA95/Summertime_music_playschool"
            },
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</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>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>",
                "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>",
                "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65828/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65827",
            "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:33/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613827,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T14:13:22.555750Z",
                    "last_modified_time": "2025-04-25T14:13:22.555766Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767563.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613827/?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-04-25T14:13:22.488574Z",
            "last_modified_time": "2025-05-14T08:13:34.895167Z",
            "date_published": null,
            "start_time": "2025-06-10T06: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,
            "name": {
                "fi": "Kesämuskari",
                "sv": "Sommarmusiklekis",
                "en": "Summertime music playschool"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.",
                "sv": "Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.",
                "en": "Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Kesamuskari",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Sommarmusiklekis",
                "en": "http://www.annantalo.fi/en/events/event/C8A4F4BEE0149AD6F9157EBE45AA66D5/Summertime_music_playschool"
            },
            "description": {
                "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit toteutetaan suomeksi, mutta osallistumiseen ei tarvita suomenkielentaitoa. Musiikki kantaa ja yhdistää kaikenkielisiä.</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>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>",
                "sv": "<p>Annegårdens Sommarmusiklekis bjuder in till att sjunga, leka och läsa ramsor tillsammans med musiklekisläraren Tuuli Paasolainen.</p><p>Sommarmusiklekis är avsedd för 0–7-åringar, men hela familjen är välkommen med! Musiklekisen varar i 40 minuter och ordnas på A-scenen på Annegårdens bakgård.</p><p>Musiklekisen går på finska, men för deltagandet behövs inte kunskaper i finska. Musiken bär och förenar alla över språkgränser.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Ingen förhandsanmälan krävs. Fritt inträde. Både familjer och daghemsgrupper är välkomna till musiklekisen.<br>Varmt välkommen!</p><p>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.<br>Fritt inträde</p>",
                "en": "<p>Summertime music playschool (Kesämuskari) at Annantalo invites children to sing, play and rhyme together with music playschool teacher Tuuli Paasolainen.</p><p>Summertime music playschool is intended for children aged 0–7, but the whole family is welcome to join in! Music playschools have a duration of 40 minutes and they are held on the A-stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish, but you do not need to know Finnish to participate. Music unites and entertains us no matter the language we speak.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>No advance registration required. Free entry. Both families and daycare groups are welcome at the musical playschool.</p><p>We hope to see you there!</p><p>Language: Finnish <br>Recommended age: 0–7<br>Duration: 40 min.<br>Free entry</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65827/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65817",
            "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: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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613507,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T13:13:10.273944Z",
                    "last_modified_time": "2025-04-25T13:13:10.273961Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767558.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613507/?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-04-25T13:13:10.215189Z",
            "last_modified_time": "2025-05-14T08:13:32.830808Z",
            "date_published": null,
            "start_time": "2025-06-03T07: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,
            "name": {
                "fi": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Musiikkiteatteriesitys kaikenkielisille lapsille",
                "sv": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – För barn på alla språk",
                "en": "Hinni-Hiiren Omaoma-päivä / Musen Hinnis alldeles egna dag – Suitable for children of all languages"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!",
                "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!",
                "en": "Come to sing and learn about different instruments together with Hinni the Mouse!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag",
                "en": "http://www.annantalo.fi/en/events/event/F0646D90EEF394236AFA77EB3DFC692F/Hinni-Hiiren_Omaoma-paiva_Musen_Hinnis_alldeles_egna_dag"
            },
            "description": {
                "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</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>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>",
                "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.<br>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>",
                "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65817/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65816",
            "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: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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@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": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 613506,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-25T13:13:10.020122Z",
                    "last_modified_time": "2025-04-25T13:13:10.020139Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767557.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/613506/?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-04-25T13:13:09.943646Z",
            "last_modified_time": "2025-05-14T08:13:32.636457Z",
            "date_published": null,
            "start_time": "2025-06-03T06: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,
            "name": {
                "fi": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Musiikkiteatteriesitys kaikenkielisille lapsille",
                "sv": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – För barn på alla språk",
                "en": "Hinni-Hiiren Omaoma-päivä / Hinni the Mouse’s very own Day – Suitable for children of all languages"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!",
                "sv": "Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!",
                "en": "Come to sing and learn about different instruments together with Hinni the Mouse!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_",
                "en": "http://www.annantalo.fi/en/events/event/0B01C8CA135436BAD629C41150F5D17B/Hinni-Hiiren_Omaoma-paiva_Hinni_the_Mouse_s_very_own_Day_"
            },
            "description": {
                "fi": "<p>Tule laulamaan ja tutustumaan erilaisiin soittimiin yhdessä Hinni-Hiiren kanssa!</p><p>Annantalon Kesämuskareista tuttu Tuuli Paasolainen tuo Annantalon takapihan A-lavalle interaktiivisen ja innostavan musiikkiteatteriesityksen.</p><p>Esityksen aikana yleisö pääsee laulamaan, loruttelemaan ja liikkumaan yhdessä innokkaan Hinni-Hiiren kanssa. Taitava Hinni osaa soittaa myös poikkihuilua, kannelta sekä satumaisesti soivia rytmisoittimia. Esitys ilostuttaa ja innostaa musiikin pariin.</p><p>Esitys on vähäsanainen ja sopii kaikille, kielestä tai erityistarpeista riippumatta.</p><p>Klo 9.30 esityksessä lauletaan ja lorutellaan suomeksi ja englanniksi<br>Klo 10.30 esityksessä lauletaan ja lorutellaan suomeksi ja ruotsiksi</p><p>Molempia kieliä käytetään tasapuolisesti, eikä niitä tarvitse osata pysyäkseen Hinni-Hiiren matkassa mukana.</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>Esitykseen ovat tervetulleita kaikki lapsiperheet sekä isommat lapsiryhmät!</p><p>Ikäsuositus: 0–9-vuotiaat<br>Kesto: 40 min.<br>Vapaa pääsy</p><p><b>Tuuli Paasolaisen kesän 2025 musiikkielämykset A-lavalla:</b></p><p>ti 3.6. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p><p>ti 10.6. klo 9.30 ja 10.30 <br>Kesämuskari</p><p>ti 17.6. klo 9.30 ja 10.30<br>Kesämuskari</p><p>ti 12.8. klo 10 <br>Kesämuskari</p><p>ti 19.8. klo 10<br>Kesämuskari</p><p>ti 26.8. klo 10<br>Kesämuskari</p><p>ti 2.9. Musiikkiteatteriesitys: Hinni-Hiiren Omaoma-päivä <br>klo 9.30 (suomi-englanti)<br>klo 10.30 (suomi-ruotsi)</p>",
                "sv": "<p>Kom med och sjung och bekanta dig med olika musikinstrument tillsammans med Musen Hinni!</p><p>Tuuli Paasolainen, som är bekant från Annegårdens sommarmusiklekis, för med sig en interaktiv och inspirerande musikteaterföreställning till A-scenen på Annegården.</p><p>Under föreställningen kan publiken sjunga, jollra och röra på sig tillsammans med den entusiastiska Musen Hinni. Den skickliga Hinni kan också spela tvärflöjt, kantele och rytminstrument som ljuder sagolikt. Föreställningen gör åhörarna glada och inspirerar till musikens värld.</p><p>Föreställningen har få ord och passar alla, oavsett språk eller särskilda behov.</p><p>Under föreställningen kl. 9.30 sjunger och läser vi ramsor på finska och engelska.<br>Under föreställningen kl. 10.30 sjunger och läser vi ramsor på finska och svenska.</p><p>Båda språken används jämlikt och man behöver inte kunna språken för att hänga med Musen Hinni.</p><p>A-scenen är täckt, men det lönar sig att förbereda sig med kläder enligt väder. Det finns ett begränsat antal sittplatser inne under taket, så om du vill kan du ta med ett sittunderlag eller en filt. Eventuella annulleringar i sista minuten meddelas på Annegårdens Facebook- och Instagram-sidor.</p><p>Alla barnfamiljer och större barngrupper är välkomna till föreställningen!</p><p>Åldersrekommendation: 0–9-åringar<br>Längd: 40 min.<br>Fritt inträde</p><p>**</p><p><b>Tuuli Paasolainens musikupplevelser på A-scenen sommaren 2025:</b></p><p>juni:</p><p>tis 3.6 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p><p>tis 10.6 kl. 9.30 och 10.30 <br>Sommarmusiklekis</p><p>tis 17.6 kl. 9.30 och 10.30<br>Sommarmusiklekis</p><p>augusti-september:</p><p>tis 12.8 kl. 10 Sommarmusiklekis</p><p>tis 19.8 kl. 10<br>Sommarmusiklekis</p><p>tis 26.8 kl. 10<br>Sommarmusiklekis</p><p>tis 2.9 Musikteaterföreställning: Musen Hinnis alldeles egna dag <br>kl. 9.30 (finska-engelska)<br>kl. 10.30 (finska-svenska)</p>",
                "en": "<p>Come to sing and learn about different instruments together with Hinni the Mouse!</p><p>Tuuli Paasolainen, who hosts the Annantalo Summertime music playschool, brings an interactive and inspiring musical theatre experience to the A-stage in the Annantalo backyard.</p><p>During the performance, the audience will have the chance to sing, rhyme and move together with the energetic Hinni the Mouse. Hinni is very talented and can play the transverse flute, the kantele and percussions that make storybook sounds. The performance will bring joy and introduce children to music.</p><p>There are very few words in the performance, and it is suitable for anyone regardless of their language or special needs.</p><p>Songs and rhymes will be in Finnish and English in the performance at 9.30<br>Songs and rhymes will be in Finnish and Swedish in the performance at 10.30</p><p>Both languages are used equally, and you do not need to know them to be able to follow Hinni the Mouse’s journey.</p><p>The A-stage is covered, but you should prepare for rain. There is limited seating under the roof, so you can bring a seat pad or blanket with you, if you wish. Any last minute cancellations will be posted on the Annantalo Facebook and Instagram pages.</p><p>All families with children and larger groups of children are welcome!</p><p>Recommended age: 0–9<br>Duration: 40 min.<br>Free entry</p><p>**</p><p><b>Music experiences hosted by Tuuli Paasolainen on the A-stage in summer 2025:</b></p><p>June:</p><p>Tue 3 June Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p><p>Tue 10 June at 9.30 and 10.30 <br>Summertime music playschool</p><p>Tue 17 June at 9.30 and 10.30<br>Summertime music playschool</p><p>August–September:</p><p>Tue 12 August at 10 Summertime music playschool</p><p>Tue 19 August at 10.00<br>Summertime music playschool</p><p>Tue 26 August at 10.00<br>Summertime music playschool</p><p>Tue 2 September Musical theatre performance: Hinni the Mouse’s Very Own Day <br>9.30 (Finnish/English)<br>10.30 (Finnish/Swedish)</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65816/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19667090",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api"
            },
            "keywords": [],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3802089/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667090/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667090/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/red-nose-company-stroemsoe-helsingin-kaupunginteatteri-19667090/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235449,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:17:19.026779Z",
                    "last_modified_time": "2025-02-17T11:17:19.026797Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/9f/d9/hkt-stromso222-tickets_341909_2916967_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235449/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:19.001448Z",
            "last_modified_time": "2025-05-13T23:16:28.361810Z",
            "date_published": null,
            "start_time": "2025-05-13T15: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,
            "name": {
                "sv": "Strömsö"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Lilla Teatern"
            },
            "short_description": {
                "en": "Red Nose Company STRÖMSÖ • Premiär 13."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/red-nose-company-stroemsoe-3802089/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p> Superpositiivinen musiikkiteatteriesitys, jonka loppu on takuuvarmasti onnellinen!</p><p> Strömsö on hilpeä esitys kaikesta siitä, mikä on pielessä – elämässä, yhteiskunnassa ja fiktiossa. Mutta ei syytä huoleen! Nyt eskapismista tehdään taidetta: tarinoiden onnettomat loput korjataan, tuloksena uusi, uljas maailma, jossa kaikki menee niin kuin Strömsössä! Vai meneekö? Voidaanko taiteella todella muuttaa maailmaa, ja mikä oikeastaan saa kaipaamaan <em>Maahan jota ei ole</em> (Södergran).</p><p> Palkittu Red Nose Company on Suomen arvostettu kiertueteatteri, joka tekee nyt ensimmäisen ruotsinkielisen ensi-iltansa. Ohjauksesta vastaa Marielle Eklund-Vasama, jonka edellinen klovniesitys <em>Babylon</em> oli viiden tähden hitti.</p><p> Lavalla nähdään upeasti laulava duo Stella Laine – Marika Westerling, jotka debytoivat Red Nose Companyn riveissä.</p><p> Musiikin on säveltänyt Petri Tiainen, joka myös soittaa esityksissä. Käsikirjoitus lainaa vapaasti useammastakin tunnetusta klassikosta, ja ensimmäistä kertaa Red Nose Companyn 20-vuotisessa historiassa tullaan kuulemaan myös oopperaa laulavia klovneja!</p><p> Loppu hyvin – kaikki hyvin!</p><p> Esityskieli on ruotsi. Esitys tekstitetään suomeksi.</p>",
                "sv": "<p> • Premiär 13.5.2025 på Lilla Teatern, Georgsgatan 30<br>• Längd ca 2h inkl. paus<br>• Genre: Musikteater, komedi, satir, clownteater<br>• Föreställningsspråket är svenska, föreställningen textas till finska.</p><p> Strömsö är en festlig föreställning om allt som är fel i livet, samhället och fiktionen. Men ingen fara – på den här scenen gör man verklighetsflykten till en konstform; de olyckliga sluten korrigeras och en ny, skön värld skapas, där allt går som på Strömsö! Eller? Kan konsten faktiskt förändra verkligheten och vad ligger egentligen bakom längtan efter <em>Landet som icke är</em>? Prisbelönta Red Nose Company är en av Finlands mest uppskattade turnéteatrar som nu gör sin första svenskspråkiga premiär. </p><p> För regin står Marielle Eklund-Vasama, vars förra clownuppsättning <em>Babylon </em>var en 5-stjärnig fullträff.</p><p> På scen ser vi den skönsjungande duon Stella Laine – Marika Westerling, som båda gör sin clowndebut i Red Nose Company.</p><p> Musiken är komponerad och framförd av Petri Tiainen. Pjäsen lånar fritt från både en och annan känd klassiker, och för första gången i Red Nose Companys 20-åriga, nyskapande teaterhistoria får vi även höra clowner sjunga opera!</p><p> Slutet gott – allting gott!</p><p> Föreställningsspråket är svenska. Föreställningen textas till finska.</p><p> Produktionen har fått understöd av<strong> </strong>Alfred Kordelins stiftelse, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings stiftelse och Understödsstiftelsen för Arbetets Vänner</p><p><br></p><p> *******</p><p><br></p><p> Esityksen valmistamista ovat tukeneetAlfred Kordelinin säätiö, Konstsamfundet, Stiftelsen Tre Smeder, Svenska kulturfonden, Thurings Stiftelse sekä Understödsstiftelsen för Arbetets Vänner</p>",
                "en": "<p>Red Nose Company<br><strong>STRÖMSÖ</strong>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667090/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "lippupiste:19667030",
            "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-3802085/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667030/?affiliate=ADV&language=fi",
                        "sv": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667030/?affiliate=ADV&language=sv",
                        "en": "https://www.lippu.fi/event/dreamer-helsingin-kaupunginteatteri-19667030/?affiliate=ADV&language=en"
                    },
                    "description": {
                        "fi": "Tarkista hinta lippupalvelusta"
                    },
                    "price": null
                }
            ],
            "data_source": "lippupiste",
            "publisher": "ytj:1789232-4",
            "sub_events": [],
            "images": [
                {
                    "id": 235443,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-17T11:16:56.262449Z",
                    "last_modified_time": "2025-02-17T11:16:56.262465Z",
                    "name": "",
                    "url": "https://www.lippu.fi/obj/mam/finland/72/54/hkt-dreamer222-tickets_341904_2916919_222x222.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "lippupiste",
                    "publisher": "ytj:1789232-4",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/235443/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-02-17T11:17:18.853002Z",
            "last_modified_time": "2025-05-13T23:16:28.236221Z",
            "date_published": null,
            "start_time": "2025-05-13T15: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,
            "name": {
                "en": "Dreamer"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Helsingin Kaupunginteatteri"
            },
            "location_extra_info": {
                "fi": "Studio Pasila"
            },
            "short_description": {
                "fi": "Helsinki Dance Company & Annamari Keskinen & Ryan Mason DREAMER DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta."
            },
            "info_url": {
                "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=fi",
                "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=sv",
                "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/dreamer-3802085/?affiliate=ADV&language=en"
            },
            "description": {
                "fi": "<p>Helsinki Dance Company &amp; Annamari Keskinen &amp; Ryan Mason<br><strong>DREAMER</strong></p><p>DREAMER on monitaiteellinen tanssiteos näkyvän ja näkymättömän maailman vuorovaikutuksesta. Esitys kutsuu yleisön surrealistiseen odotushuoneeseen, jossa ihmiskehot, liike, musiikki ja tila sulautuvat yhteen.</p><p>Teoksen ilmaisuvoimaiset esiintyjät johdattavat yleisön matkalle alitajunnan syviin virtauksiin, missä piilotetut pelot, toiveet, ja nautinnot tulevat käsinkosketeltaviksi – lihaksi ja liikkeeksi. DREAMER tekee näkyväksi periksiantamattoman pyrkimyksemme tavoitella uskomatonta myös mahdottoman edessä.</p><p>Annamari Keskinen (1985, Suomi) ja Ryan Mason (1980, USA) ovat tulleet tunnetuksi omaäänisistä, vahvan fyysisistä ja usein elokuvamaisista kansainvälisesti arvostetuista näyttämöteoksistaan.</p><p>Rooleissa: Inka Tiitinen, Sofia Hilli, Mikko Paloniemi, Justus Pienmunne, Pekka Louhio</p><p>Koreografia: Annamari Keskinen ja Ryan Mason<br>Skenografia ja valosuunnittelu: William Iles<br>Pukusuunnittelu: Elina Kolehmainen<br>Sävellys ja äänisuunnittelu: Timo Tikka<br>Naamioinnin suunnittelu: Henri Karjalainen</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19667030/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk226254",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22637e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-13T11:57:04.359995Z",
                    "last_modified_time": "2025-05-13T11:57:04.360010Z",
                    "name": "Rakkaimmat kasetit!",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2813ec6f-67b4-4412-94d9-7112587f1aa6.png",
                    "cropping": "158,0,443,286",
                    "photographer_name": "",
                    "alt_text": "Kuvassa C-kasetteja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-13T11:57:25.015846Z",
            "last_modified_time": "2025-05-13T15:47:09.041994Z",
            "date_published": null,
            "start_time": "2025-06-12T14:00:00Z",
            "end_time": "2025-06-12T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "C-kasettiklubi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Ilmari ryhmätyötila"
            },
            "short_description": {
                "fi": "Kasettien kuuntelua nostalgisessa levyraatihengessä"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaiva kellarista rakkaat C-kasettisi, ja valitse valmiiksi, minkä biisin haluat soittaa. Kuuntelemme kappaleita nostalgisessa levyraatihengessä ja muistelemme yhdessä \"oi niitä aikoja\". Kasettisoitin tulee kirjastolta. </p><p>Ei ennakkoilmoittautumista! Tapaamme ryhmätyöhuone Ilmarissa, kirjaston 2. krs. Vetäjinä kirjastopedagogit Päivi ja Toni.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226254/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2263i4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22637e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-13T11:57:04.359995Z",
                    "last_modified_time": "2025-05-13T11:57:04.360010Z",
                    "name": "Rakkaimmat kasetit!",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2813ec6f-67b4-4412-94d9-7112587f1aa6.png",
                    "cropping": "158,0,443,286",
                    "photographer_name": "",
                    "alt_text": "Kuvassa C-kasetteja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-13T11:57:25.113589Z",
            "last_modified_time": "2025-05-13T15:47:08.987450Z",
            "date_published": null,
            "start_time": "2025-06-26T14:00:00Z",
            "end_time": "2025-06-26T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "C-kasettiklubi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Ilmari ryhmätyötila"
            },
            "short_description": {
                "fi": "Kasettien kuuntelua nostalgisessa levyraatihengessä"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaiva kellarista rakkaat C-kasettisi, ja valitse valmiiksi, minkä biisin haluat soittaa. Kuuntelemme kappaleita nostalgisessa levyraatihengessä ja muistelemme yhdessä \"oi niitä aikoja\". Kasettisoitin tulee kirjastolta. </p><p>Ei ennakkoilmoittautumista! Tapaamme ryhmätyöhuone Ilmarissa, kirjaston 2. krs. Vetäjinä kirjastopedagogit Päivi ja Toni.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263i4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk2263t4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22637e/?format=api"
            },
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [],
            "images": [
                {
                    "id": 1490333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-13T11:57:04.359995Z",
                    "last_modified_time": "2025-05-13T11:57:04.360010Z",
                    "name": "Rakkaimmat kasetit!",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2813ec6f-67b4-4412-94d9-7112587f1aa6.png",
                    "cropping": "158,0,443,286",
                    "photographer_name": "",
                    "alt_text": "Kuvassa C-kasetteja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-13T11:57:25.190902Z",
            "last_modified_time": "2025-05-13T15:47:08.935497Z",
            "date_published": null,
            "start_time": "2025-07-10T14:00:00Z",
            "end_time": "2025-07-10T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "C-kasettiklubi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Ilmari ryhmätyötila"
            },
            "short_description": {
                "fi": "Kasettien kuuntelua nostalgisessa levyraatihengessä"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaiva kellarista rakkaat C-kasettisi, ja valitse valmiiksi, minkä biisin haluat soittaa. Kuuntelemme kappaleita nostalgisessa levyraatihengessä ja muistelemme yhdessä \"oi niitä aikoja\". Kasettisoitin tulee kirjastolta. </p><p>Ei ennakkoilmoittautumista! Tapaamme ryhmätyöhuone Ilmarissa, kirjaston 2. krs. Vetäjinä kirjastopedagogit Päivi ja Toni.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263t4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk22637e",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk226254/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2263t4/?format=api"
                }
            ],
            "images": [
                {
                    "id": 1490333,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-13T11:57:04.359995Z",
                    "last_modified_time": "2025-05-13T11:57:04.360010Z",
                    "name": "Rakkaimmat kasetit!",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/2813ec6f-67b4-4412-94d9-7112587f1aa6.png",
                    "cropping": "158,0,443,286",
                    "photographer_name": "",
                    "alt_text": "Kuvassa C-kasetteja",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490333/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-13T11:57:24.415448Z",
            "last_modified_time": "2025-05-13T15:47:08.358073Z",
            "date_published": null,
            "start_time": "2025-06-12T14:00:00Z",
            "end_time": "2025-07-10T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "C-kasettiklubi"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": {
                "fi": "Ilmari ryhmätyötila"
            },
            "short_description": {
                "fi": "Kasettien kuuntelua nostalgisessa levyraatihengessä"
            },
            "info_url": null,
            "description": {
                "fi": "<p>Kaiva kellarista rakkaat C-kasettisi, ja valitse valmiiksi, minkä biisin haluat soittaa. Kuuntelemme kappaleita nostalgisessa levyraatihengessä ja muistelemme yhdessä \"oi niitä aikoja\". Kasettisoitin tulee kirjastolta. </p><p>Ei ennakkoilmoittautumista! Tapaamme ryhmätyöhuone Ilmarissa, kirjaston 2. krs. Vetäjinä kirjastopedagogit Päivi ja Toni.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22637e/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66203",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 699448,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-06T12:13:57.016556Z",
                    "last_modified_time": "2025-05-06T12:13:57.016574Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767281.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699448/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T12:13:56.911904Z",
            "last_modified_time": "2025-05-13T14:14:08.821897Z",
            "date_published": null,
            "start_time": "2025-05-30T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsingin Balalaikkaorkesteri – Open Stage",
                "sv": "Helsingin Balalaikkaorkesteri – Open Stage",
                "en": "Helsinki Balalaika Orchestra – Open Stage"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.",
                "sv": "Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.",
                "en": "Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/89CAD91ECA57F585AE245EF55B33E12C/Helsingin_Balalaikkaorkesteri",
                "en": "http://www.espanlava.fi/en/events/event/89CAD91ECA57F585AE245EF55B33E12C/Helsinki_Balalaika_Orchestra"
            },
            "description": {
                "fi": "<p>Helsingin Balalaikkaorkesteri on maailman toiseksi vanhin venäläisiä kansansoittimia soittava orkesteri.</p><p>Orkesteri on perustettu vuonna jo vuonna 1910. Orkesterin ohjelmistossa on lauluja eri maista, ja Espalla kuullaan esimerkiksi mustalaissävelmiä, ukrainalaisia kappaleita ja mahdollisesti jopa lattarirytmejä.</p><p>Orkesteria johtaa Gennadi Klykov ja laulusolistina toimii Heli Jormanainen.</p>",
                "sv": "<p>Helsingin Balalaikkaorkesteri är världens näst äldsta orkester som spelar ryska folkinstrument.</p><p>Orkestern grundades redan 1910.  I orkesterns program finns sånger från olika länder, och på Esplanadestraden får man lyssna på till exempel romska melodier, ukrainska låtar och eventuellt rentav latinorytmer.</p><p>Gennadi Klykov leder orkestern och Heli Jormanainen är sångsolist.</p>",
                "en": "<p>Helsinki Balalaika Orchestra is the world’s second oldest orchestra playing the Russian folk instruments, founded back in 1910.</p><p>The orchestra’s repertoire features songs from different countries, bringing Roma songs, Ukrainian compositions and maybe even Latin rhythms to the Espa Stage.</p><p>The orchestra’s conductor is Gennadi Klykov and the soloist is Heli Jormanainen.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66203/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66199",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 699444,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-06T12:13:55.345437Z",
                    "last_modified_time": "2025-05-06T12:13:55.345455Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764996.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/699444/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-06T12:13:55.239925Z",
            "last_modified_time": "2025-05-13T14:14:08.102090Z",
            "date_published": null,
            "start_time": "2025-05-28T11:00:00Z",
            "end_time": "2025-05-28T17:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Sibelius-lukion bändimaraton",
                "sv": "Sibelius-lukios bandmaraton",
                "en": "Sibelius-lukio Upper Secondary School’s band marathon"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Perinteisessä Sibelius-lukion Espan lavan bändimaratonissa esiintyy yli 50 koulun bändiä.",
                "sv": "I Sibelius-lukios traditionella bandmaraton på Esplanadestraden uppträder över 50 skolband.",
                "en": "The traditional band marathon by the Sibelius-lukio Upper Secondary School presents more than 50 school bands."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukion_bandimaraton",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukios_bandmaraton",
                "en": "http://www.espanlava.fi/en/events/event/DB57B9E368C03FFE68C5A5EC1276DF82/Sibelius-lukio_Upper_Secondary_School_s_band_marathon"
            },
            "description": {
                "fi": "<p>Perinteisessä Sibelius-lukion Espan lavan bändimaratonissa esiintyy yli 50 koulun bändiä.</p><p>Musiikkia kuullaan mambosta metalliin ja popista punkkiin. Tule ja hämmästy lahjakkaiden esiintyjien taitoa ja energiaa!</p>",
                "sv": "<p>I Sibelius-lukios traditionella bandmaraton på Esplanadestraden uppträder över 50 skolband.</p><p>Man kan lyssna på allt från mambo till metall och från pop till punk. Kom med för att häpna över kunnigheten och energin hos talangfulla uppträdare!</p>",
                "en": "<p>The traditional band marathon by the Sibelius-lukio Upper Secondary School presents more than 50 school bands.</p><p>They’re playing music from mambo to metal and from pop to punk. Prepare to be amazed by the skill and energy of these talented performers!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66194",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 691745,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T13:13:45.517124Z",
                    "last_modified_time": "2025-05-05T13:13:45.517144Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764953.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691745/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T13:13:45.448821Z",
            "last_modified_time": "2025-05-13T14:14:07.693728Z",
            "date_published": null,
            "start_time": "2025-05-27T09:00:00Z",
            "end_time": "2025-05-27T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kruununhaan yläasteen musiikkiluokat soi!",
                "sv": "Musikklasserna vid Högstadieskolan Kruununhaan yläasteen koulu klingar!",
                "en": "Kruununhaka Lower Secondary School’s music classes take the stage!"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kruununhaan yläasteen musiikkiluokkien perinteisessä Espan lavan konsertissa esiintyy kokoonpanoja luokkayhtyeistä bändikerhoihin.",
                "sv": "Sammansättningar med allt från klassgrupper till bandklubbar uppträder i den traditionella konserten på Esplanadestraden som arrangeras av musikklasserna vid Högstadieskolan Kruunuhaan yläasteen koulu.",
                "en": "The traditional Espa Stage concert of the Kruununhaka Lower Secondary School’s music classes features different ensembles from class bands to band clubs."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D3570EC838270E3998A443D555BC08F7/Kruununhaan_ylaasteen_musiikkiluokat_soi_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D3570EC838270E3998A443D555BC08F7/Musikklasserna_vid_Hogstadieskolan_Kruununhaan_ylaasteen_koulu_klingar_",
                "en": "http://www.espanlava.fi/en/events/event/D3570EC838270E3998A443D555BC08F7/Kruununhaka_Lower_Secondary_School_s_music_classes_take_the_stage_"
            },
            "description": {
                "fi": "<p>Kruununhaan yläasteen musiikkiluokkien perinteisessä Espan lavan konsertissa esiintyy kokoonpanoja luokkayhtyeistä bändikerhoihin.</p>",
                "sv": "<p>Sammansättningar med allt från klassgrupper till bandklubbar uppträder i den traditionella konserten på Esplanadestraden som arrangeras av musikklasserna vid Högstadieskolan Kruunuhaan yläasteen koulu.</p>",
                "en": "<p>The traditional Espa Stage concert of the Kruununhaka Lower Secondary School’s music classes features different ensembles from class bands to band clubs.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66194/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65296",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/",
                        "sv": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/",
                        "en": "https://www.lippu.fi/artist/savoy-teatteri/zapiski-sumasshedsikh-3799260/"
                    },
                    "description": null,
                    "price": {
                        "fi": "48-129 €",
                        "sv": "48-129 €",
                        "en": "48-129 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153467,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-16T15:14:14.433548Z",
                    "last_modified_time": "2024-12-16T15:14:14.433566Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764262.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153467/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-16T15:14:14.364668Z",
            "last_modified_time": "2025-05-13T14:14:04.719529Z",
            "date_published": null,
            "start_time": "2025-05-14T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "DIARY of Madmen / Zapiski sumasshédšikh – Loppuunmyyty! / Sold out!",
                "sv": "DIARY of Madmen / Zapiski sumasshédšikh – Slutsåld",
                "en": "DIARY of Madmen / Zapiski sumasshédšikh – Sold out!"
            },
            "provider_contact_info": null,
            "provider": {
                "fi": "Aftersunset Oy",
                "sv": "Aftersunset Oy",
                "en": "Aftersunset Oy"
            },
            "location_extra_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh",
                "en": "http://www.savoyteatteri.fi/en/events/event/9F4F227FEA25A6C790B14363FEC180C0/DIARY_of_Madmen_Zapiski_sumassh_d_ikh"
            },
            "description": {
                "fi": "<p>DIARY of Madmen on Dmitry Krymovin uusi esitys, jossa esiintyvät menestyneet näyttelijät Chulpan Khamatova ja Maxim Sukhanov. Tämä on ohjaaja-taitelija Krymovin ensimmäinen esitys venäjäksi, ja se on sovitettu maanpaossa. Khamatova ja Sukhanov esiintyivät yhdessä melkein 30 vuotta sitten Valery Todorovskyn elokuvassa The Land of the Deaf.</p><p>Krymovin työt tunnetaan niiden erityisestä luovasta, eri tyylejä ja genrejä sekoittavasta kielestä. Uusi tuotanto perustuu hänen omaan tekstiinsä, joka on unenomainen kertomus ihmisistä tuuliajolla ajassa ja avaruudessa. DIARY of Madmenin päähenkilöinä on kaksi hahmoa, jotka joutuvat tahtomattaan uusiin ja haastaviin elämäntilanteisiin. He etsivät tarkoitustaan vieraassa maassa, kun heidän entiset elämänsä keskeytetään.</p><p>Esityksessä mukana<br>Rooleissa: Chulpan Khamatova ja Maxim Sukhanov<br>Konsepti: sovitus ja ohjaus: Dmitry Krymov<br>Lavastus: Dmitry Krymov ja Pyotr Voznesensky<br>Videosuunnittelu: Pyotr Voznesensky<br>Pukusuunnittelu: Tatyana Dolmatovskaya<br>Valaistussuunnittelu: Oskar Paulinsh<br>Koreografia: Anna Abalikhina<br>Ohjaaja ja tuottaja: Inna Krymova</p><p>Ovet aukeavat: 18.00<br>Näytös alkaa: 19.00</p><p>Kesto: 1 tunti 40 minuuttia, ei väliaikaa</p><p>Ikäsuositus: 12</p><p>Kieli: venäjä, ei tekstitystä</p>",
                "sv": "<p>DIARY of Madmen (”Galningarnas dagbok”) är en ny föreställning av Dmitrij Krymov med de kända skådespelarna Tjulpan Chamatova och Maksim Suchanov i spetsen. Det här är regissören och konstnären Krymovs första föreställning på ryska, iscensatt i exil, och den är skådeplats för återföreningen av Chamatova och Suchanov, som senast framträdde tillsammans för nästan 30 år sedan i Valerij Todorovskijs film The Land of the Deaf (”De dövas land”).</p><p>Krymovs verk är kända för sitt särpräglade kreativa språk, där olika stilar och genrer blandas. I den här nya produktionen utgår han från sin egen text – en fantasmagorisk berättelse om människor på drift i tid och rum. Huvudpersonerna i DIARY of Madmen är två personer som tvingas in i nya och utmanande livsomständigheter och som söker mening i ett främmande land efter att deras etablerade liv har rubbats.</p><p>Bakom föreställningen<br>I rollerna: Tjulpan Chamatova och Maksim Suchanov<br>Koncept: Bearbetning och regi Dmitrij Krymov<br>Scenografi: Dmitrij Krymov och Pjotr Voznesenskij<br>Videodesign: Pjotr Voznesenskij<br>Kostymdesign: Tatjana Dolmatovskaja<br>Ljusdesign: Oskar Paulinsj<br>Koreografi: Anna Abalichina<br>Regissörens producent: Inna Krymova</p><p>Dörrarna öppnas: 18.00<br>Föreställningen börjar: 19.00</p><p>Längd: 1 tim. och 40 min., utan paus</p><p>Rekommenderad åldersgräns: 12+</p><p>Språk: Ryska, inga undertexter</p>",
                "en": "<p>DIARY of Madmen is a new performance by Dmitry Krymov, featuring renowned actors Chulpan Khamatova and Maxim Sukhanov. This is the first performance by director and artist Krymov in Russian, staged in exile, and marks the reunion of Khamatova and Sukhanov, who last appeared together almost 30 years ago in Valery Todorovsky's film The Land of the Deaf.</p><p>Krymov's works are known for their distinctive creative language, blending various styles and genres. In this new production, he draws upon his own text—a phantasmagoric story about people adrift in space and time. The protagonists of DIARY of Madmen are two individuals forced into new and challenging life circumstances, seeking purpose in a foreign land after their established lives have been disrupted.</p><p>The performance features<br>Cast: Chulpan Khamatova and Maxim Sukhanov<br>Concept: Adaptation and Director Dmitry Krymov<br>Set Design: Dmitry Krymov and Pyotr Voznesensky<br>Video Design: Pyotr Voznesensky<br>Costume Design: Tatyana Dolmatovskaya<br>Lighting Design: Oskar Paulinsh<br>Choreography: Anna Abalikhina<br>Director’s Producer: Inna Krymova</p><p>Doors open: 6:00 PM <br>Showtime: 7:00 PM</p><p>Duration: 1 hour 40 minutes, no intermission</p><p>Age limit recommendation: 12+</p><p>Language: Russian, no subtitles</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65296/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66192",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 691744,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T13:13:44.934572Z",
                    "last_modified_time": "2025-05-05T13:13:44.934591Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759426.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691744/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T13:13:44.855257Z",
            "last_modified_time": "2025-05-13T13:14:09.998819Z",
            "date_published": null,
            "start_time": "2025-05-24T08:00:00Z",
            "end_time": "2025-05-24T13:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Big Band Marathon",
                "sv": "Big Band Marathon",
                "en": "Big Band Marathon"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!",
                "sv": "Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!",
                "en": "Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!"
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon",
                "en": "http://www.espanlava.fi/en/events/event/D990062709DFF15DA17F8A6D0F058ECF/Big_Band_Marathon"
            },
            "description": {
                "fi": "<p>Varma lähestyvän kesän merkki on jo perinteeksi muodostunut Espan Big Band Marathon!</p><p>Viisi upeaa yhtyettä esittää monipuolisen kattauksen big band -musiikkia aina groovaavista kesähiteistä perinteisiin big band -sävelmiin. Tule viettämään kesäistä lauantaita yhdessä suurten jazzorkesterien kanssa!</p><p><b>Aikataulu:</b><br>klo 11 Vaskivuori Big Band<br>klo 12 PJK Big Band<br>klo 13 Ebeli Big Band<br>klo 14 Reunion Big Band<br>klo 15 Ladies First Big Band</p>",
                "sv": "<p>Espan Big Band Marathon, som redan blivit en tradition, är ett garanterat tecken på att sommaren är på kommande!</p><p>Fem underbara grupper framför ett mångsidigt sortiment av Big band-musik, allt från groovande sommarhittar till traditionella Big band-kompositioner. Kom med och tillbringa sommarlördagen tillsammans med de stora jazzorkestrarna!</p><p><b>Tidtabell:</b><br>kl. 11 Vaskivuori Big Band<br>kl. 12 PJK Big Band<br>kl. 13 Ebeli Big Band<br>kl. 14 Reunion Big Band<br>kl. 15 Ladies First Big Band</p>",
                "en": "<p>Espa’s traditional Big Band Marathon is a sure sign of the approaching summer!</p><p>The five amazing bands present a diverse offering of big band music, from groovy summer hits to more traditional big band compositions.</p><p>Enjoy your summer Saturday together with these big jazz orchestras!</p><p><b>Schedule:</b><br>11:00 Vaskivuori Big Band<br>12:00 PJK Big Band<br>13:00 Ebeli Big Band<br>14:00 Reunion Big Band<br>15:00 Ladies First Big Band</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66192/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66191",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?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:48/?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:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 691743,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T13:13:44.561416Z",
                    "last_modified_time": "2025-05-05T13:13:44.561441Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764972.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T13:13:44.488017Z",
            "last_modified_time": "2025-05-13T13:14:09.770428Z",
            "date_published": null,
            "start_time": "2025-05-23T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Musiikkikoulu Demo esittää: Musiikkia Valkokankaalta",
                "sv": "Musiikkikoulu Demo framför: Filmduksmusik (Musiikkia Valkokankaalta)",
                "en": "Music School Demo presents: Music from the big screen"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.",
                "sv": "På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.",
                "en": "Students of the Music School Demo perform popular film songs in their spring concert."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_esittaa_Musiikkia_Valkokankaalta",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Musiikkikoulu_Demo_framfor_Filmduksmusik_Musiikkia_Valkokankaalta_",
                "en": "http://www.espanlava.fi/en/events/event/845AB1AAF1102BE7DC9AD0AAEF3C62E7/Music_School_Demo_presents_Music_from_the_big_screen"
            },
            "description": {
                "fi": "<p>Musiikkikoulu Demon oppilaat esittävät keväisessä konsertissa rakastettuja elokuvabiisejä.</p><p>Lavalla nähdään laaja kattaus eri-ikäisiä musiikin harrastajia ja eri instrumentteja.</p><p>Tervetuloa kuuntelemaan!</p>",
                "sv": "<p>På vårkonserten uppträder elever från Musiikkikoulu Demo med kära filmlåtar.</p><p>På estraden ses ett brett sortiment musikhobbyister i olika åldrar och med olika instrument.</p><p>Välkommen för att lyssna!</p>",
                "en": "<p>Students of the Music School Demo perform popular film songs in their spring concert.</p><p>The concert will fill the stage with a wide range of music enthusiasts of different ages and their different instruments.</p><p>Come and enjoy!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66191/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66190",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 691742,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T13:13:44.240926Z",
                    "last_modified_time": "2025-05-05T13:13:44.240945Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764940.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691742/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T13:13:44.144972Z",
            "last_modified_time": "2025-05-13T13:14:09.589645Z",
            "date_published": null,
            "start_time": "2025-05-23T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "MIL-Espa: Ilmavoimien Big Band",
                "sv": "MIL-Espa: Flygvapnets Big Band",
                "en": "MIL-Espa: Air Force Big Band"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.",
                "sv": "På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.",
                "en": "On summer Fridays, the Espa Stage will present different military band ensembles across Finland."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Ilmavoimien_Big_Band",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Flygvapnets_Big_Band",
                "en": "http://www.espanlava.fi/en/events/event/CF1F2A70BA0EFA93CBC76412D6CD0D1B/MIL-Espa_Air_Force_Big_Band"
            },
            "description": {
                "fi": "<p>Kesäperjantaisin Espan lavalla nähdään sotilassoittokuntien eri kokoonpanoja ympäri Suomea.</p><p>Puolustusvoimien sotilassoittokunnat, varusmiessoittokunta ja soittokuntien varusmiesbändit nousevat vuorollaan eri kokoonpanoin Espan lavalle kesäperjantaisin kello 14.</p><p>Musiikki vaihtelee jazzista iskelmään ja tarjolla on kaikkea siltä väliltä. Luvassa on viihdyttäviä esityksiä musiikkityylistä toiseen!</p><p>MIL-Espan konserttia edeltää usein vartioparaati, joka käynnistyy Senaatintorilta kello 12.30.</p><p>MIL-Espa-puistokonsertteja on järjestetty vuodesta 1927 lähtien Esplanadin puistossa.</p>",
                "sv": "<p>På sommarfredagar uppträder olika sammansättningar av militära musikkårer runt om i Finland på Esplanadestraden.</p><p>Försvarsmaktens militära musikkår, värnpliktsmusikkår och musikkårernas värnpliktsband stiger i tur och ordning i olika sammansättningar upp på Esplanadestraden på sommarfredagar kl. 14.</p><p>Musiken varierar från jazz till schlager och allt där emellan utlovas. Underhållande uppträdanden med blandade  musikstilar utlovas!</p><p>MIL-Espa-konserten föregås ofta av en vaktparad som börjar på Senatstorget kl. 12.30.</p><p>MIL-Espa-parkkonserter har ordnats i Esplanadsparken sedan 1927.</p>",
                "en": "<p>On summer Fridays, the Espa Stage will present different military band ensembles across Finland.</p><p>Finnish Military Bands, the Conscript Band of the Finnish Defence Forces and the conscript bands of different military bands in different compositions will take their turns on the Espa Stage on summer Fridays at 14:00.</p><p>The music will range from jazz to popular music and everything in-between! The concerts will feature entertaining performances spanning a wide variety of musical styles.</p><p>The MIL-Espa concert is often preceded by a guard parade starting from the Senate Square at 12:30.</p><p>MIL-Espa park concerts have been organised at the Esplanadi Park since 1927.</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66190/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66186",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 691073,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T11:13:46.347233Z",
                    "last_modified_time": "2025-05-05T11:13:46.347251Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771200.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/691073/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T11:13:46.241255Z",
            "last_modified_time": "2025-05-13T13:14:09.264989Z",
            "date_published": null,
            "start_time": "2025-05-22T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Viia – Open Stage",
                "sv": "Viia – Open Stage",
                "en": "Viia – Open Stage"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Porilaislähtöinen Viia tuo Espan lavalle melankolista poppia, suuria tunteita ja ystävämuusikoistaan kootun bändin.",
                "sv": "Viia från Björneborg har med sig melankolisk pop, kraftiga känslor och ett band av vänmusiker på Esplanadestraden.",
                "en": "Pori-born Viia fills the Espa Stage with melancholic pop music, big emotions and a band composed of her musician friends."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F8890BD7558900D8763E64CDB1541EB8/Viia_",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/F8890BD7558900D8763E64CDB1541EB8/Viia_",
                "en": "http://www.espanlava.fi/en/events/event/F8890BD7558900D8763E64CDB1541EB8/Viia_"
            },
            "description": {
                "fi": "<p>Porilaislähtöinen Viia tuo Espan lavalle melankolista poppia, suuria tunteita ja ystävämuusikoistaan kootun bändin.</p><p>Viia Koivula on 29-vuotias porilaislähtöinen laulaja-lauluntekijä. Viia on kirjoittanut omaa musiikkia noin 8 vuoden ajan sekä julkaissut musiikkia suoratoistopalveluissa vuodesta 2020.</p><p>Viian musiikki on englanninkielistä pop-musiikkia, jossa suurina inspiraatioina toimivat muun muassa Florence + the Machine sekä Sia.</p><p>Teemoina Viian kappaleissa toistuvat kipeät kokemukset, rakkaus, melankolia sekä koettelemuksista yli pääseminen. <br>Musiikillaan Viia toivoo pystyvänsä heijastamaan tekstejään kuulijan omaan elämään ja tuomaan yhteenkuuluvuuden tunnetta.</p><p>Espan lavalla Viian kanssa nähdään hänelle rakkaita ystäviä muusikkouden eri vaiheilta. Bändissä soittaa kollegoita Turun konservatorion ajoilta sekä uudempia ystäviä Metropolian musiikin opinnoista.</p><p>\"Olen erittäin otettu, että saan esiintyä Espan lavalla. Suuri kiitos jo etukäteen Espan henkilökunnalle ja kaikille tahoille, jotka ovat tapahtuman järjestämisen takana. En malta oottaa tätä keikkaa!\"</p>",
                "sv": "<p>Viia från Björneborg har med sig melankolisk pop, kraftiga känslor och ett band av vänmusiker på Esplanadestraden.</p><p>Viia Koivula är en 29-årig sångare och låtskrivare från Björneborg. Hon har skrivit egen musik i ca åtta års tid och publicerat musik i livestreamingtjänsterna sedan 2020.</p><p>Viia:s musik är engelskspråkig pop-musik, som tagit stor inspiration bland annat av Florence + the Machine och Sia.</p><p>Onda upplevelser, kärlek, melankoli samt att komma över prövningar fungerar som teman i Viias låtar.<br>Med sin musik önskar Viia att hon ska kunna återspegla sina texter i åhörarens eget liv och skapa känsla av samhörighet.</p><p>På Esplanadestraden ser vi hennes kära vänner från musikens olika skeden. I bandet spelar hennes kollegor från tiden på Åbo konservatorium och nyare vänner från musikstudierna vid Metropolia.</p><p>\"Jag är mycket tagen av att få uppträda på Esplanadestraden. Ett stort tack redan på förhand till Esplanadestradens personal och alla aktörer som ligger bakom evenemanget. Jag kan inte låta bli att vänta på denna spelning!\"</p>",
                "en": "<p>Pori-born Viia fills the Espa Stage with melancholic pop music, big emotions and a band composed of her musician friends.</p><p>Viia Koivula, originally from Pori, is a 29-year-old singer and songwriter. Viia has been writing her own music for about eight years, and has been releasing songs in streaming services since 2020.</p><p>Viia plays pop music in English, greatly inspired by names such as Florence + the Machine and Sia.</p><p>Her songs deal with themes such as painful experiences, love, melancholy and overcoming hardships.<br>Through her music, Viia hopes to project her words to her audience’s own life and foster a sense of belonging.</p><p>On Espa Stage, Viia will present a group of her beloved friends from the different stages of her music career. The band comprises colleagues from her days at the Turku Conservatorium, as well as more recent friends from her music studies at Metropolia University of Applied Sciences.</p><p>“I’m very honoured to perform on the Espa Stage. I would like to thank the personnel of Espa Stage in advance for the event, as well as all other parties contributing to the organisation of this event. I can hardly wait for this gig!”</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66186/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:66181",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 690401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-05-05T09:13:16.635349Z",
                    "last_modified_time": "2025-05-05T09:13:16.635367Z",
                    "name": "",
                    "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771202.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/690401/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-05-05T09:13:16.560172Z",
            "last_modified_time": "2025-05-13T13:14:08.681241Z",
            "date_published": null,
            "start_time": "2025-05-20T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Hölynpölyä – Open Stage",
                "sv": "Hölynpölyä – Open Stage",
                "en": "Hölynpölyä – Open Stage"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Hölynpölyä on indiepopyhtye, joka vie kuulijan helposti samaistuttavien ja rehellisten tarinoiden äärelle.",
                "sv": "Hölynpölyä är en indiepopgrupp som lätt får åhöraren att stanna upp vid ärliga berättelser som man lätt kan identifiera sig med.",
                "en": "Hölynpölyä is an indiepop band that walks its audience through highly relatable and honest stories."
            },
            "info_url": {
                "fi": "http://www.espanlava.fi/fi/tapahtumat/event/7876C3FF4CE9A1A802E25406777374F6/Holynpolya",
                "sv": "http://www.espanlava.fi/sv/evenemang/event/7876C3FF4CE9A1A802E25406777374F6/Holynpolya",
                "en": "http://www.espanlava.fi/en/events/event/7876C3FF4CE9A1A802E25406777374F6/Holynpolya"
            },
            "description": {
                "fi": "<p>Hölynpölyä on indiepopyhtye, joka vie kuulijan helposti samaistuttavien ja rehellisten tarinoiden äärelle.</p><p>Kappaleemme kertovat elämän eri sävyistä tarttuvien ja kauniiden melodioiden saattelemana. Meitä yhdistää intohimo musiikkiin ja se näkyy myös keikoilla!</p>",
                "sv": "<p>Hölynpölyä är en indiepopgrupp som lätt får åhöraren att stanna upp vid ärliga berättelser som man lätt kan identifiera sig med.</p><p>Våra låtar berättar om livets olika nyanser med hjälp av medryckande och vackra melodier. Passionen för musik förenar, vilket syns även vid spelningar!</p>",
                "en": "<p>Hölynpölyä is an indiepop band that walks its audience through highly relatable and honest stories.</p><p>Our songs are about all the different shades of life, accompanied by catchy and beautiful melodies. We are united by our passion for music, which is also reflected in our live performances!</p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66181/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65896",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "sv": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/",
                        "en": "https://www.lippu.fi/artist/stoa/teatteri-nirvana-hatkat-3822317/"
                    },
                    "description": null,
                    "price": {
                        "fi": "17 € / 20 €",
                        "sv": "17 € / 20 €",
                        "en": "17 € / 20 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 446806,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-04-01T14:13:38.184976Z",
                    "last_modified_time": "2025-04-01T14:13:38.184991Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767912.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/446806/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-04-01T14:13:38.171041Z",
            "last_modified_time": "2025-05-13T13:14:08.281156Z",
            "date_published": null,
            "start_time": "2025-05-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Teatteri Nirvana: HATKAT",
                "sv": "Teatteri Nirvana: HATKAT",
                "en": "Teatteri Nirvana: HATKAT"
            },
            "provider_contact_info": null,
            "provider": null,
            "location_extra_info": null,
            "short_description": {
                "fi": "Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.",
                "sv": "Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.",
                "en": "Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_",
                "en": "http://www.stoa.fi/en/events/event/1D95E93B96D3B208912FE16B896F8091/Teatteri_Nirvana_HATKAT_"
            },
            "description": {
                "fi": "<p>Tekijöiden omakohtaisiin kokemuksiin perustuva esitys tutkii millä tavoin yhteiskunta käsittelee yksilön psyykkisiä ongelmia ja normeista poikkeavaa käytöstä.</p><p>HATKAT on näyttelijä-tanssija-esityksen tekijä Geoffrey Eristan ja dramaturgi-kirjailija Jussi Moilan yhdessä käsikirjoittama ja ohjaama näyttämöteos, joka pohjautuu heidän omiin kokemuksiinsa sekä taustatutkimukseen lastensuojelun ja psykiatrisen osastohoidon<br>toiminnasta.</p><p>Näyttämöllä nähdään Eristan lisäksi nukketeatteritaiteilija Reetta Moilanen sekä esine- ja nukketeatterin keinoin luotuja hahmoja. Teos hyödyntää dokumenttimateriaalin lisäksi Fjodor Dostojevskin romaania Rikos ja rangaistus. Monimerkityksinen näyttämöteos käsittelee rankaisemista, instituutiota ja sortavaa järjestelmää niin yhteiskunnallisella kuin henkilökohtaisella tasolla. Esitys liikkuu moraalin, etiikan ja lain harmailla alueilla sekä tarkastelee tabuja tilanteissa, joissa moraali ja laki eivät kohtaa.</p><p>HATKAT on Eristan ja Moilan sosiaalista stigmaa käsittelevän trilogian toinen osa. Ensimmäinen yhteisteos FENNOFOBIA syntyi vuonna 2021 vuorovaikutuksessa Teater Viiruksen kanssa.</p><p>Teksti & Ohjaus: Geoffrey Erista & Jussi Moila<br>Näyttämöllä: Geoffrey Erista & Reetta Moilanen<br>Valosuunnittelu: Julia Jäntti<br>Äänisuunnittelu: Onni Pirkola<br>Pukusuunnittelu: Amita Kilumanga<br>Tuotanto: Teatteri Nirvana & Kulttuurikeskus Stoa<br>Valokuva: Julia Jäntti<br>Graafikko: Maarika Autio</p><p>Teoksen valmistamista ovat tukeneet Alfred Kordelinin säätiö, Suomen Kulttuurirahasto ja Taiteen edistämiskeskus</p><p>Kesto: noin 60 minuuttia, ei väliaikaa<br>Ikäsuositus: 13+<br>Kieli: suomi</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 13–19-vuotiaille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">TÄSTÄ</a></u></p>",
                "sv": "<p>Med utgångspunkt i skaparnas personliga erfarenheter utforska föreställningen hur samhället hanterar psykiska problem och normavvikande beteende hos en individ.</p><p>HATKAT är en scenproduktion som Geoffrey Erista, skådespelare, dansare och föreställningsskapare, och Jussi Moila, dramaturg och författare, har skrivit och regisserat tillsammans. Verket bygger på deras egna erfarenheter och bakgrundsforskning om barnskydd och vård på psykiatrisk anstalt.</p><p>På scenen ser vi Erista, dockspelaren Reetta Moilanen och karaktärer som skapats genom objekts- och dockteater. Förutom dokumentärt material bygger verket på Fjodor Dostojevskijs roman ”Brott och straff”. Det mångtydiga verket handlar om straff, institutioner och förtryckande system på både en social och personlig nivå. Föreställningen navigerar i gråzonerna mellan moral, etik och lag, och utforskar tabun i situationer där moral och lag inte möts.</p><p>HATKAT är den andra delen i Eristas och Moilas trilogi om sociala stigman.<br>Det första gemensamma verket FENNOFOBI skapades 2021 i samarbete med Teater Viirus.</p><p>Text & regi: Geoffrey Erista & Jussi Moila<br>På scenen: Geoffrey Erista & Reetta Moilanen<br>Ljusdesign: Julia Jäntti<br>Ljuddesign: Onni Pirkola<br>Kostymdesign: Amita Kilumanga<br>Produktion: Teater Nirvana & Kulturcentret Stoa<br>Foto: Julia Jäntti<br>Grafiker: Maarika Autio</p><p>Produktionen av verket har fått stöd från Alfred Kordelins stiftelse, Finska kulturfonden och Centret för konstfrämjande.</p><p>Längd: 60 min<br>Åldersrekommendation: 13+<br>Språk: finska</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för 13–19-åringar. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">HÄR</a></u></p>",
                "en": "<p>Based on the personal experiences of the creators, the show examines how society deals with an individual’s psychological problems and abnormal behaviour.</p><p>HATKAT is a dramatic work co-written and co-directed by actor-dancer-creator Geoffrey Erista and dramaturge-writer Jussi Moila. It is based on their experiences and background research on child protection and psychiatric inpatient treatment.</p><p>In addition to Erista, on stage we will see puppeteer Reetta Moilanen as well as characters created by means of objects and puppet theatre. In addition to documentary material, the work also uses Fyodor Dostoevsky’s novel Crime and Punishment. The multifaceted dramatic work deals with punishment, the institution and an oppressive system on both social and personal levels. The show moves in the grey areas of morality, ethics and the law while examining taboos in situations where morality and the law do not meet.</p><p>HATKAT is the second part of Erista and Moila’s trilogy on social stigma.<br>Their first joint work FENNOFOBIA was created in 2021 together with Teater Viirus.</p><p>Text & Direction: Geoffrey Erista & Jussi Moila<br>On stage: Geoffrey Erista & Reetta Moilanen<br>Lighting design: Julia Jäntti<br>Sound design: Onni Pirkola<br>Costume design: Amita Kilumanga<br>Production: Teatteri Nirvana & Cultural Centre Stoa<br>Photo: Julia Jäntti<br>Graphic designer: Maarika Autio</p><p>The production of the work has been supported by the Alfred Kordelin Foundation, Finnish Cultural Foundation and Arts Promotion Centre Finland.</p><p>Duration: 60 min<br>Age recommendation: 13+<br>Language: Finnish</p><p><b>Council 150 years</b><br>This event is free of charge for children and young people aged 13–19 years. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/stoa-helsingin-kaupunki-nuorisolippu-stoa-19754499/?affiliate=FSF\">HERE</a></u></p>"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65896/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}