Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 21736,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=209",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=207"
    },
    "data": [
        {
            "id": "kulke:65062",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 165097,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-23T13:15:45.913462Z",
                    "last_modified_time": "2025-01-23T13:15:45.913483Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763778.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165097/?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-01-23T13:15:45.885344Z",
            "last_modified_time": "2025-03-09T17:14:12.367200Z",
            "date_published": null,
            "start_time": "2025-03-21T07:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!",
                "sv": "Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen",
                "en": "Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_",
                "en": "http://www.annantalo.fi/en/events/event/807607E42B9BC787B0B329EC658D667F/Talvikki_Eerola_Rapuooppera_"
            },
            "description": {
                "fi": "<p>Rapuooppera on musiikkipitoinen teatteriesitys lapsille, joka perustuu Leena Sainion samannimisen runoteokseen. Esitys juhlistaa Kansainvälistä Nukketeatteripäivää!</p><p>Pienistä tarinoista koostuva esitys sisältää musiikkia, tanssia, laulua ja minimalistista nukketeatteria sekä paljon hauskoja hahmoja! Runot käsittelevät ihmeellistä elämää, eläimiä ja luontoa sekä universumin mysteeriä.</p><p>Esitys sopii 3–7 –vuotiaille ja heidän perheilleen.</p><p>Ryhmäilmoittautuminen maksuttomiin aamuesityksiin: kultus.fi 3.2. alkaen</p><p>Klo 18 avoin näytös liput 6 €, Lippu.fi</p><p>Kesto n. 40 minuuttia. <br>Kieli: suomi<br>Leena Sainio: Rapuooppera (2021, Enostone).</p><p>Esiintyminen, musiikin sävellys, ohjaus ja koreografia: Talvikki Eerola <br>Nuket, pukusuunnittelu, visuaalinen suunnittelu: Janne Siltavuori <br>Dramaturginen apu: Arni Rajamäki <br>Ohjauksellinen apu: Henni Kervinen <br>Pukujen valmistus: Marita Kuusiniemi <br>Tuotanto: Wusheng Company <br>Kuvat: Janne Siltavuori</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>",
                "sv": "<p>Rapuooppera är en musikteaterföreställning för barn, baserad på Leena Sainios dikt med samma namn. I dag firar vi den internationella Dockteaterdagen</p><p>Föreställningen som består av korta berättelser innehåller musik, dans, sång och minimalistisk dockteater samt massor av skojiga figurer! Dikterna handlar om livets under, djur, natur och universums mysterier.</p><p>Föreställningen är lämplig för 3–7-åriga barn och deras familjer.</p><p>Längd ca 40 min.</p><p>Fritt inträde, anmälan från och med 3.2. på kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone-kustannus).<br>I rollerna, musikkomposition, regi och koreografi: Talvikki Eerola<br>Dockor, kostymdesign, visuell design: Janne Siltavuori<br>Dramaturgisk assistans: Arni Rajamäki<br>Regiassistans: Henni Kervinen<br>Kostymtillverkning: Marita Kuusiniemi<br>Produktion: Wusheng Company</p>",
                "en": "<p>Rapuooppera is a musical theatre performance for children, based on Leena Sainio’s poem of the same name. We celebrate the International Puppet theatre Day!</p><p>The performance consists of small stories and includes music, dance, singing and minimalist puppetry, as well as lots of fun characters! The poems deal with wonderful life, animals and nature, as well as the mystery of the universe.</p><p>The performance is suitable for children aged 3–7 and their families.<br>Duration approx. 40 minutes.</p><p>Free entry, registration on 3 February at kultus.fi</p><p>Leena Sainio: Rapuooppera (2021, Enostone publish)<br>Performance, music composition, direction and choreography: Talvikki Eerola<br>Puppets, costume design, visual design: Janne Siltavuori<br>Dramaturgical help: Arni Rajamäki<br>Directional aid: Henni Kervinen<br>Costume manufacture: Marita Kuusiniemi<br>Production: Wusheng Company</p><p><b>Hurraa! Theatre Weeks  <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Talvikki Eerola: Rapuooppera – Hurraa! -teatteriviikot",
                "sv": "Talvikki Eerola: Rapuooppera – Hurraa! -teaterveckor",
                "en": "Talvikki Eerola: Rapuooppera – Hurraa! theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65062/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65059",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 165095,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-23T13:15:45.214801Z",
                    "last_modified_time": "2025-01-23T13:15:45.214851Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759292.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165095/?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-01-23T13:15:45.166099Z",
            "last_modified_time": "2025-03-09T17:14:11.805389Z",
            "date_published": null,
            "start_time": "2025-03-20T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos. Kanta esitys tänään, Kansainvälisenä lastenteatteripäivänä.",
                "sv": "KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär I dag, på Barnens internationell teaterdag!",
                "en": "KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres today, celebrating the International Theatre Day for Children and Young people."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E8AEF25AE92FC419CFC0E11C26C9D843/KATVE_blind_spot_Company_CRAZY_BOX_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/E8AEF25AE92FC419CFC0E11C26C9D843/KATVE_blind_spot_Company_CRAZY_BOX_",
                "en": "http://www.annantalo.fi/en/events/event/E8AEF25AE92FC419CFC0E11C26C9D843/KATVE_blind_spot_Company_CRAZY_BOX_"
            },
            "description": {
                "fi": "<p>KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos. Kanta esitys tänään, Kansainvälisenä lastenteatteripäivänä.</p><p>Lapsille ja nuorille suunnatun esityksen keskiössä on laatikko, joka mahdollistaa teleporttaamisen - alkaa ihmeellinen, villi ja absurdin hulvaton matka…</p><p>CRAZY BOX -teoksen teemana on rohkeus ja mielikuvitus. Esitys näyttää, että hyppäämällä uusiin tilanteisiin voi löytää itsestään ja maailmasta uutta. Sanaton esitys kannustaa avarakatseisuuteen suhteessa itseen ja toisiin.<br> <br>Teoksesta esitetään kaksi erilaista versiota, joista toinen on päiväkoti-ikäisille ja alakoulun ensimmäisille luokille suunnattu, Annantalon esitykset, ja toinen yli 10-vuotiaille lapsille ja nuorille.</p><p>klo 10 esitys Annantalossa on suunnattu päiväkoti- ja koululaisryhmille: 5–6-vuotiaat ja valmistava opetus sekä  1.–2. luokat. Ilmoita ryhmäsi etukäteen osoitteessa https://kultus.fi/fi</p><p>Konsepti, koreografia ja tanssi: Tanja Illukka ja Heidi Masalin<br>Äänisuunnittelu: Olli Havu<br>Laatikon toteutus: Lotta Esko</p><p>Sanaton</p><p>Kesto: noin 30 min.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>",
                "sv": "<p>KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär I dag, på Barnens internationell teaterdag!</p><p>Föreställningen, som riktar sig till barn och unga, handlar om en låda som gör det möjligt att teleportera sig – så börjar en förunderlig, vild och absurt rolig resa...</p><p>Temat för verket CRAZY BOX är mod och fantasi. Föreställningen visar att man kan upptäcka något nytt om sig själv och om världen då man hoppar in i nya situationer. Den ordlösa föreställningen uppmuntrar till öppenhet gentemot sig själv och andra.<br> <br>kl 10 är kostnadsfri föreställning för skolelever, platsbokning på https://kultus.fi/fi</p><p>Koncept, koreografi och dans: Tanja Illukka och Heidi Masalin<br>Ljuddesign: Olli Havu<br>Lådans genomförande: Lotta Esko<br>Inget språk<br>Längd: ca 30 min.</p><p>Åldersrekommendation: 3–6-åringar</p>",
                "en": "<p>KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres today, celebrating the International Theatre Day for Children and Young people.</p><p>At the heart of the show for children and young people is a box that enables teleportation – a wondrous, wild and absurdly hilarious journey begins…</p><p>The theme of CRAZY BOX is courage and imagination. The performance shows that by jumping into new situations, you can discover something new about yourself and the world. The non-verbal performance encourages you to be open-minded with yourself and others.</p><p>Free admission, registration mandatory for groups at https://kultus.fi/fi</p><p>Concept, choreography and dance: Tanja Illukka and Heidi Masalin<br>Sound design: Olli Havu<br>Box implementation: Lotta Esko</p><p>Non-verbal<br>Duration: approx. 30 min<br>Age recommendation: 3–6 years</p><p><b>Hurraa! Theatre Weeks  <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teatteriviikot",
                "sv": "KATVE [blind spot] Company: CRAZY BOX – Hurraa!-teaterveckor",
                "en": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65059/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65056",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 160225,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-20T10:14:45.772321Z",
                    "last_modified_time": "2025-01-20T10:14:45.772336Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763745.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/160225/?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-01-20T10:14:45.747774Z",
            "last_modified_time": "2025-03-09T17:14:11.415340Z",
            "date_published": null,
            "start_time": "2025-03-19T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!",
                "sv": "Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!",
                "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D6A44CD1A4C5098E4761E3FF6A34477B/Ama_Kyei_Kukkatanssit",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D6A44CD1A4C5098E4761E3FF6A34477B/Ama_Kyei_Blomsterdans",
                "en": "http://www.annantalo.fi/en/events/event/D6A44CD1A4C5098E4761E3FF6A34477B/Ama_Kyei_Flower_Dances"
            },
            "description": {
                "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7 vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Ikäsuositus: 3–7 vuotta<br>Kieli: suomi<br>Kesto: 30 min</p><p>Maksuton näytös koululaisille, paikkavaraukset kultus.fi 3.2.alkaen</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to  theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Lue lisää kansainvälisestä lastenteatterikampanjasta: www.assitejinternational.org</p>",
                "sv": "<p>Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!</p><p>Tillsammans med Moder Naturs vägledning och barnens hjälp får vi möjligheten att hjälpa blommorna att återfå sin färg och superkraft. Under föreställningen dansar vi bland annat regn-, jord-, vind- och soldanser och ser hur magiskt grönt vatten uppstår. Föreställningen påminner oss om att värna om allt vi bryr oss om.</p><p>Blomsterdans är en interaktiv föreställning för barn i åldern 3–7 år och för barn med särskilda behov upp till gymnasieåldern.</p><p>Koreografi och dans: Ama Kyei<br>Kreativa medhjälpare: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Sponsor: Konstnärsnämnden och Region Stockholm<br>Trailer & foto: Jonathan Morell<br>Musik i trailern: Sara Celaya</p><p>Längd: 30 min.<br>Åldersrekommendation: 3–7 år<br>Språk: finska</p><p>Kostnadsfri föreställning för skolelever, platsbokning på kultus.fi från 3.2</p>",
                "en": "<p>All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!</p><p>Together with Mother Nature’s guidance and with help from the children, we can help flowers regain their colour and superpower. We get to dance rain, earth, wind and sun dances and see how magical green water is born. This performance reminds us to cherish everything we care about.</p><p>Flower Dances is an interactive performance for 3–7-year-old children and special needs children up to general upper secondary school.</p><p>Choreography and dance: Ama Kyei<br>Creative Assistants: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Funded by: The Swedish Arts Grants Committee and Region Stockholm<br>Trailer & image: Jonathan Morell<br>Trailer music: Sara Celaya</p><p>Duration: 30 mins.<br>Age recommendation: 3–7 years<br>Language: Finnish</p><p>Free performance for school students, seat reservations at kultus.fi starting from 3 February.</p><p><b>Hurraa! Theatre Weeks  <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Ama Kyei: Kukkatanssit – Hurraa! -teatteriviikot",
                "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor",
                "en": "Ama Kyei: Flower Dances – Hurraa! theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65056/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65445",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 160222,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-20T10:14:44.884831Z",
                    "last_modified_time": "2025-01-20T10:14:44.884846Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764779.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/160222/?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-01-20T10:14:44.841962Z",
            "last_modified_time": "2025-03-09T17:14:10.564495Z",
            "date_published": null,
            "start_time": "2025-03-17T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Maksuton näytös koululaisille, paikkavaraukset kultus.fi 3.2.alkaen",
                "sv": "Kostnadsfri föreställning för skolelever, platsbokning på kultus.fi från 3.2",
                "en": "Free performance for school students, seat reservations at kultus.fi starting from 3 February."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/07AC45EE5B9B7270487BF5A5A666DCB2/Red_Nose_Company_Punahilkan_paluu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/07AC45EE5B9B7270487BF5A5A666DCB2/Red_Nose_Company_Punahilkan_paluu",
                "en": "http://www.annantalo.fi/en/events/event/07AC45EE5B9B7270487BF5A5A666DCB2/Red_Nose_Company_Punahilkan_paluu"
            },
            "description": {
                "fi": "<p>Maksuton näytös koululaisille, paikkavaraukset kultus.fi 3.2.alkaen</p><p>Punahilkan tarinaa on kerrottu sukupolvelta toiselle jo satoja vuosia. Nyt rakastettu satu nähdään näyttämöllä kahden klovnin, Babylonin ja Rén riemukkaana tulkintana. Isoäidiltä lahjaksi saatu viitta antaa Punahilkalle supervoimat ja auttaa selviytymään kiperissä tilanteissa. Supervoimista huolimatta myös yleisön apua tarvitaan. Miten mahtaa ratketa suden ja Punahilkan kohtaaminen tässä nykyaikaan päivitetyssä versiossa?</p><p>Klovnit johdattavat katsojan pohtimaan luottamuksen ja turvallisuuden teemoja huumoria säästelemättä. Esitys on suunnattu erityisesti alakoululaisille ja heidän perheilleen.<br> <br><b>TYÖRYHMÄ</b><br>Näyttämöllä: Hanna Seppä ja Minna Puolanto<br>Ohjaus: Niina Sillanpää<br>Käsikirjoitus: Työryhmä<br>Valo ja äänisuunnittelu: Jere Kolehmainen<br>Puvustus: Noora Salmi<br>Tuotanto: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graafinen ilme: Ilari Kallinen</p><p>Esityksen kesto n. 60 min<br>Ikäsuositus: 6+<br>Kieli: suomi</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 37 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Kostnadsfri föreställning för skolelever, platsbokning på kultus.fi från 3.2</p><p>Språk: finska</p><p><b>Hurra!-teaterveckor  <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurraa!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to t theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurra!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>Free performance for school students, seat reservations at kultus.fi starting from 3 February.</p><p>The tale of the Little Red Riding Hood has been told for centuries. Now two clowns Babylon & Ré take this beloved story into their hands and tune it to the 21 century. Little Red Riding Hood receives a magical cape from her grandmother – it turns out to have superpower that helps in difficult situations. This show will investigate themes of trust and safety without forgetting joy and laughter.</p><p>We especially welcome for 6–12-year-old kids and their families.</p><p><b>WORKING GROUP</b><br>On stage: Hanna Seppä and Minna Puolanto<br>Director: Niina Sillanpää<br>Script: working group<br>Light and sound design: Jere Kolehmainen<br>Costume design: Noora Salmi<br>Production: Red Nose Company / Elina Terho, Maija Kühn, Inka Virtanen<br>Graphical design: Ilari Kallinen</p><p>Length of the show: 60 minutes<br>Age recommendation: 6+<br>Language: Finnish</p><p><b>Hurraa! theatre weeks  <br>Bring Your Child to the Theatre </b><br>The aim of the Hurraa! theatre weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! theatre weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurrah! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! is organised as part of the International Theatre Campaign Week: Take a Child to  Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Red Nose Company: Punahilkan paluu – Hurraa! -teatteriviikot",
                "sv": "Red Nose Company: Punahilkan paluu – Hurraa! -teaterveckor",
                "en": "Red Nose Company: Punahilkan paluu – Hurraa! Theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65445/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65044",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/",
                        "sv": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/",
                        "en": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153741,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T11:14:24.479318Z",
                    "last_modified_time": "2025-01-14T11:14:24.479334Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763724.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153741/?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-01-14T11:14:24.455163Z",
            "last_modified_time": "2025-03-09T17:14:10.371738Z",
            "date_published": null,
            "start_time": "2025-03-16T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.",
                "sv": "Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.",
                "en": "The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz",
                "en": "http://www.annantalo.fi/en/events/event/090121C4E32F6149C101450CAD3D2407/Pizza_Pizza_Karagoz"
            },
            "description": {
                "fi": "<p>Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.</p><p>Perinteistä turkkilaista nukketeatteria esitetään nyt ensimmäisen kerran yhdistämällä melkein 700 vanhaa perinnettä moderniin ilmaisuun. Karagöz ja Hacivat ovat tarinan päähenkilöt. Tarina saa alkunsa seuraavasti: Karagöz on taas kerran työttömänä, ja Hacivat löytää hänelle työn Suomesta. Karagöz pääsee töihin pitseriaan, jossa hän ottaa vastaan tilauksia. Tilauksia tehdään eri kielillä, ja asiakkailla on monenlaisia erityistoiveita. Karagoziltä menevät kaikki tilaukset sekaisin, ja seuraa suuri sotku. Miten on mahdollista palauttaa järjestys ja sopusointu? Esityksen aiheena on rinnakkaiselo, ja sen metaforana toimii pitsa.</p><p>Karagöz-teatteriperinne nimettiin Unescon ihmiskunnan aineettoman kulttuuriperinnön luetteloon vuonna 2009. <br>Pizza Pizza Karagöz on vertauskuvallinen nukketeatteriesitys, joka kuvaa, miten kaikista eri taustoista tulevat ihmiset Suomessa voivat elää rauhassa ja sopusoinnussa eroistaan huolimatta. Pitsan tavoin erilaisista aineksista syntyy herkullinen kokonaisuus. Esityksen kieliä ovat ruotsi, somali, arabia ja turkki. Visuaalisesti nautittavaa esitystä täydentävät värikkäät hahmot ja asut esimerkiksi suomalaisesta, romani-, englantilaisesta ja virolaisesta kulttuurista.</p><p>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Kesto 40 min <br>Ikäsuositus: 7 +<br> <br>Kieli: monikielinen esitys. Kuullaan mm. turkkia, suomea, ruotsia, arabiaa ja viroa.</p><p><b> Hullunkurinen pizza -kuvataidepaja </b><br>Esitysten välissä, klo 12.45–13.45:<br>Miltä näyttäisi kahvimustikkapizza? Mahtuvatko merilevä, puolukka ja sinihernekukka samaan pizzaan? Maalaa oma pizzasi luonnonväreillä. Ohjaus, Marjut Maristo</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.</p><p>För första gången intar den traditionella och nästan 700 år gamla dockteatern scenen i en kombination av traditionella och moderna stilar. Karagöz och Hacivat är de två huvudpersonerna. Så här lyder berättelsen: Karagöz är arbetslös, som vanligt, och Hacivat hittar ett jobb till honom i Finland. Karagöz tar emot beställningar på en pizzeria. Beställningarna görs på olika språk och kunderna har olika speciella önskemål. Karagöz blandar ihop alla beställningarna och allt blir en enda röra. Hur ska det kunna bli ordning och harmoni igen? Den här uppvisningen handlar om att samexistera och genom att använda pizza som en metafor.</p><p>Det traditionella verket ”Karagöz” skrevs 2009 in på Unescos (United Nations Educational Scientific and Cultural Organization) representativa lista över mänsklighetens immateriella kulturarv. <br>Pizza Pizza Karagöz är en metaforisk dockteater som handlar om att människor av olika ras som bor i Finland kan leva i fred och harmoni. Trots alla skillnader kan vi göra varandra glada i det stora hela, precis som en pizza. Föreställningen är svensk, somalisk, irakisk och turkisk. Den bjuder på trevliga visuella element bestående av de färggranna personligheterna och dräkterna hos personer från olika kulturer, som exempelvis finsk, engelsk, romsk och estnisk kultur. <br>Ålder: 7+<br>Längd: 40 mins.</p><p><b> Putslustig pizza -konstverkstad </b><br>Mellan föreställningar kl. 12.45-13.45<br>En pizza med blåbär och kaffe? Kan du föreställa dig en pizza med havstång, lingon och blåärt blomma? Måla din egen lustig pizza med naturfärjer. Instruktör: Marjut Maristo</p><p><b>Hurraa!-teaterveckor  <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurra!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!</p><p>A traditional Turkish puppet theatre, nearly 700 years old, takes the stage for the first time combining traditional and modern styles. Karagöz and Hacivat are the two main characters. The story is as follows: Karagöz is unemployed, as always, and Hacivat finds him a job in Finland. Karagöz takes orders in a pizzeria. The orders are made in different languages and the customers have various special requests. Karagöz gets all the orders wrong and things become a mess. How can order and harmony be restored? This is a performance about coexistence which uses pizza as the metaphor.</p><p>The traditional play of Karagöz was inscribed in 2009 on the Representative List of the Intangible Cultural Heritage of Humanity of the United Nations Educational Scientific and Cultural Organization (UNESCO). <br>Pizza Pizza Karagöz show is a metaphorical puppet play that tells that people from all different races living in Finland can live in peace and harmony, despite all the differences, we can make each other happy as a whole like a pizza. The show is Swedish, Somali, Iraqi, Turkish. It offers an enjoyable visual with the colorful personalities and costumes of people from different cultures such as Finnish, English, Romani, and Estonian. <br> <br>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Duration 40 min <br>Age limit: 7 +<br> <br>Language: Turkish and sometimes characters speak in their own language - such as Swedish, Finnish, Arabic or Estonian.</p><p><b> Unbelievable pizza - visual art workshop </b><br>Between the two shows, at 12.45-13.45<br>A pizza with coffee and blueberry? Can you mix seaweed, lingonberry and blue pea flower? Paint your own crazy pizza with natural colours. Guidance: Marjut Maristo</p><p><b>Hurraa! Theatre Weeks  <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Pizza Pizza Karagöz – Hurraa! -teatteriviikot",
                "sv": "Pizza Pizza Karagöz – Hurraa!-teaterveckor",
                "en": "Pizza Pizza Karagöz – Hurraa! Theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65044/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65043",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/",
                        "sv": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/",
                        "en": "https://www.lippu.fi/event/annantalo-misal-art-puppet-pizza-pizza-karagoez-annantalo-19693059/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153740,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T11:14:24.292786Z",
                    "last_modified_time": "2025-01-14T11:14:24.292802Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763723.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153740/?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-01-14T11:14:24.252032Z",
            "last_modified_time": "2025-03-09T17:14:10.263721Z",
            "date_published": null,
            "start_time": "2025-03-16T10:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.",
                "sv": "Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.",
                "en": "The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz",
                "en": "http://www.annantalo.fi/en/events/event/9E3EFB165796942FBE5D97680DE03491/Pizza_Pizza_Karagoz"
            },
            "description": {
                "fi": "<p>Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu Suomeen! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.</p><p>Perinteistä turkkilaista nukketeatteria esitetään nyt ensimmäisen kerran yhdistämällä melkein 700 vanhaa perinnettä moderniin ilmaisuun. Karagöz ja Hacivat ovat tarinan päähenkilöt. Tarina saa alkunsa seuraavasti: Karagöz on taas kerran työttömänä, ja Hacivat löytää hänelle työn Suomesta. Karagöz pääsee töihin pitseriaan, jossa hän ottaa vastaan tilauksia. Tilauksia tehdään eri kielillä, ja asiakkailla on monenlaisia erityistoiveita. Karagoziltä menevät kaikki tilaukset sekaisin, ja seuraa suuri sotku. Miten on mahdollista palauttaa järjestys ja sopusointu? Esityksen aiheena on rinnakkaiselo, ja sen metaforana toimii pitsa.</p><p>Karagöz-teatteriperinne nimettiin Unescon ihmiskunnan aineettoman kulttuuriperinnön luetteloon vuonna 2009. <br>Pizza Pizza Karagöz on vertauskuvallinen nukketeatteriesitys, joka kuvaa, miten kaikista eri taustoista tulevat ihmiset Suomessa voivat elää rauhassa ja sopusoinnussa eroistaan huolimatta. Pitsan tavoin erilaisista aineksista syntyy herkullinen kokonaisuus. Esityksen kieliä ovat ruotsi, somali, arabia ja turkki. Visuaalisesti nautittavaa esitystä täydentävät värikkäät hahmot ja asut esimerkiksi suomalaisesta, romani-, englantilaisesta ja virolaisesta kulttuurista.</p><p>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Kesto 40 min <br>Ikäsuositus: 7 +<br> <br>Kieli: monikielinen esitys. Kuullaan mm. turkkia, suomea, ruotsia, arabiaa ja viroa.</p><p><b> Hullunkurinen pizza -kuvataidepaja </b><br>Esitysten välissä, klo 12.45–13.45:<br>Miltä näyttäisi kahvimustikkapizza? Mahtuvatko merilevä, puolukka ja sinihernekukka samaan pizzaan? Maalaa oma pizzasi luonnonväreillä. Ohjaus, Marjut Maristo</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin</b> <br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 12 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Finland! Vi bjuder på en modern tolkning av Karagöz.</p><p>För första gången intar den traditionella och nästan 700 år gamla dockteatern scenen i en kombination av traditionella och moderna stilar. Karagöz och Hacivat är de två huvudpersonerna. Så här lyder berättelsen: Karagöz är arbetslös, som vanligt, och Hacivat hittar ett jobb till honom i Finland. Karagöz tar emot beställningar på en pizzeria. Beställningarna görs på olika språk och kunderna har olika speciella önskemål. Karagöz blandar ihop alla beställningarna och allt blir en enda röra. Hur ska det kunna bli ordning och harmoni igen? Den här uppvisningen handlar om att samexistera och genom att använda pizza som en metafor.</p><p>Det traditionella verket ”Karagöz” skrevs 2009 in på Unescos (United Nations Educational Scientific and Cultural Organization) representativa lista över mänsklighetens immateriella kulturarv. <br>Pizza Pizza Karagöz är en metaforisk dockteater som handlar om att människor av olika ras som bor i Finland kan leva i fred och harmoni. Trots alla skillnader kan vi göra varandra glada i det stora hela, precis som en pizza. Föreställningen är svensk, somalisk, irakisk och turkisk. Den bjuder på trevliga visuella element bestående av de färggranna personligheterna och dräkterna hos personer från olika kulturer, som exempelvis finsk, engelsk, romsk och estnisk kultur. <br>Ålder: 7+<br>Längd: 40 mins.</p><p><b> Putslustig pizza -konstverkstad </b><br>Mellan föreställningar kl. 12.45-13.45<br>En pizza med blåbär och kaffe? Kan du föreställa dig en pizza med havstång, lingon och blåärt blomma? Måla din egen lustig pizza med naturfärjer. Instruktör: Marjut Maristo</p><p><b>Hurraa!-teaterveckor  <br>Ta med ditt barn till teatern</b><br>Hurraa! teaterveckor syftar till att ge så många barn och ungdomar som möjligt chansen att se levande teater som är särskilt avsedd för dem.</p><p>Hurra!-teaterveckorna sätter fokus på kvalitetsscenkonst för barn och ungdomar. Programmet omfattar 12 olika föreställningar och 40 visningar runt om i Helsingfors.</p><p>Hurra!-teaterveckornas föreställningar kommer att presenteras i Helsingfors kulturcentrum 14–26 mars 2025. Föreställningarna äger rum i Annegården, Caisa, Gamlasgården, Malms kulturhus, Stoa och Nordhuset. Förutom i kulturcentrumen kommer föreställningarna att glädja barn och ungdomar även på Helsingfors Barnsjukhus.</p><p>Hurraa! arrangeras som en del av den internationella teaterkampanjveckan: Take a child to the theatre – ta med ett barn på teater. Under veckan uppmärksammas också barnens internationella teaterdag den 20 mars.</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Finland. Karagöz is with you with a modern interpretation!</p><p>A traditional Turkish puppet theatre, nearly 700 years old, takes the stage for the first time combining traditional and modern styles. Karagöz and Hacivat are the two main characters. The story is as follows: Karagöz is unemployed, as always, and Hacivat finds him a job in Finland. Karagöz takes orders in a pizzeria. The orders are made in different languages and the customers have various special requests. Karagöz gets all the orders wrong and things become a mess. How can order and harmony be restored? This is a performance about coexistence which uses pizza as the metaphor.</p><p>The traditional play of Karagöz was inscribed in 2009 on the Representative List of the Intangible Cultural Heritage of Humanity of the United Nations Educational Scientific and Cultural Organization (UNESCO). <br>Pizza Pizza Karagöz show is a metaphorical puppet play that tells that people from all different races living in Finland can live in peace and harmony, despite all the differences, we can make each other happy as a whole like a pizza. The show is Swedish, Somali, Iraqi, Turkish. It offers an enjoyable visual with the colorful personalities and costumes of people from different cultures such as Finnish, English, Romani, and Estonian. <br> <br>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Duration 40 min <br>Age limit: 7 +<br> <br>Language: Turkish and sometimes characters speak in their own language - such as Swedish, Finnish, Arabic or Estonian.</p><p><b> Unbelievable pizza - visual art workshop </b><br>Between the two shows, at 12.45-13.45<br>A pizza with coffee and blueberry? Can you mix seaweed, lingonberry and blue pea flower? Paint your own crazy pizza with natural colours. Guidance: Marjut Maristo</p><p><b>Hurraa! Theatre Weeks  <br>Take a Child to Theatre </b><br>The aim of the Hurraa! Theatre Weeks is to offer as many children and young people as possible an opportunity to see live theatre aimed specifically at them.</p><p>Hurraa! Theatre Weeks bring to the spotlight high-quality stage art aimed at children and young people. The programme has a total of 12 different performances and 37 shows around Helsinki.</p><p>The shows of the Hurraa! theatre weeks will be take place at cultural centres in Helsinki between 14 and 26 March 2025. The venues are Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa and Vuotalo. In addition to the cultural centres, the performances will delight children and young adults at the New Children’s Hospital in Helsinki.</p><p>Hurraa! will be organised as part of the International Theatre Campaign Week: Take a Child to Theatre. The World Day of Theatre for Children and Young People is also celebrated during the Hurraa! event on 20 March.</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "name": {
                "fi": "Pizza Pizza Karagöz – Hurraa! -teatteriviikot",
                "sv": "Pizza Pizza Karagöz – Hurraa!-teaterveckor",
                "en": "Pizza Pizza Karagöz – Hurraa! Theatre weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65043/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65689",
            "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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 306797,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-06T08:15:40.523939Z",
                    "last_modified_time": "2025-03-06T08:15:40.523968Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766222.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/306797/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-06T08:15:40.465930Z",
            "last_modified_time": "2025-03-07T14:13:27.061485Z",
            "date_published": null,
            "start_time": "2025-03-20T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa ainutlaatuisella musiikkiesityksellä, jossa esiintyvät armenialaisen dudukin mestari Arsen Petrosyan ja iranilainen kamancheh-soittaja Adib Rostami.",
                "en": "Celebrate the arrival of spring and Nowruz with a captivating musical performance featuring Armenian duduk master Arsen Petrosyan and Iranian kamancheh player Adib Rostami."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BFB19063E47C77259BBFE47A852CCE03/Arsen_Petrosyan_Adib_Rostami_Kevaan_savelet",
                "en": "http://www.stoa.fi/en/events/event/BFB19063E47C77259BBFE47A852CCE03/Arsen_Petrosyan_Adib_Rostami_Sounds_of_Spring"
            },
            "description": {
                "fi": "<p>Tervetuloa juhlistamaan kevään saapumista ja Nowruz-juhlaa ainutlaatuisella musiikkiesityksellä, jossa esiintyvät armenialaisen dudukin mestari Arsen Petrosyan ja iranilainen kamancheh-soittaja Adib Rostami.</p><p>Nämä arvostetut muusikot yhdistävät taitonsa ja luovuutensa tuoden esiin perinteidensä syvät kulttuuriset ja musiikilliset yhteydet.</p><p>Tapahtuman avaa DJ Miia Laine.</p><p>Arsen Petrosyan on yksi sukupolvensa merkittävimmistä duduk-soittajista, joka jatkaa mestareiden, kuten Djivan Gasparianin, perintöä ja on samalla luonut oman polkunsa kansainvälisten yhteistyöprojektiensa kautta. Adib Rostami, lahjakas kamancheh- ja tombak-soittaja, on esiintynyt arvostetuilla näyttämöillä yhdistäen klassisen persialaisen musiikin nykyaikaisiin vaikutteisiin.</p><p>Yhdessä he luovat musiikillisen vuoropuhelun, joka ylittää rajat ja heijastaa vuosisatoja jatkunutta armenialaisen ja persialaisen kulttuurin yhteyttä. Heidän esityksensä kutoo yhteen melodioita, jotka kertovat jaetusta historiasta, jatkuvasta vuorovaikutuksesta ja syvistä kulttuurisista sidoksista, jotka ovat kehittyneet sukupolvien ajan.</p><p>Liity mukaan iltaan, jossa musiikki ja perinteet kohtaavat kevään saapumisen kunniaksi. Nowruz on perinteinen ja laajasti juhlittu juhla, jota vietetään Lähi-idän eri kansojen uutena vuotena.</p><p>Tapahtuma tuotetaan yhteistyössä Tusman Studion kanssa.</p><p>Aikataulu: <br>Klo 18:00–18:30 DJ Miia Laine<br>Klo 18:45–19:30 Arsen Petrosyan & Adib Rostami</p>",
                "en": "<p>Celebrate the arrival of spring and Nowruz with a captivating musical performance featuring Armenian duduk master Arsen Petrosyan and Iranian kamancheh player Adib Rostami.</p><p>These two acclaimed musicians bring together their artistry in a unique collaboration that highlights the deep cultural and musical connections between their traditions.</p><p>The event will be opened by DJ Miia Laine.</p><p>Arsen Petrosyan, a leading figure in Armenian duduk, carries forward the legacy of masters like Djivan Gasparian while forging his own path through global collaborations. Adib Rostami, an accomplished kamancheh and tombak player, has performed on prestigious stages, blending classical Persian music with contemporary influences.</p><p>Together, they engage in a musical dialogue that transcends borders, reflecting centuries of interconnected Armenian and Persian traditions. Their performance weaves a tapestry of melodies that echo shared histories, continuous exchange, and deep cultural connections that have flourished across generations.</p><p>Join us for an evening of music and tradition to celebrate the arrival of spring. Nowruz is a long-standing New Year festival celebrated widely across the Middle East.</p><p>This event is co-produce with Tusman Studio</p><p>Schedule:<br>At 18:00–18:30 DJ Miia Laine<br>At 18:45–19:30 Arsen Petrosyan & Adib Rostami</p>"
            },
            "name": {
                "fi": "Arsen Petrosyan & Adib Rostami – Kevään sävelet",
                "en": "Arsen Petrosyan & Adib Rostami – Sounds of Spring"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65689/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63887",
            "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: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: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:p29865/?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/eventseries/3659115",
                        "sv": "https://www.lippu.fi/eventseries/3659115",
                        "en": "https://www.lippu.fi/eventseries/3659115"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-190 €",
                        "sv": "17-190 €",
                        "en": "17-190 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151297,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-24T10:13:07.475130Z",
                    "last_modified_time": "2024-05-24T10:13:07.475146Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753379.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151297/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-24T10:13:07.399767Z",
            "last_modified_time": "2025-03-07T14:13:23.990338Z",
            "date_published": null,
            "start_time": "2025-03-05",
            "end_time": "2025-03-08",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Pääkaupunkiseudun merkittävimpiin jazztapahtumiin lukeutuva Savoy JAZZFest järjestetään seitsemännen kerran maaliskuussa!",
                "sv": "Ett av huvudstadsregionens viktigaste jazzevenemang, Savoy JAZZFest, ordnas för sjunde gången i mars!",
                "en": "Savoy JAZZFest, one of the most significant jazz events in the Helsinki metropolitan area, will be held for the seventh time in March!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/3F0B216B09F0C9EB78721526196F6F4D/Savoy_JAZZFest_2025",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/3F0B216B09F0C9EB78721526196F6F4D/Savoy_JAZZFest_2025",
                "en": "http://www.savoyteatteri.fi/en/events/event/3F0B216B09F0C9EB78721526196F6F4D/Savoy_JAZZFest_2025"
            },
            "description": {
                "fi": "<p>Pääkaupunkiseudun merkittävimpiin jazztapahtumiin lukeutuva Savoy JAZZFest järjestetään seitsemännen kerran maaliskuussa!</p><p>Ohjelma:</p><p>KE 5.3.<br>Klo 19 Lage Lund Quartet (Norja/Iso-Britannia/USA)</p><p>TO 6.3.<br>Klo 19 Francesca Tandoi (Italia) /  Manuel Dunkel Quintet feat. Peter Bernstein (Suomi/USA)</p><p>PE 7.3.<br>Klo 17.30 keskustelutilaisuus teemana UMO Helsinki Jazz Orchestra. Savoy-teatterin sali, vapaa pääsy</p><p>Klo 19 Lizz Wright (USA)+ UMO Helsinki Jazz Orchestra</p><p>LA 8.3.<br>klo 12.30-15.00 Havenly Jazz Brunch: Nat Newborn. Restaurant Haven, Unioninkatu 17</p><p>Klo 17.30 Kaisa’s Machine feat. Mark Turner (Suomi/USA)</p><p>Klo 20 Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA)</p><p>Jatkoklubi: Tuomo Uusitalo Trio + jamit, ravintola Minne. Vapaa pääsy. Käynti Savoy-teatterin kautta</p><p>SU 9.3.<br>Klo 12.30-15.00 Havenly Jazz Brunch: Nat Newborn. Restaurant Haven, Unioninkatu 17. Lisätiedot: hotelhaven.fi</p><p>Liput: <br>Yksittäiset konsertit: 17-67 € <br>Lauantain päivälippu: 75 €<br>Festivaalipassi 4 päivää: 190 €. Vuoden 2024 festivaalipassit myytiin loppuun, joten kannattaa tarttua tilaisuuteen nyt!</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua</p><p>*****<br>Savoy JAZZFest</p><p>Jazzmusiikin kansainvälistä ja kotimaista parhaimmistoa esittelevä Savoy JAZZFest järjestetään vuosittain maaliskuussa. Festivaalin toisen kolmivuotiskauden 2023-25 taiteellinen johtaja on kontrabasisti Kaisa Mäensivu. Festivaalin pääyhteistyökumppani on Hotel Haven.</p>",
                "sv": "<p>Ett av huvudstadsregionens viktigaste jazzevenemang, Savoy JAZZFest, ordnas för sjunde gången i mars!</p><p>Program:<br>ONS 5.3. kl 19 Lage Lund Quartet (Norge/Storbritannien/USA)<br>TO 6.3. kl. 19 Francesca Tandoi (Italien) / Manuel Dunkel Quintet feat. Peter Bernstein (Finland/USA) <br>FRE 7.3. kl. 19 Lizz Wright (USA) + UMO Helsinki Jazz Orchestra<br>LÖ 8.3. kl. 17.30 Kaisa's Machine feat. Mark Turner (Finland/USA) <br>Lö 8.3. kl. 20 Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (USA)</p><p>Biljetter:<br>Enskilda konserter: 17–67 €<br>Dagbiljett för lördag: 75 €<br>Festivalpass 4 dagar: 190 € Festivalpassen för 2024 såldes slut, så ta chansen nu!</p><p>Parkett F18 servering av alkoholdrycker. Balkong ingen åldersgräns, ingen servering av alkoholdrycker</p><p>*****<br>Savoy JAZZFest</p><p>Savoy JAZZFest visar upp det bästa av internationell och inhemsk jazzmusik och ordnas årligen i mars. Kontrabasisten Kaisa Mäensivu är konstnärlig ledare för för festivalen, det är fråga om hennes andra treårsperiod 2023–25. Festivalens huvudpartner är Hotel Haven.</p>",
                "en": "<p>Savoy JAZZFest, one of the most significant jazz events in the Helsinki metropolitan area, will be held for the seventh time in March!</p><p>Programme:<br>WED 5 May at 7 pm Lage Lund Quartet (Norway/UK/USA)<br>THU 6 March at 7 pm Francesca Tandoi (Italy) / Manuel Dunkel Quintet feat. Peter Bernstein (Finland/USA)<br>FRI 7 March at 7 pm Lizz Wright (USA)+ UMO Helsinki Jazz Orchestra<br>SAT 8 March at 5.30 pm Kaisa’s Machine feat. Mark Turner (Finland/USA)<br>Saturday, 8 March at 8 pm Bill Frisell Trio feat. Thomas Morgan and Rudy Royston (US)</p><p>Tickets:<br>Individual concerts: €17-67<br>Saturday’s day ticket: €75<br>Festival Pass 4 days: €190 Festival passes for 2024 sold out, so take the opportunity now!</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area</p><p>*****<br>Savoy JAZZFest</p><p>Savoy JAZZFest, which presents the best international and domestic jazz music, is held annually in March. The artistic director of the festival’s second three-year season 2023-25 is double bassist Kaisa Mäensivu. The main partner of the festival is Hotel Haven.</p>"
            },
            "name": {
                "fi": "Savoy JAZZFest 2025 – ke 5.3.2025 - la 8.3.2024",
                "sv": "Savoy JAZZFest 2025 – ke 5.3.2025 - la 8.3.2024",
                "en": "Savoy JAZZFest 2025 – ke 5.3.2025 - la 8.3.2024"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63887/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65080",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 198006,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-06T09:14:45.596540Z",
                    "last_modified_time": "2025-02-06T09:14:45.596554Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763830.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198006/?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-02-06T09:14:45.543711Z",
            "last_modified_time": "2025-03-07T13:13:20.216353Z",
            "date_published": null,
            "start_time": "2025-03-21T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?",
                "sv": "Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?",
                "en": "Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C014A76F95D287F6EA952866D9812250/Tehdas_teatteri_ELAKOON_ELAIMET_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C014A76F95D287F6EA952866D9812250/Tehdas_teatteri_LANGE_LEVE_DJUREN_",
                "en": "http://www.stoa.fi/en/events/event/C014A76F95D287F6EA952866D9812250/Tehdas_teatteri_LONG_LIVE_THE_ANIMALS_"
            },
            "description": {
                "fi": "<p>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?</p><p>Uskoisitko, että krokotiilin poikaset nukkuvat äitinsä suussa, terävien hampaiden suojassa? Ja että dinosauruksen lähin elossa oleva sukulainen on kana? Ja että ihminenkin on eläin?<br> <br>ELÄKÖÖN ELÄIMET! -esitys vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja moni-ilmeisillä eläinnukkehahmoillaan. Teos on taidetta ja tiedettä yhdistävä koko perheen nukketeatteriesitys, jonka lähtökohtana ovat ihaillut, pelätyt, tavallisesti kummalliset eläimet ja niiden elämä. Ja ihminen ihmettelemässä. <br> <br>TYÖRYHMÄ ELÄKÖÖN ELÄIMET!<br>Konsepti, käsikirjoitus, visuaalinen suunnittelu ja -rakennus: <br>Pia Kalenius ja Nanna Mäkinen</p><p>Valosuunnittelu:<br>Jarkko Forsman</p><p>Musiikki ja äänisuunnittelu:<br>Työryhmä</p><p>Dramaturgia- ja ohjausmentori: <br>Venla Luoma</p><p>Nuketusmentori:<br>Lotta Virtanen</p><p>Esiintyjät:<br>Nanna Mäkinen ja Pia Kalenius</p><p>Sir David Attenboroughin äänenä:<br>Jussi Virkkumaa</p><p>Graafinen ilme:<br>Mia Koo</p><p>Tuotanto<br>Tehdas teatteri, Turku  (ensi-ilta 7.3.2025)</p><p>Kumppanit:<br>Aura of Puppets ja päiväkoti Pääskynpesän lapset</p><p>Tuotanto: Tehdas teatteri, Turku<br>Kohdeyleisö: +5-v<br>Kesto: 40 min</p><p>Koululaisnäytöksiin päiväkotiryhmille vapaa pääsy. Pakolliset ilmoittautumiset kultus.fi 9.1. alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.</p><p><b>Hurraa! -teatteriviikot  <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?</p><p>Kan du tänka dig att krokodilungar sover i sin mammas mun, skyddade av vassa tänder? Och att den närmaste levande släktingen till en dinosaurie är hönan? Och att människan också är ett djur?<br> <br>Föreställningen LÄNGE LEVE DJUREN! ger dig svar på dina frågor med busiga fakta, hjärtlig humor och mångfasetterade karaktärer i form av djurdockor. Verket är en dockteaterföreställning för hela familjen som kombinerar konst och vetenskap, och är baserad på djur som är beundrade, fruktade och ofta märkliga, och djurens liv. Och en människa som undrar. <br> <br><b>ARBETSGRUPP</b><br>Koncept, manus, visuell design och konstruktion: Pia Kalenius ja Nanna Mäkinen<br>Ljusdesign: Jarkko Forsman<br>Musik och ljuddesign: Arbetsgrupp<br>Dramaturgi- och regihandledare: Venla Luoma<br>Dockföringsmentor: Lotta Virtanen<br>Medverkande: Nanna Mäkinen ja Pia Kalenius<br>Som rösten av Sir David Attenborough: Jussi Virkkumaa<br>Grafisk profil: Mia Koo<br>Produktion: Tehdas teatteri, Åbo (premiär 7.3.2024)<br>Partners: Aura of Puppets ja förskolan Pääskynpesäs barn</p><p>Målgrupp: barn i åldern 5+<br>Längd: 40 min.</p>",
                "en": "<p>Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?</p><p>Would you believe that crocodile hatchlings sleep in their mother’s mouth, protected by its sharp teeth? And that a dinosaur’s closest living relative is a chicken? And that man is also an animal?<br> <br>LONG LIVE THE ANIMALS! answers your questions with wild facts, heartfelt humour and multi-faceted animal doll characters. It is a puppet theatre performance for the whole family that combines art and science. Its premise is animals – the admired, feared, ordinarily strange ones – and their lives. And humans, wondering. <br> <br><b>WORKING GROUP</b><br>Concept, script, visual design, and construction: Nanna Mäkinen and Pia Kalenius<br>Lighting design: Jarkko Forsman<br>Music and sound design: Working group<br>Dramaturgy and directing mentor: Venla Luoma<br>Puppeteering mentor: Lotta Virtanen<br>Performers: Nanna Mäkinen ja Pia Kalenius<br>As the voice of Sir David Attenborough: Jussi Virkkumaa<br>Graphic design: Mia Koo<br>Production: Tehdas Theatre, Turku (premiere 7 March 2024)<br>Partners: Aura of Puppets and the children of Pääskynpesä daycare</p><p>Target audience: 5+<br>Duration: 40 mins.</p>"
            },
            "name": {
                "fi": "Tehdas teatteri: ELÄKÖÖN ELÄIMET! – Näytös päiväkotiryhmille | Hurraa! -teatteriviikot",
                "sv": "Tehdas teatteri: LÄNGE LEVE DJUREN! – för dagisgrupper | Hurraa! -teaterveckor",
                "en": "Tehdas teatteri: LONG LIVE THE ANIMALS! – for kindergarten groups | Hurraa! Theatre Weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65080/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65683",
            "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: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: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/greta-tuotanto-buenos-airesista-berliiniin-savoy-teatteri-19632053/",
                        "sv": "https://www.lippu.fi/event/greta-tuotanto-buenos-airesista-berliiniin-savoy-teatteri-19632053/",
                        "en": "https://www.lippu.fi/event/greta-tuotanto-buenos-airesista-berliiniin-savoy-teatteri-19632053/"
                    },
                    "description": null,
                    "price": {
                        "fi": "38-48 €",
                        "sv": "38-48 €",
                        "en": "38-48 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 312363,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-03-07T12:13:31.436083Z",
                    "last_modified_time": "2025-03-07T12:13:31.436097Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766208.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/312363/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-03-07T12:13:31.415960Z",
            "last_modified_time": "2025-03-07T12:13:31.486652Z",
            "date_published": null,
            "start_time": "2025-10-05T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tuliset tangot ja upea elokuvamusiikki kohtaavat dramatisoidussa konsertissa",
                "sv": "Eldiga tangor och storartad filmmusik möts i en dramatiserad konsert",
                "en": "Fiery tangos and stunning movie music meet in a dramatised concert"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5DC8327336D701A7ECDA98FC5E59F681/Greta_Tuotanto_Buenos_Airesista_Berliiniin",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5DC8327336D701A7ECDA98FC5E59F681/Greta_Tuotanto_Buenos_Airesista_Berliiniin",
                "en": "http://www.savoyteatteri.fi/en/events/event/5DC8327336D701A7ECDA98FC5E59F681/Greta_Tuotanto_Buenos_Airesista_Berliiniin"
            },
            "description": {
                "fi": "<p>Tuliset tangot ja upea elokuvamusiikki kohtaavat dramatisoidussa konsertissa</p><p>Dramatisoitu ja visualisoitu konsertti Buenos Airesista Berliiniin on kooste tulisia tangoja Argentiinasta ja saksalaisia 1920–1930-lukujen schlagereita. Helmut Schlagerhauer on tangoprimas kuuman ja kostean Buenos Airesin sydämestä. Matkallaan Euroopassa hän eksyy nuoruuden kaupunkiinsa Berliiniin, eräälle sen rosoisista jazzklubeista, jota emännöi hänen takavuosien morsiamensa, säkenöivä ja intohimoinen kabareetähti Greta Kreuzberg. Omat mausteensa kuvioon tuo yllätyksellinen mammanpoika, pianisti Marco Bach.</p><p>Konsertissa kuullaan suurten saksalaisten elokuvasäveltäjien kuten Mischa Spolianskyn, Friedrich Holländerin, Robert Stolzin musiikkia Babylon Berlinin, Max Raaben ja Marlene Dietrichin henkeen. Vastapainoa tarjoavat mm. mestari Carlos Gardelin ja Astor Piazzollan tangot.</p><p>Kepeäksi käsikirjoitetun konsertin esittävät laulajat Reetta Ristimäki, Harri Kaitila ja Marko Puro. Soitinyhtyeessä soittavat klarinetisti ja saksofonisti Kimmo Leppälä, viulisti Mauri Saarikoski, kontrabasisti Ilkka Leppälä, harmonikkataiteilija ja bandoneon-soittaja Mikko Helenius sekä pianisti Marko Puro. Esityksen kuvakerronnasta, projisoinneista, puvuista ja maskeerauksesta vastaa kansainvälisesti tunnettu taiteilijapari Anis Kronidova ja Pavel Semchenko.</p><p>Käsikirjoitus ja musiikkidramaturgia: Reetta Ristimäki<br>Sovitukset: Marko Puro<br>Kuvakerronta, projisoinnit, puvut, maskeeraus: Anis Kronidova ja Pavel Semchenko<br>Tuotanto: Greta Tuotanto</p><p>Kesto n. 2 h 10 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>***</p><p>Siirtyneen Greta Tuotanto: Buenos Airesista Berliiniin -konsertin (30.3.2025) liput käyvät sellaisenaan sunnuntaina 5.10.2025 klo 15 alkavaan konserttiin. Lippuja ei tarvitse vaihtaa.</p>",
                "sv": "<p>Eldiga tangor och storartad filmmusik möts i en dramatiserad konsert</p><p>Den dramatiserade och visualiserade konserten från Buenos Aires till Berlin är en sammanställning av eldiga argentinska tangor och tyska schlagrar från 1920- och 1930-talen. Helmut Schlagerhauer är en tangoprins från hjärtat av det varma och fuktiga Buenos Aires. På en resa till Europa går han vilse i sin ungdomsstad Berlin, hamnar på en av dess grova jazzklubbar, där värdinnan är hans forna fästmö, den briljanta och passionerade kabaréstjärnan Greta Kreuzberg. Den överraskande morsgrisen, pianisten Marco Bach, tillför sin egen krydda.</p><p>På konserten får vi höra musik av stora tyska filmkompositörer såsom Mischa Spoliansky, Friedrich Holländer och Robert Stolz i andan för Babylon Berlin, Max Raabe och Marlene Dietrich. Som motvikt bjuds vi på tangor av bland andra mästaren Carlos Gardel och Astor Piazzolla.</p><p>Den lättsamma konserten framförs av sångarna Reetta Ristimäki, Harri Kaitila och Marko Puro. I ensemblen ingår klarinettisten och saxofonisten Kimmo Leppälä, violinisten Mauri Saarikoski, kontrabasisten Ilkka Leppälä, dragspelaren och bandoneonisten Mikko Helenius samt pianisten Marko Puro. För föreställningens bildberättande, projektioner, kostymdesign och maskering svarar den internationellt kända konstnärsduon Anis Kronidova och Pavel Semchenko.</p><p>Manus och musikdramaturgi: Reetta Ristimäki<br>Arrangemang: Marko Puro<br>Bildberättande, projektioner, dräkter, maskering: Anis Kronidova och Pavel Semchenko<br>Produktion: Greta Tuotanto</p><p>Längd ca 2 h 10 min., inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Ingen åldersgräns på balkongen, ingen servering av alkoholdrycker.</p><p>***</p><p>Datumet till Greta Tuotanto: Buenos Airesista Berliiniin föreställning 30.3.2025har flyttats. Det nya datumet är on sö 5.10.2025 kl 15. Redan köpta biljetterna är giltiga till den nya konserten och behövs inte bytas.</p>",
                "en": "<p>Fiery tangos and stunning movie music meet in a dramatised concert</p><p>The dramatised and visualised concert “from Buenos Aires to Berlin” is a collection of fiery tangos from Argentina and German schlagers from the 1920s–1930s. Helmut Schlagerhauer is a tango master from the heart of hot and humid Buenos Aires. On his way to Europe, he gets lost in Berlin, the city of his youth, and one of its rough jazz clubs, hosted by his past bride, the sparkling and passionate cabaret star Greta Kreuzberg. A surprising mama’s boy, pianist Marco Bach, makes the situation even more confusing.</p><p>The concert will feature the music of great German film composers such as Mischa Spoliansky, Friedrich Holländer, Robert Stolz to the spirit of Babylon Berlin, Max Raabe and Marlene Dietrich. A balancing element is offered by the tangos of master Carlos Gardel and Astor Piazzolla, among others.</p><p>Singers Reetta Ristimäki, Harri Kaitila and Marko Puro perform the concert, which was written not to be taken seriously. The band consists of clarinetist and saxophonist Kimmo Leppälä, violinist Mauri Saarikoski, double bassist Ilkka Leppälä, accordionist and bandoneon player Mikko Helenius and pianist Marko Puro. Anis Kronidova and Pavel Semchenko, an internationally renowned artist couple, are responsible for the visual storytelling, projections, costumes and make-up of the show.</p><p>Script and music dramaturgy: Reetta Ristimäki<br>Arrangements: Marko Puro<br>Visual storytelling, projections, costumes, make-up: Anis Kronidova and Pavel Semchenko<br>Production: Greta Production</p><p>Duration: approx. 2 h 10 min, including an intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>***</p><p>Greta Tuotanto: Buenos Airesista Berliiniin concert was rescheduled from March 30th 2025 to October 5th 2025 at 3 pm. The tickets that have already been purchased will be valid for the new event date as they are.</p>"
            },
            "name": {
                "fi": "Greta Tuotanto: Buenos Airesista Berliiniin",
                "sv": "Greta Tuotanto: Buenos Airesista Berliiniin",
                "en": "Greta Tuotanto: Buenos Airesista Berliiniin"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Greta Tuotanto Oy",
                "sv": "Greta Tuotanto Oy",
                "en": "Greta Tuotanto Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65683/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65311",
            "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: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: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/yso:p29865/?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/eventseries/name-3801309"
                    },
                    "description": null,
                    "price": {
                        "fi": "38-48 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153531,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-20T12:15:53.916727Z",
                    "last_modified_time": "2024-12-20T12:15:53.916774Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764528.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153531/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-20T12:15:53.863243Z",
            "last_modified_time": "2025-03-07T12:13:25.108038Z",
            "date_published": null,
            "start_time": "2025-03-30T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/281798A77906A337A1F1D6DA68ADC874/Greta_Tuotanto_Buenos_Airesista_Berliiniin"
            },
            "description": {
                "fi": "<p>Su 30.3.2025 Greta Tuotannon Buenos Airesista Berliiniin -konsertti siirtyy tuotannollisista syistä johtuen pidettäväksi sunnuntaina 5.10.2025 klo 15.</p><p>Jo hankitut liput kelpaavat sellaisenaan myös tulevaan konserttiin. Lippuja ei tarvitse vaihtaa.</p><p>Mikäli ajankohta ei syystä tai toisesta käy, jo maksetuista lipuista tulee hakea rahanpalautusta keskiviikkoon 2.4.2025 mennessä, ja rahat saa tällöin takaisin lukuun ottamatta Lippupisteen palvelu- tai toimitusmaksuja.<br>Jo maksetut liput voi myös vaihtaa Savoy-teatterin lahjakorttiin. Lahjakortti on voimassa kaksi (2) vuotta myöntöhetkestä, ja sillä voi ostaa lippuja Savoy-teatterin tapahtumiin Savoy-teatterin lipunmyynnistä ja Lippupisteen täyden palvelun lippukaupoista. Lahjakortti toimitetaan postitse asiakkaan ilmoittamaan osoitteeseen.</p><p>Ohje lippujen vaihtamiseksi lahjakorttiin:</p><p>Ilmoita lipun viivakoodinumero, rivi- ja paikkanumero sekä osoite johon lahjakortti postitetaan osoitteeseen raisa.ailio@hel.fi<br> <br>Ohje lippujen palautuksiin:<br> <br>Lippurahojen palautukset hoidetaan verkkolinkin kautta:<br>https://web.lippu.fi/palautus/<br> <br>Ostetuista lipuista hyvitetään lipunhinta (ei palvelu- tai toimitusmaksuja).<br> <br>Tapahtumajärjestäjä Greta Tuotanto Oy sekä Savoy-teatteri ja Lippupiste pahoittelevat muutoksesta aiheutuvaa vaivaa!</p><p>***<br>Tuliset tangot ja upea elokuvamusiikki kohtaavat dramatisoidussa konsertissa</p><p>Dramatisoitu ja visualisoitu konsertti Buenos Airesista Berliiniin on kooste tulisia tangoja Argentiinasta ja saksalaisia 1920–1930-lukujen schlagereita. Helmut Schlagerhauer on tangoprimas kuuman ja kostean Buenos Airesin sydämestä. Matkallaan Euroopassa hän eksyy nuoruuden kaupunkiinsa Berliiniin, eräälle sen rosoisista jazzklubeista, jota emännöi hänen takavuosien morsiamensa, säkenöivä ja intohimoinen kabareetähti Greta Kreuzberg. Omat mausteensa kuvioon tuo yllätyksellinen mammanpoika, pianisti Marco Bach.</p><p>Konsertissa kuullaan suurten saksalaisten elokuvasäveltäjien kuten Mischa Spolianskyn, Friedrich Holländerin, Robert Stolzin musiikkia Babylon Berlinin, Max Raaben ja Marlene Dietrichin henkeen. Vastapainoa tarjoavat mm. mestari Carlos Gardelin ja Astor Piazzollan tangot.</p><p>Kepeäksi käsikirjoitetun konsertin esittävät laulajat Reetta Ristimäki, Harri Kaitila ja Marko Puro. Soitinyhtyeessä soittavat klarinetisti ja saksofonisti Kimmo Leppälä, viulisti Mauri Saarikoski, kontrabasisti Ilkka Leppälä, harmonikkataiteilija ja bandoneon-soittaja Mikko Helenius sekä pianisti Marko Puro. Esityksen kuvakerronnasta, projisoinneista, puvuista ja maskeerauksesta vastaa kansainvälisesti tunnettu taiteilijapari Anis Kronidova ja Pavel Semchenko.</p><p>Käsikirjoitus ja musiikkidramaturgia: Reetta Ristimäki<br>Sovitukset: Marko Puro<br>Kuvakerronta, projisoinnit, puvut, maskeeraus: Anis Kronidova ja Pavel Semchenko<br>Tuotanto: Greta Tuotanto</p><p>Kesto n. 2 h 10 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p>"
            },
            "name": {
                "fi": "Greta Tuotanto: Buenos Airesista Berliiniin – KONSERTTI SIIRTYY -> su 5.10."
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Greta Tuotanto Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65311/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65493",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 163500,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-22T15:14:57.630550Z",
                    "last_modified_time": "2025-01-22T15:14:57.630567Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763456.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163500/?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-01-22T15:14:57.584221Z",
            "last_modified_time": "2025-03-07T12:13:23.058461Z",
            "date_published": null,
            "start_time": "2025-03-20T08:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!",
                "sv": "Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!",
                "en": "All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/1B0E84FD632899C395834A5E67795B74/Koululaisnaytos_Ama_Kyei_Kukkatanssit",
                "sv": "http://www.stoa.fi/sv/evenemang/event/1B0E84FD632899C395834A5E67795B74/Ama_Kyei_Blomsterdans",
                "en": "http://www.stoa.fi/en/events/event/1B0E84FD632899C395834A5E67795B74/Ama_Kyei_Flower_Dances"
            },
            "description": {
                "fi": "<p>Kaikki kukat ovat menettäneet värinsä ja siten supervoimansa. Onneksemme Ama osaa kommunikoida luontoäidin kanssa tanssillaan ja yleisökin saa tanssia!</p><p>Yhdessä luontoäidin ohjauksen ja lasten avun kanssa saamme mahdollisuuden auttaa kukkia saamaan takaisin värinsä ja supervoimansa. aikana saamme muun muassa tanssia sade-, maa, tuuli ja aurinkotansseja, sekä nähdä kuinka taianomainen vihreä vesi syntyy. Tämä esitys muistuttaa meitä vaalimaan kaikkea, mistä välitämme.</p><p>Kukkatanssit on vuorovaikutteinen esitys 3-7 vuotiaille lapsille sekä erityislapsille lukioikään asti.</p><p>Koreografia ja tanssi: Ama Kyei<br>Luovat avustajat: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Rahoittaja: Konstnärsnämnden ja Region Stockholm<br>Traileri & kuva: Jonathan Morell<br>Musiikki trailerissa: Sara Celaya</p><p>Kesto: 30 min<br>Ikäsuositus: 3–7 vuotta<br>Kieli: suomi</p><p>20.3. päiväkoti- ja koululaisnäytöksiin ryhmille vapaa pääsy. Klo 10.30 esitys on suomeksi ja klo 12 esitys on ruotsiksi.<br>Pakolliset ilmoittautumiset osoitteessa https://kultus.fi/fi</p><p><b>Hurraa! -teatteriviikot<br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Alla blommor har förlorat sin färg och därmed sin superkraft. Lyckligtvis vet Ama hur hon ska kommunicera med Moder Natur genom sin dans, och även publiken får dansa!</p><p>Tillsammans med Moder Naturs vägledning och barnens hjälp får vi möjligheten att hjälpa blommorna att återfå sin färg och superkraft. Under föreställningen dansar vi bland annat regn-, jord-, vind- och soldanser och ser hur magiskt grönt vatten uppstår. Föreställningen påminner oss om att värna om allt vi bryr oss om.</p><p>Blomsterdans är en interaktiv föreställning för barn i åldern 3–7 år och för barn med särskilda behov upp till gymnasieåldern.</p><p>Koreografi och dans: Ama Kyei<br>Kreativa medhjälpare: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Sponsor: Konstnärsnämnden och Region Stockholm<br>Trailer & foto: Jonathan Morell<br>Musik i trailern: Sara Celaya</p><p>Längd: 30 min.<br>Åldersrekommendation: 3–7 år<br>Språk: finska</p>",
                "en": "<p>All flowers have lost their colour and, therefore, their superpower. Luckily for us, Ama can communicate with Mother Nature with her dance, and the audience gets to dance too!</p><p>Together with Mother Nature’s guidance and with help from the children, we can help flowers regain their colour and superpower. We get to dance rain, earth, wind and sun dances and see how magical green water is born. This performance reminds us to cherish everything we care about.</p><p>Flower Dances is an interactive performance for 3–7-year-old children and special needs children up to general upper secondary school.</p><p>Choreography and dance: Ama Kyei<br>Creative Assistants: Fredrika Burvall, Love Andersson, Marika Peura, Mona Namer, Selma Fikerte, Rebecca Livanou<br>Funded by: The Swedish Arts Grants Committee and Region Stockholm<br>Trailer & image: Jonathan Morell<br>Trailer music: Sara Celaya</p><p>Duration: 30 mins.<br>Age recommendation: 3–7 years<br>Language: Finnish</p>"
            },
            "name": {
                "fi": "Koululaisnäytös | Ama Kyei: Kukkatanssit – Hurraa!-teatteriviikot",
                "sv": "Ama Kyei: Blomsterdans – Hurraa!-teaterveckor",
                "en": "Ama Kyei: Flower Dances – Hurraa! Theatre Weeks"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65493/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65480",
            "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: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: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:p29865/?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/eventseries/name-3789369",
                        "sv": "https://www.lippu.fi/eventseries/name-3789369",
                        "en": "https://www.lippu.fi/eventseries/name-3789369"
                    },
                    "description": null,
                    "price": {
                        "fi": "17-54 €",
                        "sv": "17-54 €",
                        "en": "17-54 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 161529,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-21T08:14:42.061810Z",
                    "last_modified_time": "2025-01-21T08:14:42.061826Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764469.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/161529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-21T08:14:42.029598Z",
            "last_modified_time": "2025-03-07T11:15:58.635475Z",
            "date_published": null,
            "start_time": "2025-04-04T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Savoy-teatterin uuden Sound Tracker -konserttisarjan avaa huikea argentiinalainen laulaja ja multi-instrumentalisti Mel Muñiz.",
                "sv": "Savoy-teaterns nya konsertserie Sound Tracker inleds av den fantastiska argentinska sångerskan och multiinstrumentalisten Mel Muñiz.",
                "en": "The Savoy Theatre’s new Sound Tracker concert series will be opened by the amazing Argentine singer and multi-instrumentalist Mel Muñiz."
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/DB021CEBB2F1B25AD1EA606FE00E53DC/Savoy_Sound_Tracker_Presents_Mel_Mu_iz_Argentiina_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/DB021CEBB2F1B25AD1EA606FE00E53DC/Savoy_Sound_Tracker_Presents_Mel_Mu_iz_Argentiina_",
                "en": "http://www.savoyteatteri.fi/en/events/event/DB021CEBB2F1B25AD1EA606FE00E53DC/Savoy_Sound_Tracker_Presents_Mel_Mu_iz_Argentiina_"
            },
            "description": {
                "fi": "<p>Savoy-teatterin uuden Sound Tracker -konserttisarjan avaa huikea argentiinalainen laulaja ja multi-instrumentalisti Mel Muñiz.</p><p>Muñiz tunnetaan monipuolisesta musiikillisesta tyylistään, joka ulottuu jazzista ja swingistä latinorytmeihin, kuten boleroon, bachataan ja soniin. Kotimaassaan erittäin suosittu artisti saapuu nyt ensimmäistä kertaa Suomeen.</p><p>Pääinstrumenttinsa laulun lisäksi Mel on tuottelias lauluntekijä, jota kiehtoo erityisesti symbolinen kieli ja mystiikka. Hänen menestyksekäs soolodebyyttialbuminsa Aguerrida (2020) on kerännyt miljoonia kuuntelukertoja eri suoratoistopalveluissa.</p><p>Muñiz on soolouransa lisäksi ollut mukana lukuisissa tunnetuissa yhtyeissä kuten La Familia de Ukeleles, Bourbon Sweethearts ja Las Taradas. Hänet tunnetaan Latinalaisessa Amerikassa myös aktiivisesta työstään tasa-arvon ja ihmisoikeuksien puolestapuhujana.</p><p>Savoyssa Muñiz esiintyy yhdessä vain tätä keikkaa varten kootun argentiinalaissuomalaisen bändin kanssa. Sound Tracker -ideologiaa parhaimmillaan edustavan kokoonpanon myötä tunnelma on taattu!</p><p>Mel Muñiz, laulu, kitara<br>Juan Pablo, kitarat<br>Ako Kiiski, kontrabasso <br>Aarne Riikonen, perkussiot<br>Mamba Assefa, perkussiot<br>Jay Kortehisto, pasuuna<br>Pope Puolitaival, saksofonit<br>Tero Lindberg, trumpetti</p><p>Kesto n. 2 h, sis. väliajan</p><p>Permanto K-18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p><b>Savoy & Sound Tracker Presents</b></p><p>Savoy & Sound Tracker Presents! -konserttisarjan taiteellisen sisällön kuratoi muusikko <b>Sami Yaffa</b>. ”Konserttisarjan ydin on tavallaan sama kuin tv:n Sound Tracker -ohjelmissa. Toivon mukaan konsertti yllättää kuuntelijan, avaa musiikillisen oven suoraan nirvanaan ja antaa kuuntelijalle ikimuistoisen elämyksen”, Sami Yaffa kuvailee.<br>.</p>",
                "sv": "<p>Savoy-teaterns nya konsertserie Sound Tracker inleds av den fantastiska argentinska sångerskan och multiinstrumentalisten Mel Muñiz.</p><p>Muñiz är känd för sin mångsidiga musikstil, som sträcker sig från jazz och swing till latinska rytmer, såsom bolero, bachata och son. Artisten, som är mycket populär i sitt hemland, kommer nu till Finland för första gången.</p><p>Förutom huvudinstrumentet sång är Mel en produktiv låtskrivare. Hon är särskilt fascinerad av symboliskt språk, den mystik som öppnas genom dans och samspelet mellan ljus och skugga. Hennes framgångsrika solodebutalbum Aguerrida (2020) har spelats miljontals gånger på olika streamingtjänster.</p><p>Utvöver solokarriären har Muñiz varit med i flera välkända band, såsom La Familia de Ukeleles, Bourbon Sweethearts och Las Taradas. Hon för också aktivt fram sociala missförhållanden i Latinamerika. På Savoy uppträder Muñiz med sin argentinsk-spanska kvintett, som förutom sång består av bland annat gitarrer, slagverk, trumpet och kontrabas. Stämningen är garanterad!</p><p>Längd: ca 2 h (inklusive paus)</p><p>Parkett F-18, servering av alkoholdrycker. Ingen åldersgräns på balkongen, ingen servering av alkoholdrycker.</p><p>Savoy & Sound Tracker Presents</p><p>Det konstnärliga innehållet i konsertserien Savoy & Sound Tracker Presents! kurateras av musikern Sami Yaffa.<br>“Kärnan i konsertserien är ungefär densamma som i Sound Tracker-programmen på TV. Jag hoppas att konserten kommer att överraska lyssnaren, öppna den musikaliska dörren direkt till nirvana och ge lyssnaren en minnesvärd upplevelse”, beskriver Sami Yaffa.</p>",
                "en": "<p>The Savoy Theatre’s new Sound Tracker concert series will be opened by the amazing Argentine singer and multi-instrumentalist Mel Muñiz.</p><p>Muñiz is known for her diverse musical style, ranging from jazz and swing to Latin rhythms such as bolero, bachata and son. An artist very popular in her home country is coming to Finland for the first time.</p><p>In addition to her instrument, singing, Mel is a prolific songwriter, who is particularly fascinated by symbolic language, mysticism through dance, and the interaction between light and shadow. Her successful solo debut album Aguerrida (2020) has gathered millions of listens on various streaming services.</p><p>In addition to her solo career, Muñiz has been involved in numerous well-known bands such as La Familia de Ukeleles, Bourbon Sweethearts and Las Taradas. She also actively takes up social grievances in Latin America. In Savoy, Muñiz will perform together with her Argentine-Spanish quintet, whose line-up includes, in addition to singing, also guitars, percussion, trumpet and double bass, among others. The atmosphere is guaranteed!</p><p>Duration: approx. 2 h, including intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. Balcony, no age limit, a non-licensed area.</p><p>Savoy & Sound Tracker Presents</p><p>The artistic content of the Savoy & Sound Tracker Presents! concert series is curated by musician Sami Yaffa.<br>“The essence of the concert series is in a way the same as in TV’s Sound Tracker programs. Hopefully, the concert will surprise the listener, open the musical door directly to Nirvana and give the listener a memorable experience,” Sami Yaffa describes.</p>"
            },
            "name": {
                "fi": "Savoy & Sound Tracker Presents: Mel Muñiz (Argentiina)",
                "sv": "Savoy & Sound Tracker Presents: Mel Muñiz (Argentiina)",
                "en": "Savoy & Sound Tracker Presents: Mel Muñiz (Argentiina)"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65480/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65645",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 247654,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-20T15:14:10.439645Z",
                    "last_modified_time": "2025-02-20T15:14:10.439658Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759016.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/247654/?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-02-20T15:14:10.413118Z",
            "last_modified_time": "2025-03-07T09:13:17.340424Z",
            "date_published": null,
            "start_time": "2025-03-08T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78315A1D55F4D655DE4CCDBD029F2424/Paddington_seikkailee_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78315A1D55F4D655DE4CCDBD029F2424/Paddington_seikkailee_7_",
                "en": "http://www.malmitalo.fi/en/events/event/78315A1D55F4D655DE4CCDBD029F2424/Paddington_seikkailee_7_"
            },
            "description": {
                "fi": "<p>Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!</p><p>Paddington seikkailee vie rakastetun marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta. Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Ikäraja: 7<br>Kesto: 107 min.<br>Ensi-ilta: 24.1.2025</p><p>Suomenkieliset, dubatut esitykset 15.2., 21.2., 1.3. ja 7.3</p><p>Lisäksi 22.2. näytös alkuperäiskielellä englanniksi, tekstitys suomi ja ruotsi.</p>"
            },
            "name": {
                "fi": "Paddington seikkailee (7) – Kino Helios",
                "sv": "Paddington seikkailee (7) – Kino Helios",
                "en": "Paddington seikkailee (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65645/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65582",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 201400,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-07T11:13:08.742744Z",
                    "last_modified_time": "2025-02-07T11:13:08.742762Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759007.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201400/?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-02-07T11:13:08.727460Z",
            "last_modified_time": "2025-03-07T09:13:15.902866Z",
            "date_published": null,
            "start_time": "2025-03-01T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D777906F87A8C8387E34F8E960073441/Paddington_seikkailee_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/D777906F87A8C8387E34F8E960073441/Paddington_seikkailee_7_",
                "en": "http://www.malmitalo.fi/en/events/event/D777906F87A8C8387E34F8E960073441/Paddington_seikkailee_7_"
            },
            "description": {
                "fi": "<p>Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!</p><p>Paddington seikkailee vie rakastetun marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta. Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Ikäraja: 7<br>Kesto: 107 min.<br>Ensi-ilta: 24.1.2025</p><p>Suomenkieliset, dubatut esitykset 15.2., 21.2., 1.3. ja 7.3</p><p>Lisäksi 22.2. näytös alkuperäiskielellä englanniksi, tekstitys suomi ja ruotsi.</p>"
            },
            "name": {
                "fi": "Paddington seikkailee (7) – Kino Helios",
                "sv": "Paddington seikkailee (7) – Kino Helios",
                "en": "Paddington seikkailee (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65582/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65581",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189615,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:47.116106Z",
                    "last_modified_time": "2025-02-03T12:13:47.116118Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758998.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189615/?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-02-03T12:13:47.104653Z",
            "last_modified_time": "2025-03-07T09:13:14.790500Z",
            "date_published": null,
            "start_time": "2025-02-22T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EBABB7A7EADDEDC954383E523DEFB48D/Paddington_seikkailee_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/EBABB7A7EADDEDC954383E523DEFB48D/Paddington_seikkailee_7_",
                "en": "http://www.malmitalo.fi/en/events/event/EBABB7A7EADDEDC954383E523DEFB48D/Paddington_seikkailee_7_"
            },
            "description": {
                "fi": "<p>Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!</p><p>Paddington seikkailee vie rakastetun marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta. Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Ikäraja: 7<br>Kesto: 107 min.<br>Ensi-ilta: 24.1.2025</p><p>Suomenkieliset, dubatut esitykset 15.2., 21.2., 1.3. ja 7.3</p><p>Lisäksi 22.2. näytös alkuperäiskielellä englanniksi, tekstitys suomi ja ruotsi.</p>"
            },
            "name": {
                "fi": "Paddington seikkailee (7) – Kino Helios",
                "sv": "Paddington seikkailee (7) – Kino Helios",
                "en": "Paddington seikkailee (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65581/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65580",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189613,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:46.743477Z",
                    "last_modified_time": "2025-02-03T12:13:46.743493Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758995.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189613/?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-02-03T12:13:46.726474Z",
            "last_modified_time": "2025-03-07T09:13:14.521193Z",
            "date_published": null,
            "start_time": "2025-02-21T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E7C6403CEB6DC3EF4B2A6E3F4E8EC9C/Paddington_seikkailee_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E7C6403CEB6DC3EF4B2A6E3F4E8EC9C/Paddington_seikkailee_7_",
                "en": "http://www.malmitalo.fi/en/events/event/3E7C6403CEB6DC3EF4B2A6E3F4E8EC9C/Paddington_seikkailee_7_"
            },
            "description": {
                "fi": "<p>Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!</p><p>Paddington seikkailee vie rakastetun marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta. Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Ikäraja: 7<br>Kesto: 107 min.<br>Ensi-ilta: 24.1.2025</p><p>Suomenkieliset, dubatut esitykset 15.2., 21.2., 1.3. ja 7.3</p><p>Lisäksi 22.2. näytös alkuperäiskielellä englanniksi, tekstitys suomi ja ruotsi.</p>"
            },
            "name": {
                "fi": "Paddington seikkailee (7) – Kino Helios",
                "sv": "Paddington seikkailee (7) – Kino Helios",
                "en": "Paddington seikkailee (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65580/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65579",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/",
                        "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-paddington-seikkailee-7-3827168/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 189612,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-03T12:13:45.622896Z",
                    "last_modified_time": "2025-02-03T12:13:45.622916Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758989.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/189612/?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-02-03T12:13:45.574811Z",
            "last_modified_time": "2025-03-07T09:13:13.497165Z",
            "date_published": null,
            "start_time": "2025-02-15T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2F06C2A187799A6C03165E6EA6898DA0/Paddington_seikkailee_7_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/2F06C2A187799A6C03165E6EA6898DA0/Paddington_seikkailee_7_",
                "en": "http://www.malmitalo.fi/en/events/event/2F06C2A187799A6C03165E6EA6898DA0/Paddington_seikkailee_7_"
            },
            "description": {
                "fi": "<p>Elokuva on täynnä Paddingtonin ominaista nokkeluutta, viehätysvoimaa ja hervotonta huumoria!</p><p>Paddington seikkailee vie rakastetun marmeladia rakastavan karhun viidakkoon jännittävälle ja vauhdikkaalle seikkailulle.</p><p>Kun Paddington saa kuulla rakkaan Lucy-tätinsä kadonneen seniorikarhujen yhteisöstä, hän ja Brownin perhe suuntaavat oitis Perun viidakkoon etsimään häntä. Etsintä alkaa arvoitukselliselle kartalle merkitystä johtolangasta. Aikeenaan ratkaista kadonneen tätinsä arvoitus, Paddington lähtee jännittävälle matkalle läpi Amazonin sademetsien – ja löytää sattumalta yhden maailman legendaarisimmista aarteista.</p><p>Ikäraja: 7<br>Kesto: 107 min.<br>Ensi-ilta: 24.1.2025</p><p>Suomenkieliset, dubatut esitykset 15.2., 21.2., 1.3. ja 7.3</p><p>Lisäksi 22.2. näytös alkuperäiskielellä englanniksi, tekstitys suomi ja ruotsi.</p>"
            },
            "name": {
                "fi": "Paddington seikkailee (7) – Kino Helios",
                "sv": "Paddington seikkailee (7) – Kino Helios",
                "en": "Paddington seikkailee (7) – Kino Helios"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65579/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65240",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-light-in-babylon-tur-isr-fra-vuotalo-19594411/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-light-in-babylon-tur-isr-fra-vuotalo-19594411/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-light-in-babylon-tur-isr-fra-vuotalo-19594411/"
                    },
                    "description": null,
                    "price": {
                        "fi": "22 € / 17 €",
                        "sv": "22 € / 17 €",
                        "en": "22 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153376,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-10T15:14:16.276516Z",
                    "last_modified_time": "2024-12-10T15:14:16.276533Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761666.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153376/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-10T15:14:16.246133Z",
            "last_modified_time": "2025-03-06T21:16:49.718044Z",
            "date_published": null,
            "start_time": "2025-03-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Konsertti on myyty loppuun. Jos jollekin lipun ostajalle on tullut esteitä, hän voi itse yrittää myydä lippua eteenpäin netin kautta tai tulla paikan päälle sitä myymään mutta meillä ei ole lipunmyyjää paikalla joten talo ei voi ottaa lippuja takaisin myytäväksi.",
                "sv": "Konserten är slutsåld. Om någon som redan köpt biljett har fått förhindr, kan hen själv försöka sälja biljetten vidare via nätet eller komma på plats och sälja den, men vi har ingen bijettförsäljare på plats så huset kan inte ta tillbaka biljetter för försäljning.",
                "en": "The concert is sold out. If someone who already bought a ticket got prevented from participating, he can himself try to sell the ticket forward on the internet or come here and sell it at the door, but we dont have any ticketsleller here so Vuotalo cannot take the ticket back for selling."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A11C0AE3EFCDA2B0906FA4DC891035EF/LOPPUUNMYYTY_Light_in_Babylon_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A11C0AE3EFCDA2B0906FA4DC891035EF/SLUTSALT_Light_in_Babylon_",
                "en": "http://www.vuotalo.fi/en/events/event/A11C0AE3EFCDA2B0906FA4DC891035EF/SOLD_OUT_Light_in_Babylon_"
            },
            "description": {
                "fi": "<p>Konsertti on myyty loppuun. Jos jollekin lipun ostajalle on tullut esteitä, hän voi itse yrittää myydä lippua eteenpäin netin kautta tai tulla paikan päälle sitä myymään mutta meillä ei ole lipunmyyjää paikalla joten talo ei voi ottaa lippuja takaisin myytäväksi.</p><p>Istanbulin värikkäillä kujilla 15 vuotta sitten perustettu monikulttuurinen Light in Babylon hurmaa yleisöjä ympäri maailmaa aitoudellaan ja elämänvoimallaan.</p><p>He yhdistelevät itämaisia ja välimerellisiä vaikutteita tyylikkääksi ja uniikiksi etnofolkiksi, jossa laulaja Michal Elia Kamalin upea vahva ääni ja santurin kauniin soljuvat melodiat vievät kuulijan matkalle niin itseen kuin maailmalle. Se on kuin kesytöntä kaunista luonnonvoimaa, jossa tuoksuu meren aaltojen suola, ja tuntuu pehmeä kuuma aavikon hiekka paljaiden varpaiden alla! <br> <br>Light in Babylon haluaa yhdistää ihmisiä musiikillaan yli kulttuurirajojen. He näkevät itsensäkin ennen kaikkea maailmankansalaisina, vapaana uskontojen ja kansallisuuksien rajoituksista. He rakastavat voimaannuttaa naisia ja tuoda suoraselkäistä tasa-arvoa eri sukupuolten välille. Michalin haaveena on päästä joskus esiintymään synnyinmaassaan Iranissa, jossa naisilta on julkinen laulaminen tällä hetkellä kiellettyä. <br> <br>Light in Babylonin musiikki koostuu pääasiassa omista sävellyksistä, mutta mukana on myös perinteisiin pyhiin hepreankielisiin lauluihin pohjautuvia kappaleita. He on tähän mennessä julkaisseet neljä albumia, viimeisin nimeltä “On Our Way” vuonna 2022. Heidän visuaalisesti upeat YouTuben musiikkivideot on saavuttanut jo yli 35 miljoona katselukertaa, ja fanien määrä kasvaa jatkuvasti. Nyt saamme heidät 10 vuoden tauon jälkeen jälleen myös Suomeen!</p><p>Klubi-ilta, tarjoiluista vastaa Café Pokkari.<br>Kesto: n. 120 min. sis. väliaika. <br>Monikielinen.</p>",
                "sv": "<p>Konserten är slutsåld. Om någon som redan köpt biljett har fått förhindr, kan hen själv försöka sälja biljetten vidare via nätet eller komma på plats och sälja den, men vi har ingen bijettförsäljare på plats så huset kan inte ta tillbaka biljetter för försäljning.</p><p>Det mångkulturella bandet Light in Babylon som grundades på färggranna gränder i Istanbul för 15 år sedan förtjuser publiken runt om i världen med sin autentiska karaktär och livskraft.</p><p>De kombinerar orientaliska influenser och influenser från Medelhavet till stilig och unik etnofolk där vokalist Michal Elia Kamals fina starka röst och vackert strömmande santurmelodier tar åhöraren på en resa både in i sig själv och ute på världen. Det är som en vild vacker naturkraft som doftar salt från havets vågor och känns som mjuk het sand från öknen under bara tår!</p><p>Light in Babylon vill med sin musik förena människor över kulturgränser. De anser sig vara framför allt världsmedborgare, fria från religionens och nationalitetens begränsningar. De älskar att stärka kvinnor och skapa hederlig jämlikhet mellan olika kön. Michals dröm är att hon en dag kan uppträda i sitt fosterland Iran där det för närvarande är förbjudet för kvinnor att sjunga offentligt.</p><p>Light in Babylons musik består huvudsakligen av egna kompositioner, men i repertoaren ingår även låtar som baserar sig på traditionella heliga hebreiska sånger. De har hittills släppt fyra album, det senaste som heter ”Our Way” 2022. Deras visuellt imponerande YouTube-musikvideor har redan fått över 35 miljoner visningar, och fangruppen ökar kontinuerligt. Nu får vi dem igen till Finland efter en paus på 10 år!</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari. Längd: ca 120 min. inkl. paus.<br>Mångspråkig.</p>",
                "en": "<p>The concert is sold out. If someone who already bought a ticket got prevented from participating, he can himself try to sell the ticket forward on the internet or come here and sell it at the door, but we dont have any ticketsleller here so Vuotalo cannot take the ticket back for selling.</p><p>Founded 15 years ago in the colourful alleys of Istanbul, the multicultural Light in Babylon charms audiences around the world with its authenticity and life force.</p><p>They combine oriental and Mediterranean influences into stylish and unique ethno-folk, where vocalist Michal Elia Kamal’s stunning strong voice and the beautifully flowing melodies of the santur take the listener on a journey inside themselves and into the world. It is like an untamed beautiful force of nature that smells like the salty waves of the sea and feels like the soft hot desert sand beneath your bare toes!</p><p>Light in Babylon wants to use its music to connect people across cultural boundaries. They see themselves first and foremost as global citizens, free from the constraints of religions and nationalities. They love empowering women and bringing upright equality between genders. Michael’s dream is to someday perform in her native country Iran, where women are currently forbidden to sing in public.</p><p>The music of Light in Babylon consists mainly of their own compositions, but some songs are also based on traditional sacred Hebrew songs. They have released four albums, the latest one titled “On Our Way” in 2022. Their visually stunning YouTube music videos have already reached over 35 million views, and the number of fans is constantly growing. Now, after a 10-year break, they are back in Finland!</p><p>Club night, refreshments provided by Café Pokkari. <br>Duration: apx. 120 min. with intermission.<br>Multilingual.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY / Light in Babylon – Biletler bitti!",
                "sv": "SLUTSÅLT / Light in Babylon – Biletler bitti!",
                "en": "SOLD OUT / Light in Babylon – Biletler bitti!"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65240/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "elo:f2e63b2c-5b1f-4cc4-9678-85549b0a9197",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?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://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_tapahtuma_102744119504",
                        "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_tapahtuma_102744119504",
                        "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=Uusi_tapahtuma_102744119504"
                    },
                    "description": {
                        "fi": "ysikasi by Marcus.",
                        "sv": "ysikasi by Marcus.",
                        "en": "ysikasi by Marcus."
                    },
                    "price": {
                        "fi": "98",
                        "sv": "98",
                        "en": "98"
                    }
                }
            ],
            "data_source": "elo",
            "publisher": "ahjo:u021200",
            "sub_events": [],
            "images": [
                {
                    "id": 307987,
                    "has_user_editable_resources": false,
                    "license": "cc_by",
                    "license_url": "https://creativecommons.org/licenses/by/4.0/",
                    "created_time": "2025-03-06T13:51:36.767462Z",
                    "last_modified_time": "2025-03-06T13:51:36.767487Z",
                    "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/d2ccd7d7-57e4-ef11-a731-000d3ab40ef6",
                    "name": "fd",
                    "cropping": "",
                    "photographer_name": "asdf",
                    "alt_text": "sdfas",
                    "data_source": "elo",
                    "publisher": "ahjo:u021200",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/307987/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11471/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1178/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1182/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1232/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12547/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12621/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1406/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14845/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16223/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16991/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1753/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18274/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20000/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21131/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21430/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2339/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p24167/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2439/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2555/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25897/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2616/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2692/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2693/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27123/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p27210/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28114/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2945/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3356/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3636/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3774/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39023/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3917/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4081/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4382/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5479/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5878/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6150/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6357/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6374/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7564/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7671/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7696/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7903/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8310/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8420/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8470/?format=api"
                }
            ],
            "created_time": "2025-03-04T12:17:23.384595Z",
            "last_modified_time": "2025-03-06T13:51:38.161064Z",
            "date_published": "2025-03-04T12:09:16Z",
            "start_time": "2025-03-14T10:00:00Z",
            "end_time": "2025-03-14T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": 18,
            "audience_max_age": null,
            "super_event_type": "umbrella",
            "deleted": false,
            "maximum_attendee_capacity": 23,
            "minimum_attendee_capacity": 11,
            "enrolment_start_time": "2025-02-24T08:00:00+02:00",
            "enrolment_end_time": "2025-02-27T08:00:00+02:00",
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "asdf",
                "sv": "asdf",
                "en": "asdf"
            },
            "info_url": null,
            "description": {
                "fi": "<div><div>asdf</div></div>",
                "sv": "<div><div>sdf</div></div>",
                "en": "<div><div>asdf</div></div>"
            },
            "name": {
                "fi": "MKtest 04032025 (myös hintatietotestillä)",
                "sv": "asdf",
                "en": "adf"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "asdf",
                "sv": "asdf",
                "en": "asdf"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:f2e63b2c-5b1f-4cc4-9678-85549b0a9197/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}