Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27027,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1148",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1146"
    },
    "data": [
        {
            "id": "kulke:60193",
            "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:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4577,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:27:05.638701Z",
                    "last_modified_time": "2023-09-07T14:27:05.638724Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734171.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4577/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:27:04.468362Z",
            "last_modified_time": "2023-11-14T06:13:42.459482Z",
            "date_published": null,
            "start_time": "2023-11-21T10: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 LOPPUUNVARATTU.",
                "en": "CONCERT IS SOLD OUT."
            },
            "description": {
                "fi": "<p>KONSERTTI ON LOPPUUNVARATTU.</p><p>Ennakkolipulla sisään klo 11.50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla jonotusjärjestyksessä. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p><p>Tiistain 21.11. Savoy-teatterin lounaskonsertin teema muuttuu, ja Mikko Pettisen johtaman Tribuutti Chet Bakerille -konsertin tilalla kuullaan bluesia. Hankitut liput käyvät sellaisenaan. <br> <br>Konsertin valokeilassa on yksi merkittävimmistä post-bop-tyylin jazzalbumeista, vuonna 1961 ilmestynyt The Blues and the Abstract Truth. Amerikkalaisen saksofonistin ja säveltäjän Oliver Nelsonin (1932–1975) sävellykset saivat ympärilleen aikansa suurimmat jazzmuusikot: Eric Dolphyn, Paul Chambersin, Freddie Hubbardin, Bill Evansin, George Barrowin ja Roy Haynesin. Septetillä levytetty albumi on tunnettu uniikeista sävellyksistään ja sovituksistaan ja sen avausraita Stolen Moments muodostui nopeasti jazzstandardiksi. Nimensä mukaisesti albumin perusta on bluesin rakenteissa ja tunnelmissa. Nyt albumin tulkitsee UMO Helsinki Ensemble, joka on UMO Helsinki Jazz Orchestran riveistä koottu pienempi kokoonpano. Ensemblen muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut saksofonisti Jouni Järvelä, joka myös luotsaa ensembleä.</p><p>Jouni Järvelä, tenorisaksofoni ja yhtyeenjohto <br>Max Zenger, alttosaksofoni<br>Mikko Mäkinen, baritonisaksofoni<br>Tero Saarti, trumpetti<br>Kirmo Lintinen, piano<br>Filemon von Numers, basso<br>Markus Ketola, rummut<br> <br>Konsertin kesto 1 h.</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 6 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p><p>Kuva: Olli Nurmi</p>",
                "en": "<p>CONCERT IS SOLD OUT.</p><p>The theme of the lunch concert at the Savoy Theatre on Tuesday 21.11. changes. Instead of the Chet Baker Tribute, we will hear some blues. Purchased tickets are valid as is. <br> <br>In the spotlight of this concert is one of the essential post-bop jazz albums, The Blues and the Abstract Truth, released in 1961.<br> <br>American saxophonist and composer Oliver Nelson (1932–1975) gathered together the greatest jazz musicians of his time: Eric Dolphy, Paul Chambers, Freddie Hubbard, Bill Evans, George Barrow and Roy Haynes. The acclaimed septet album is known of its unique compositions and arrangements, and the opening track Stolen Moments quickly became a jazz standard. As the name implies, the album’s compositions are based on the structures and moods of blues. Now the album is interpreted by UMO Helsinki Ensemble, which is a smaller musical group assembled from the UMO Helsinki Jazz Orchestra. The musicians have a long career both in the ranks of the UMO and in numerous individual projects. The program for the concert was planned by lead saxophonist Jouni Järvelä, who also leads the ensemble.</p><p>Jouni Järvelä, tenor sax and lead <br>Max Zenger, alto sax <br>Mikko Mäkinen, bari sax <br>Tero Saarti, trumpet<br>Kirmo Lintinen, piano<br>Filemon von Numers, bass<br>Markus Ketola, drums <br> <br>Duration 1 hour.</p><p>Please note! The admission is free but it is recommendable to book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi webshop (0 €). At Lippu.fi stores commission is 3 € / order, at R-kioski 3 € / order + 1 € / ticket. Max. 6 tickets / booking. Larger group bookings directly from Savoy. Entry with an advance ticket until 11:50. After this, any empty seats will be filled with customers without tickets. Please arrive early for the doors will be closed once the concert has started.</p><p>Photo: Olli Nurmi</p>"
            },
            "name": {
                "fi": "Lounaskonsertti: UMO Helsinki Ensemble – The Blues and the Abstract Truth – Orkesteria johtaa Jouni Järvelä",
                "en": "Lunchtime concert: UMO Helsinki Ensemble – The Blues and the Abstract Truth – Led by Jouni Järvelä"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/6D0FD2548C22A23934ED6AA9ADC45C55/Lounaskonsertti_UMO_Helsinki_Ensemble_The_Blues_and_the_Abstract_Truth_",
                "en": "http://www.savoyteatteri.fi/en/events/event/6D0FD2548C22A23934ED6AA9ADC45C55/Lunchtime_concert_UMO_Helsinki_Ensemble_The_Blues_and_the_Abstract_Truth_"
            },
            "provider": {
                "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra",
                "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60193/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59463",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "47/52 €",
                        "sv": "47/52 €",
                        "en": "47/52 €"
                    },
                    "info_url": {
                        "fi": "https://www.ticketmaster.fi/artist/carminho-lippuja/986324",
                        "sv": "https://www.ticketmaster.fi/artist/carminho-lippuja/986324",
                        "en": "https://www.ticketmaster.fi/artist/carminho-lippuja/986324"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4576,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:27:03.430693Z",
                    "last_modified_time": "2023-09-07T14:27:03.430716Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728251.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4576/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:27:02.763956Z",
            "last_modified_time": "2023-11-14T06:13:42.297914Z",
            "date_published": null,
            "start_time": "2023-11-20T17: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": "Portugalilainen fado-tähti Carminho Suomeen marraskuussa",
                "sv": "Portugisiska fadostjärnan Carminho kommer till Finland i november",
                "en": "Portuguese Fado star Carminho to perform in Finland in November"
            },
            "description": {
                "fi": "<p>Portugalilainen fado-tähti Carminho Suomeen marraskuussa</p><p>Portugalin lämpimät tuulet puhaltavat Suomeen marraskuussa, kun fado-musiikin tähti Carminho saapuu Suomeen konsertoimaan. Maaliskuun alussa uuden albumin ”Portuguesa” julkaiseva Carminho esiintyy tunnelmallisessa konsertissa maanantaina 20. marraskuuta Helsingin Savoy-teatterissa.</p><p>Carminho on yksi portugalilaisen musiikkikentän sekä fadon johtavista nimistä. Artisti on hallinnut Portugalin musiikkilistojen kärkiä jo ensimmäisestä studioalbumistaan ”Fado” (2009) lähtien ja myynyt levyillään kultaa ja platinaa. Maaliskuun 3. päivä julkaistava ”Portuguesa” on Carminhon kuudes albumi, jonka teossa artisti on ollut mukana niin säveltäjänä, sanoittajana kuin tuottajanakin. Carminho on kertonut, että hän on pyrkinyt syventämään ajatteluaan fadosta ja yhdistänyt musiikinlajin kaanonin osasia uusilla tavoilla.</p><p>Carminho on saanut vuosien varrella laajalti tunnustusta niin yleisöltä kuin medialtakin. Uuden albuminsa myötä portugalilaistähti jatkaa vaikuttavaa työtään musiikintekijänä, esiintyjänä, kulttuurivaikuttajana ja kotimaansa inspiroijana.</p><p>Carminho on nähty Suomessa loppuunmyydyssä Savoy-teatterissa jo vuonna 2012. Syksyllä 2021 hän teki vaikutuksen April Jazz -festivaalin yleisöön Espoossa.</p><p>Liput: Palvelumaksuineen 47/52 € Ticketmasterista + toimitustapakulu alk. 1,50 € / tilaus</p><p>Kesto n. 90 min, ei väliaikaa</p>",
                "sv": "<p>Portugisiska fadostjärnan Carminho kommer till Finland i november</p><p>Portugals varma vindar blåser i Finland i november när fadostjärnan Carminho kommer till Finland på konsert. Carminho som släpper sitt nya album Portuguesa i mars ger en stämningsfull konsert i Savoyteatern i Helsingfors måndagen den 20 november.</p><p>Carminho är en av de främsta namnen på det portugisiska musikfältet och inom fadomusik. Artisten har legat på listtoppen i Portugal ända sedan sitt första studioalbum Fado (2009) och sålt både guld och platina. Portuguesa, som släpps den 3 mars, är Carminhos sjätte album där artisten medverkar såväl som kompositör, textförfattare och producent. Carminho har sagt att hon har strävat efter att fördjupa sitt tänkande kring fado och kombinerat delar från genrens kanon på nya sätt.</p><p>Carminho har under årens lopp fått mycket erkännande både från publiken och i media. I och med sitt nya album fortsätter den portugisiska stjärnan sitt imponerande arbete som musikskapare, uppträdare, kulturpåverkare och en inspiration för sitt hemland.</p><p>Carminho har tidigare setts i Finland på en slutsåld konsert i Savoyteatern redan 2012. Hösten 2021 imponerade hon publiken på April Jazz-festivalen i Esbo.</p><p>Längd: Ca 90 minuter utan paus.</p>",
                "en": "<p>Portuguese Fado star Carminho to perform in Finland in November</p><p>The warm winds of Portugal will caress Finland in November as the star of Fado music, Carminho, visits the country for a performance in November. Set to release her new album Portuguesa in early March, Carminho will stage an atmospheric concert on 20 November at Helsinki’s Savoy Theatre.</p><p>Carminho is one of the biggest names in Portuguese music and Fado. The artist has occupied the top spots of Portuguese music charts since her first studio album Fado (2009) and sold both gold and platinum. Portuguesa, released on 3 March, is Carminho’s sixth studio album and features her work as a composer, lyricist and producer. Carminho has said that she has sought to deepen her conception of Fado and combine element of the genre canon in new ways.</p><p>Both audiences and the media have heaped praise on Carminho over the years. With her new album, the Portuguese star continues her impactful work as a creator of music, performer, cultural influencer and an inspiration to her home country.</p><p>Carminho previously performed a sold-out show in Finland at Savoy Theatre in 2012. In the autumn of 2021, she impressed the audience of the April Jazz festival in Espoo.</p><p>Duration approx. 90 min, no intermission</p>"
            },
            "name": {
                "fi": "Carminho",
                "sv": "Carminho",
                "en": "Carminho"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/9BF10E8FC75A9BF9E283A3FAC8E993C2/Carminho",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/9BF10E8FC75A9BF9E283A3FAC8E993C2/Carminho",
                "en": "http://www.savoyteatteri.fi/en/events/event/9BF10E8FC75A9BF9E283A3FAC8E993C2/Carminho"
            },
            "provider": {
                "fi": "Live Nation Finland",
                "sv": "Live Nation Finland",
                "en": "Live Nation Finland"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59463/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60434",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4575,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:27:02.362695Z",
                    "last_modified_time": "2023-09-07T14:27:02.362729Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732207.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4575/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:27:02.198405Z",
            "last_modified_time": "2023-11-14T06:13:42.219588Z",
            "date_published": null,
            "start_time": "2023-11-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": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!",
                "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!",
                "en": "Nothing is more fun than singing – except for singing together!"
            },
            "description": {
                "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii Mari Kätkä.</p><p>Kesto: 1 t</p><p>Maksuttomat maanantait on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. Mari Kätkä leder allsången.</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by Mari Kätkä.</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "name": {
                "fi": "Nyt lauletaan! – Maksuttomat maanantait",
                "sv": "Nu sjunger vi! – Kostnadsfria måndagar",
                "en": "Let us sing! – Free Mondays"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/7E6FEE2DF1E4C1FCB3E7D809BD9B48BB/Nyt_lauletaan_",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/7E6FEE2DF1E4C1FCB3E7D809BD9B48BB/Nu_sjunger_vi_",
                "en": "http://www.kanneltalo.fi/en/events/event/7E6FEE2DF1E4C1FCB3E7D809BD9B48BB/Let_us_sing_"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60434/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60500",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4573,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:27:01.557148Z",
                    "last_modified_time": "2023-09-07T14:27:01.557174Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731779.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4573/?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": "2023-09-07T14:27:01.345995Z",
            "last_modified_time": "2023-11-14T06:13:42.058634Z",
            "date_published": null,
            "start_time": "2023-11-20T08:15:00Z",
            "end_time": "2023-11-20T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar",
                "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/2DEA951E6E5596FD671A8BE413B05AF9/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset",
                "sv": "http://www.caisa.fi/sv/evenemang/event/2DEA951E6E5596FD671A8BE413B05AF9/Dans_och_lek_verkstad_Barn_i_lekaldern",
                "en": "http://www.caisa.fi/en/events/event/2DEA951E6E5596FD671A8BE413B05AF9/Dance_and_play_workshops_Play-age"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60500/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60629",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4572,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:59.736932Z",
                    "last_modified_time": "2023-09-07T14:26:59.736952Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730933.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4572/?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": "2023-09-07T14:26:59.071841Z",
            "last_modified_time": "2023-11-14T06:13:41.969185Z",
            "date_published": null,
            "start_time": "2023-11-20T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Megamuskari on suunnattu 0–8-vuotiaille lapsille yhdessä aikuisen/aikuisten kanssa. Kaikenikäiset ovat tervetulleita mukaan vauvasta vaariin!",
                "sv": "Megamusiklekisen är avsedd för barn i åldern 0–8 år tillsammans med en vuxen/vuxna. Alla är välkomna oavsett ålder, ung som gammal!",
                "en": "På Megamusiklekisen sjunger vi bekanta barnvisor och små sånger som Tuuli Paasolainen har skrivit och som är lätta att lära sig även om man aldrig sjungit dem förut."
            },
            "description": {
                "fi": "<p>Megamuskari on suunnattu 0–8-vuotiaille lapsille yhdessä aikuisen/aikuisten kanssa. Kaikenikäiset ovat tervetulleita mukaan vauvasta vaariin!</p><p>Muskariopena toimii musiikkikasvatuskouluttaja, musiikkileikkikoulunopettaja, huilisti <b>Tuuli Paasolainen</b> ja pianistina <b>Sergei Sokolov</b>. Megamuskari sisältää kaikille tuttuja lastenlauluja, sekä Tuuli Paasolaisen säveltämiä pieniä lauluja, joihin pääsee helposti mukaan, vaikka niitä ei olisi ennen laulanutkaan.</p><p>Megamuskarissa lauletaan, leikitään, lorutellaan, liikutaan ja soitetaan ainakin kehosoittimia.</p><p>Ilmoittautuminen osoitteessa kultus.fi 1.8.2023 alkaen</p>",
                "sv": "<p>Megamusiklekisen är avsedd för barn i åldern 0–8 år tillsammans med en vuxen/vuxna. Alla är välkomna oavsett ålder, ung som gammal!</p><p>På Megamusiklekisen sjunger vi bekanta barnvisor och små sånger som Tuuli Paasolainen har skrivit och som är lätta att lära sig även om man aldrig sjungit dem förut.</p><p>Anmälning i kultus.fi</p><p>Fritt inträde</p>",
                "en": "<p>På Megamusiklekisen sjunger vi bekanta barnvisor och små sånger som Tuuli Paasolainen har skrivit och som är lätta att lära sig även om man aldrig sjungit dem förut.</p><p>MegaMusicPlaySchool includes children’s songs that are familiar to everyone as well as little songs composed by Tuuli Paasolainen that are easy to join in with, even if you’ve never sung them before.</p><p>Registration at kultus.fi</p><p>Free entry</p>"
            },
            "name": {
                "fi": "Megamuskari alueen päiväkodeille – Lapsen oikeuksien viikko",
                "sv": "Megamusiklekis för daghemmen i området – Barnrättsveckan",
                "en": "MegaMusicPlaySchool for daycare centres in the area – Children's Rights Week"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/83BD2CDE350ED0D0426ACDEEF3302C85/Megamuskari_alueen_paivakodeille",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/83BD2CDE350ED0D0426ACDEEF3302C85/Megamusiklekis_for_daghemmen_i_omradet",
                "en": "http://www.vuotalo.fi/en/events/event/83BD2CDE350ED0D0426ACDEEF3302C85/MegaMusicPlaySchool_for_daycare_centres_in_the_area"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60629/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60488",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:58.331099Z",
                    "last_modified_time": "2023-09-07T14:26:58.331118Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731763.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4571/?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": "2023-09-07T14:26:57.886269Z",
            "last_modified_time": "2023-11-14T06:13:41.891918Z",
            "date_published": null,
            "start_time": "2023-11-20T07:15:00Z",
            "end_time": "2023-11-20T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.",
                "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.",
                "en": "The dance and play workshop introduces children to the world of dance through movement, music and play."
            },
            "description": {
                "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>",
                "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>",
                "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>"
            },
            "name": {
                "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen",
                "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar",
                "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BB1BD8450536AB927DF505559AC8AA36/Tanssi_ja_leikki_-tyopaja_Taaperot",
                "sv": "http://www.caisa.fi/sv/evenemang/event/BB1BD8450536AB927DF505559AC8AA36/Dans_och_lek_verkstad_Smabarn",
                "en": "http://www.caisa.fi/en/events/event/BB1BD8450536AB927DF505559AC8AA36/Dance_and_play_workshops_Toddlers"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60488/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61092",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5227,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:32:18.690765Z",
                    "last_modified_time": "2023-10-09T13:32:18.690784Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730666.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5227/?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": "2023-10-09T13:32:17.405628Z",
            "last_modified_time": "2023-11-14T06:13:41.816731Z",
            "date_published": null,
            "start_time": "2023-11-20T07: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": "Tämä on kutsu kaikille lapsille ja kaikille, jotka ovat joskus olleet lapsia: Tervetuloa julistamaan lapsen oikeuksien viikko alkaneeksi!"
            },
            "description": {
                "fi": "<p>Tämä on kutsu kaikille lapsille ja kaikille, jotka ovat joskus olleet lapsia: Tervetuloa julistamaan lapsen oikeuksien viikko alkaneeksi!</p><p>Helsingin kaupunginvaltuutettu ja tunnettu vuosaarelainen Shawn Huff puhuu tilaisuudessa lapsille siitä, mitä tarkoittaa lapsen oikeus hyvinvointiin. Vuosaaren Vesipääskyjen taitavat partiolaiset nostavat lipun salkoon Lapsen oikeuksien päivän ja Lapsen oikeuksien viikon kunniaksi. Hurraa lapset!</p>"
            },
            "name": {
                "fi": "Lapsen oikeuksien viikko: Lipunnosto"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D37B46A98638DB101AF480EA0EC1025B/Lapsen_oikeuksien_viikko_Lipunnosto"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61092/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59900",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "69,50/29,50 €",
                        "sv": "69,50/29,50 €",
                        "en": "69,50/29,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933",
                        "sv": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933",
                        "en": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4570,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:57.608692Z",
                    "last_modified_time": "2023-09-07T14:26:57.608714Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730913.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4570/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:57.441525Z",
            "last_modified_time": "2023-11-14T06:13:41.735558Z",
            "date_published": null,
            "start_time": "2023-11-18T17: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": "Suomen kansainvälisesti tunnetuin taikuri Henri Kemppainen ensimmäiselle Suomen-kiertueelleen",
                "sv": "Finlands internationellt bäst kända trollkarl Henri Kemppainen ger sig ut på sin första Finlandsturné",
                "en": "First domestic tour by Finland’s most internationally famous magician"
            },
            "description": {
                "fi": "<p>Suomen kansainvälisesti tunnetuin taikuri Henri Kemppainen ensimmäiselle Suomen-kiertueelleen</p><p>Ympäri maailmaa omien ohjelmanumeroidensa kanssa kiertänyt Henri Kemppainen lähtee ensimmäiselle Suomen-kiertueelleen marraskuussa. Yksitoista esitystä sisältävä Suuri Taikashow vie jo kahdesti vuoden taikurina palkitun Kemppaisen Helsinkiin, Turkuun, Kuopioon, Kuhmoon, Ouluun, Seinäjoelle, Lahteen, Jyväskylään, Lappeenrantaan ja Tampereelle. Henkeä salpaavien Suuri Taikashow –esitysten liput tulevat myyntiin maanantaina 8. toukokuuta.</p><p>Suomen valovoimaisimpiin taikureihin lukeutuvan Henri Kemppaisen Suuri Taikashow -kiertueen esitykset yhdistelevät kekseliäästi niin taikuuden klassikoita kuin suuria illuusioitakin, joita Suomessa harvemmin näkee. Taikuuden ja illuusioiden lisäksi kiertueella nähdään Kemppaisen suosittua lähitaikuutta, joka on tullut tutuksi mm. miehen kansainvälisessä tv-levityksessä olevasta Magic in Lapland -sarjasta. Lähitaikuuden näkymisestä myös suurissa saleissa huolehtii kameratiimi ja isot screenit, joiden ansiosta myös pienimmät yksityiskohdat välittyvät aina takariveihin asti. Koko perheelle sopivan esityksen ohjaa tanssijakoreografi ja näyttelijä Sami Saikkonen. Luvassa on show, joka yllättää, naurattaa ja hämmästyttää.</p><p>”Olen todella innoissani päästessäni kiertämään Suomea taikashowni kanssa. Vaikka olen esiintynyt paljon ympäri maailmaa, on Suomen-kiertue ollut minulle toistaiseksi toteutumaton lapsuuden unelma. Kiertueen esityksiä on valmisteltu jo pitkään: tervetuloa viihtymään ja hämmästymään uskomattoman taikashow’n pariin.” Henri Kemppainen sanoo.</p><p>Ammattilaisuransa vuonna 2006 aloittanut Henri Kemppainen on arvostettu kansainvälinen taikuri, joka on kiertänyt ympäri maailmaa esiintymässä omien ohjelmanumeroidensa kanssa aina Abu Dhabissa asti. Hänet on valittu Vuoden taikuriksi vuosina 2019 ja 2022 sekä Vuoden parhaaksi Esiintyjäksi Evento Awardseissa 2016. Las Vegasissa yksityisopissa kouluttautunut Kemppainen on myös ensimmäinen suomalainen taikuri, jonka tv-sarja on kansainvälisessä levityksessä: Magic in Lapland sarjaa on esitetty laajalti niin Pohjois- kuin Etelä-Amerikassakin sekä Aasiassa ja Euroopassa. Suomessa Kemppainen on esiintynyt lukuisissa tv-ohjelmissa sekä myös mm. Haloo Helsinki! -yhtyeen, Robinin, Anna Puun ja Jussi69:n kanssa.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 50 min, sisältää väliajan</p><p>Liput alkaen 39,50 €<br>Eläkeläiset, lapset 3-12 v, opiskelijat alk. 29,50 €</p>",
                "sv": "<p>Finlands internationellt bäst kända trollkarl Henri Kemppainen ger sig ut på sin första Finlandsturné</p><p>Henri Kemppainen, som redan två gånger krönts till årets trollkarl och turnerat runtom i hela världen med sin egen repertoar, ger sig ut på sin första Finlandsturné i november. Den stora trollerishowen, Suuri Taikashow, består av elva föreställningar som tar Kemppainen till Helsingfors, Åbo, Kuopio, Kuhmois, Uleåborg, Seinäjoki, Lahtis, Jyväskylä, Villmanstrand och Tammerfors. Biljetterna till den hisnande trollerishowen Suuri Taikashow släpps måndagen den 8 maj.</p><p>Henri Kemppainen, en av Finlands ljusstarkaste trollkarlar, kombinerar under turnén Suuri Taikashow uppfinningsrikt både trollerikonstens klassiker och stora illusioner, som publiken i Finland sällan har chans att uppleva. Förutom trollerikonst och illusioner kommer publiken att få se Kemppainens populära bordstrolleri som han gjort känd bland annat i sin tv-serie Magic in Lapland som även visats internationellt. Bordstrolleriet syns även i de stora salarna tack vare kamerateamet och de stora skärmarna som garanterar att även publiken på sista raden ser till och med de minsta detaljerna. Föreställningen som passar hela familjen dirigeras av dansaren-koreografen och skådespelaren Sami Saikkonen. Det utlovas en show full med överraskningar, skratt och förundran.</p><p>”Jag ser verkligen fram emot att åka runt i Finland med min trollerishow. Även om jag har uppträtt mycket i hela världen har en Finlandsturné varit en barndomsdröm för mig, som än så länge inte blivit verklighet. Vi har förberett föreställningarna länge och önskar er välkomna till vår otroliga trollerishow för att trivas och förundras”, säger Henri Kemppainen.</p><p>Henri Kemppainen som inledde sin proffskarriär 2006 är en renommerad internationell trollkarl som rest världen runt med sina egna föreställningar, ända till Abu Dhabi. Han blev utsedd till Årets trollkarl 2019 och 2022 samt till Årets bästa scenkonstnär på Evento Awards 2016. Kemppainen som har utbildat sig hos en privat lärare i Las Vegas är också den första finländska trollkarlen med ett tv-program som visats internationellt: Serien Magic in Lapland har gått i såväl Nord- som Sydamerika, i Asien och i Europa. I Finland har Kemppainen medverkat i flera tv-program och även uppträtt tillsammans med bland annat Haloo Helsinki!, Robin, Anna Puu och Jussi69.</p><p>Åldersgräns: T</p><p>Längd ca 1 h 50 minuter med paus</p>",
                "en": "<p>First domestic tour by Finland’s most internationally famous magician</p><p>Henri Kemppainen, who has toured the world with his magic shows, is set to begin his first-ever Finnish tour in November. Comprising eleven performances in total, Suuri Taikashow (The Great Magic Show) will take the two-time Magician of the Year to Helsinki, Turku, Kuopio, Kuhmo, Oulu, Seinäjoki, Lahti, Jyväskylä, Lappeenranta and Tampere. Tickets for the breathtaking shows will be available as of Monday 8 May.</p><p>One of the most charismatic Finnish magicians, Henri Kemppainen has prepared his Suuri Taikashow performances to be inventive combinations of classic magic tricks and even large-scale illusions, which are rarely seen in Finland. Alongside stage magic and illusions, the tour will feature Kemppainen’s popular close-up magic, which audiences know from his internationally distributed Magic in Lapland television series. The visibility of the close-up magic at large venues is ensured by a camera team and large screens, which convey even the most minute details all the way to the back rows. The family-friendly show will be directed by the dancer, choreographer and actor Sami Saikkonen. The show is sure to provide audiences with surprises, laughs and moments of wonder.</p><p>“I’m extremely excited to be able to tour Finland with my magic show. Even though I’ve performed a lot around the world, a Finnish tour has so far remained a childhood dream. We have been preparing the tour performance for a long time: audiences are warmly welcome for a night of entertainment and awe with an astonishing magic show,” Henri Kemppainen says.</p><p>Henri Kemppainen, who began his professional career in 2006, is a respected international magician who has toured the world performing his shows, travelling all the way to Abu Dhabi. He was selected as the Magician of the Year in 2019 and 2022, and as the Performer of the Year at the Evento Awards 2016. Privately trained in Las Vegas, Kemppainen is also the first Finnish magician to have a television show in international distribution: the Magic in Lapland series has been widely aired in North America, South America, Asia and Europe. In Finland, Kemppainen has performed in various television programmes and also with the Haloo Helsinki! band, Robin, Anna Puu and Jussi69.</p><p>Age limit: all ages</p><p>Duration approx. 1 h 50 min with intermission</p>"
            },
            "name": {
                "fi": "Henri Kemppainen – Suuri Taikashow",
                "sv": "Henri Kemppainen – Suuri Taikashow",
                "en": "Henri Kemppainen – Suuri Taikashow"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/4345CC1B51052D87E1EA2720927B6294/Henri_Kemppainen_Suuri_Taikashow",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/4345CC1B51052D87E1EA2720927B6294/Henri_Kemppainen_Suuri_Taikashow",
                "en": "http://www.savoyteatteri.fi/en/events/event/4345CC1B51052D87E1EA2720927B6294/Henri_Kemppainen_Suuri_Taikashow"
            },
            "provider": {
                "fi": "Live Nation Finland",
                "sv": "Live Nation Finland",
                "en": "Live Nation Finland"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59900/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60039",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/magas-3424016",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/magas-3424016",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/magas-3424016"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4569,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:57.203673Z",
                    "last_modified_time": "2023-09-07T14:26:57.203700Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732302.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4569/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:57.031639Z",
            "last_modified_time": "2023-11-14T06:13:41.660380Z",
            "date_published": null,
            "start_time": "2023-11-18T17: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": "Magas on kolmen vahvan taiteilijan luovuuden tulos.",
                "sv": "Magas är resultatet av tre starka konstnärers kreativitet.",
                "en": "Magas is the result of the creativity of three strong artists."
            },
            "description": {
                "fi": "<p>Magas on kolmen vahvan taiteilijan luovuuden tulos.</p><p>Projektin sytytti monikulttuuristen muusikoiden yhteinen halu nostaa ympäristöasiat esille taiteen keinoin. Eri puolilla maailmaa ihmisiä yhdistää huoli huomisen luonnon kohtalosta.</p><p><b>Magas Projectin</b> musiikissa kaikuu tunnelmia niin pohjoisten leveysasteiden, eteläisen Euroopan kuin läntisen Afrikan erämailta. Tyylilajiksi voisi kiteyttää eri kulttuurista vaikutteita ammentavan kokeellisen maailmanmusiikin. Kolmen naisen yhteistyö välittää ydinsanoman vahvasti, sillä <i>“la voz de Gaia es femenina”</i> – maailma soi naisen äänellä.</p><p>Lavalla projekti yhdistää ennakkoluulottomasti elementtejä klassisen musiikin ikoneista flamencoon ja läntisen Afrikan rytmeihin. Musiikillisiin kokeiluihin heittäydytään ilolla ja epäröimättä – rajat on tehty rikottaviksi. Sibeliuksesta siirrytään espanjalaiseen kitaraan ja sieltä edelleen Sahelin rannikkoseuduille perinteisten tunnelmien sulautuessa saumatta moderneihin äänimaailmoihin. Lopulta teemat yhdistyvät rajat hälventäväksi uuden ilmaisun yhteisymmärrykseksi.</p><p>Magas Projectissa soivat akustinen kitara, konserttipiano, kora-harppu ja diatoninen balafoni. Niitä tukevat kitaran kaikukoppaan ja koran kalebassiin rummutetut rytmit. Lyriikat soljuvat espanjan, mandinkan, wolofin ja suomen kielillä. Visuaaliset elementit ja tanssi ovat osa esitystä.</p><p>Magas Projectin jäsenet ovat arvostettuja, useista nimekkäistä yhtyeistä tuttuja pitkän linjan taiteilijoita.</p><p>Autio, Maarika (FIN) – diatoninen balafoni, kora, laulu, tanssi <br>Hermo, Cinta (ESP/FIN) – akustinen kitara, laulu, tanssi <br>Mejias, Iliana (CUB/RUS/FIN) – piano <br> <br>Kesto: 2 t (väliaika: 15 min)<br>Ikäsuositus: sopii kaikille <br>Kieli: suomi, englanti ja espanja</p>",
                "sv": "<p>Magas är resultatet av tre starka konstnärers kreativitet.</p><p>Projektet föddes ur de mångkulturella musikernas gemensamma vilja att lyfta fram miljöfrågor med konstens medel. Människor i hela världen förenas av en oro för naturens framtid.</p><p>I Magas Projects musik ekar stämningar från såväl de nordliga breddgraderna som södra Europa och vildmarkerna i västra Afrika. Genren kan kortfattat beskrivas som experimentell världsmusik som hämtar influenser från olika kulturer. De tre kvinnornas samarbete förmedlar kärnbudskapet på ett kraftfullt sätt, eftersom ”la voz de Gaia es femenina” – världens röst är kvinnans röst.</p><p>Autio, Maarika (FIN) – diatonisk balafon, kora, sång, dans <br>Hermo, Cinta (ESP/FIN) – akustisk gitarr, sång, dans <br>Mejias, Iliana (CUB/RUS/FIN) – piano</p><p>Längd: 2 t med paus<br>Åldersrekommendation: för alla åldrar<br>Språk: finska, engelska, spanska</p>",
                "en": "<p>Magas is the result of the creativity of three strong artists.</p><p>The project was sparked by a shared desire among multicultural musicians to raise environmental issues through art. People from around the world are united in their concern for the fate of tomorrow’s nature.</p><p>The music of the Magas Project echoes the atmospheres of the northern latitudes, Southern Europe and West African deserts. The genre could be described as experimental world music, which takes its influences from different cultures. The collaboration between three women conveys the core message strongly as “la voz de Gaia es femenina” – the world speaks with a woman’s voice.</p><p>Autio, Maarika (FIN) - diatonic balafon, kora, vocals, dance <br>Hermo, Cinta (ESP/FIN) – acoustic guitar, vocals, dance <br>Mejias, Iliana (CUB/RUS/FIN) – piano</p><p>Duration: 2 h with intermission<br>Age recommendation: for all ages<br>Language: Finnish, English and Spanish</p>"
            },
            "name": {
                "fi": "Magas",
                "sv": "Magas",
                "en": "Magas"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/916C3E52666D41BB5BBF78B8600930AE/Magas",
                "sv": "http://www.caisa.fi/sv/evenemang/event/916C3E52666D41BB5BBF78B8600930AE/Magas",
                "en": "http://www.caisa.fi/en/events/event/916C3E52666D41BB5BBF78B8600930AE/Magas"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60039/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61237",
            "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: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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5872,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-06T13:14:02.798873Z",
                    "last_modified_time": "2023-11-06T13:14:02.798891Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739370.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5872/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-06T13:14:02.778386Z",
            "last_modified_time": "2023-11-14T06:13:41.582181Z",
            "date_published": null,
            "start_time": "2023-11-18T16: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": "Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon."
            },
            "description": {
                "fi": "<p>Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon.</p><p>Kierrätyspuuta, metallia ja käytettyjä huonekaluja hyödyntäen Kaurismäki ja Karkkilan asukkaat tekevät yhteistyössä Kino Laikan. Tapahtumapaikkaa ympäröivät Cadillacit, moottoripyörät, baarit ja kunnioitusta herättävä luonnon kauneus kiteyttäen elokuvan lumon.</p><p>Cinéma Laika on kaikkien aikojen ensimmäinen elokuvateatterilevitykseen tehty Aki Kaurismäki -dokumentti.</p><p>Pääosissa: Aki Kaurismäki, Mika Lätti, Karkkilan asukkaat, Herra Ylppö, Maustetytöt, Nuppu Koivu, Simon Al-Bazoon, Mikko Myllylahti, Juho Kuosmanen, Amy Taubin ja Jim Jarmusch.</p><p><i>\"The documentary offers an opportunity for the audience to delve into the realm of the Finnish master, engage with his peers, including Jim Jarmusch, and fully immerse themselves in the world of Kaurismäki’s cinema\"</i> -Variety</p><p>Ensi-ilta: 10.11.2023<br>Ikäraja: Ei tiedossa<br>Kesto: 81 min</p>"
            },
            "name": {
                "fi": "Cinema Laika – Kino Helios"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5912CA8967A944C04E63779A845E651B/Cinema_Laika"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61237/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60995",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "32 € / 34 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/sinivalkoiset-tangot-konsertti-malmitalo-17580831"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5226,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:32:16.599617Z",
                    "last_modified_time": "2023-10-09T13:32:16.599637Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727950.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5226/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:32:16.467526Z",
            "last_modified_time": "2023-11-14T06:13:41.508812Z",
            "date_published": null,
            "start_time": "2023-11-18T16: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": "Solisteina Kalle Jussila ja Susanna Heikki."
            },
            "description": {
                "fi": "<p>Solisteina Kalle Jussila ja Susanna Heikki.</p><p>Konsertissa kuullaan suomalaisia tangoja aina 50–60-luvuilta tähän päivään. Tango elää jälleen kulta-aikaansa! Tanssipaikat ja konserttisalit täyttyvät intohimoisista tangon ystävistä.<br> <br><b>Kalle Jussila</b> on ehdottomasti yksi Suomen uskottavimmista ja koskettavimmista tangon tulkitsijoista. Valovoimainen <b>Susanna Heikki</b> on suomalainen iskelmälaulaja ja vuoden 2015 tangokuningatar sekä tuttu radioääni Nostalgiaradion taajuudelta. Nämä suursuosikkilaulajat ovatkin tarjoamassa uusia elämyksiä kuulijoilleen.<br> <br>Säestyksestä vastaa Quattro-orkesteri. Konsertin kesto noin 2 tuntia sisältäen väliajan.</p>"
            },
            "name": {
                "fi": "Sinivalkoiset tangot"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/232040A8DD0C931963615EFF126DBA7E/Sinivalkoiset_tangot"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60995/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59899",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "69,50/29,50 €",
                        "sv": "69,50/29,50 €",
                        "en": "69,50/29,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933",
                        "sv": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933",
                        "en": "https://www.ticketmaster.fi/artist/henri-kemppainen-suuri-taikashow-lippuja/1201933"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4568,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:56.731659Z",
                    "last_modified_time": "2023-09-07T14:26:56.731680Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730912.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4568/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:55.364950Z",
            "last_modified_time": "2023-11-14T06:13:41.434878Z",
            "date_published": null,
            "start_time": "2023-11-18T13: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": "Suomen kansainvälisesti tunnetuin taikuri Henri Kemppainen ensimmäiselle Suomen-kiertueelleen",
                "sv": "Finlands internationellt bäst kända trollkarl Henri Kemppainen ger sig ut på sin första Finlandsturné",
                "en": "First domestic tour by Finland’s most internationally famous magician"
            },
            "description": {
                "fi": "<p>Suomen kansainvälisesti tunnetuin taikuri Henri Kemppainen ensimmäiselle Suomen-kiertueelleen</p><p>Ympäri maailmaa omien ohjelmanumeroidensa kanssa kiertänyt Henri Kemppainen lähtee ensimmäiselle Suomen-kiertueelleen marraskuussa. Yksitoista esitystä sisältävä Suuri Taikashow vie jo kahdesti vuoden taikurina palkitun Kemppaisen Helsinkiin, Turkuun, Kuopioon, Kuhmoon, Ouluun, Seinäjoelle, Lahteen, Jyväskylään, Lappeenrantaan ja Tampereelle. Henkeä salpaavien Suuri Taikashow –esitysten liput tulevat myyntiin maanantaina 8. toukokuuta.</p><p>Suomen valovoimaisimpiin taikureihin lukeutuvan Henri Kemppaisen Suuri Taikashow -kiertueen esitykset yhdistelevät kekseliäästi niin taikuuden klassikoita kuin suuria illuusioitakin, joita Suomessa harvemmin näkee. Taikuuden ja illuusioiden lisäksi kiertueella nähdään Kemppaisen suosittua lähitaikuutta, joka on tullut tutuksi mm. miehen kansainvälisessä tv-levityksessä olevasta Magic in Lapland -sarjasta. Lähitaikuuden näkymisestä myös suurissa saleissa huolehtii kameratiimi ja isot screenit, joiden ansiosta myös pienimmät yksityiskohdat välittyvät aina takariveihin asti. Koko perheelle sopivan esityksen ohjaa tanssijakoreografi ja näyttelijä Sami Saikkonen. Luvassa on show, joka yllättää, naurattaa ja hämmästyttää.</p><p>”Olen todella innoissani päästessäni kiertämään Suomea taikashowni kanssa. Vaikka olen esiintynyt paljon ympäri maailmaa, on Suomen-kiertue ollut minulle toistaiseksi toteutumaton lapsuuden unelma. Kiertueen esityksiä on valmisteltu jo pitkään: tervetuloa viihtymään ja hämmästymään uskomattoman taikashow’n pariin.” Henri Kemppainen sanoo.</p><p>Ammattilaisuransa vuonna 2006 aloittanut Henri Kemppainen on arvostettu kansainvälinen taikuri, joka on kiertänyt ympäri maailmaa esiintymässä omien ohjelmanumeroidensa kanssa aina Abu Dhabissa asti. Hänet on valittu Vuoden taikuriksi vuosina 2019 ja 2022 sekä Vuoden parhaaksi Esiintyjäksi Evento Awardseissa 2016. Las Vegasissa yksityisopissa kouluttautunut Kemppainen on myös ensimmäinen suomalainen taikuri, jonka tv-sarja on kansainvälisessä levityksessä: Magic in Lapland sarjaa on esitetty laajalti niin Pohjois- kuin Etelä-Amerikassakin sekä Aasiassa ja Euroopassa. Suomessa Kemppainen on esiintynyt lukuisissa tv-ohjelmissa sekä myös mm. Haloo Helsinki! -yhtyeen, Robinin, Anna Puun ja Jussi69:n kanssa.</p><p>Ikäraja: S</p><p>Kesto n. 1 h 50 min, sisältää väliajan</p><p>Liput alkaen 39,50 €<br>Eläkeläiset, lapset 3-12 v, opiskelijat alk. 29,50 €</p>",
                "sv": "<p>Finlands internationellt bäst kända trollkarl Henri Kemppainen ger sig ut på sin första Finlandsturné</p><p>Henri Kemppainen, som redan två gånger krönts till årets trollkarl och turnerat runtom i hela världen med sin egen repertoar, ger sig ut på sin första Finlandsturné i november. Den stora trollerishowen, Suuri Taikashow, består av elva föreställningar som tar Kemppainen till Helsingfors, Åbo, Kuopio, Kuhmois, Uleåborg, Seinäjoki, Lahtis, Jyväskylä, Villmanstrand och Tammerfors. Biljetterna till den hisnande trollerishowen Suuri Taikashow släpps måndagen den 8 maj.</p><p>Henri Kemppainen, en av Finlands ljusstarkaste trollkarlar, kombinerar under turnén Suuri Taikashow uppfinningsrikt både trollerikonstens klassiker och stora illusioner, som publiken i Finland sällan har chans att uppleva. Förutom trollerikonst och illusioner kommer publiken att få se Kemppainens populära bordstrolleri som han gjort känd bland annat i sin tv-serie Magic in Lapland som även visats internationellt. Bordstrolleriet syns även i de stora salarna tack vare kamerateamet och de stora skärmarna som garanterar att även publiken på sista raden ser till och med de minsta detaljerna. Föreställningen som passar hela familjen dirigeras av dansaren-koreografen och skådespelaren Sami Saikkonen. Det utlovas en show full med överraskningar, skratt och förundran.</p><p>”Jag ser verkligen fram emot att åka runt i Finland med min trollerishow. Även om jag har uppträtt mycket i hela världen har en Finlandsturné varit en barndomsdröm för mig, som än så länge inte blivit verklighet. Vi har förberett föreställningarna länge och önskar er välkomna till vår otroliga trollerishow för att trivas och förundras”, säger Henri Kemppainen.</p><p>Henri Kemppainen som inledde sin proffskarriär 2006 är en renommerad internationell trollkarl som rest världen runt med sina egna föreställningar, ända till Abu Dhabi. Han blev utsedd till Årets trollkarl 2019 och 2022 samt till Årets bästa scenkonstnär på Evento Awards 2016. Kemppainen som har utbildat sig hos en privat lärare i Las Vegas är också den första finländska trollkarlen med ett tv-program som visats internationellt: Serien Magic in Lapland har gått i såväl Nord- som Sydamerika, i Asien och i Europa. I Finland har Kemppainen medverkat i flera tv-program och även uppträtt tillsammans med bland annat Haloo Helsinki!, Robin, Anna Puu och Jussi69.</p><p>Åldersgräns: T</p><p>Längd ca 1 h 50 minuter med paus</p>",
                "en": "<p>First domestic tour by Finland’s most internationally famous magician</p><p>Henri Kemppainen, who has toured the world with his magic shows, is set to begin his first-ever Finnish tour in November. Comprising eleven performances in total, Suuri Taikashow (The Great Magic Show) will take the two-time Magician of the Year to Helsinki, Turku, Kuopio, Kuhmo, Oulu, Seinäjoki, Lahti, Jyväskylä, Lappeenranta and Tampere. Tickets for the breathtaking shows will be available as of Monday 8 May.</p><p>One of the most charismatic Finnish magicians, Henri Kemppainen has prepared his Suuri Taikashow performances to be inventive combinations of classic magic tricks and even large-scale illusions, which are rarely seen in Finland. Alongside stage magic and illusions, the tour will feature Kemppainen’s popular close-up magic, which audiences know from his internationally distributed Magic in Lapland television series. The visibility of the close-up magic at large venues is ensured by a camera team and large screens, which convey even the most minute details all the way to the back rows. The family-friendly show will be directed by the dancer, choreographer and actor Sami Saikkonen. The show is sure to provide audiences with surprises, laughs and moments of wonder.</p><p>“I’m extremely excited to be able to tour Finland with my magic show. Even though I’ve performed a lot around the world, a Finnish tour has so far remained a childhood dream. We have been preparing the tour performance for a long time: audiences are warmly welcome for a night of entertainment and awe with an astonishing magic show,” Henri Kemppainen says.</p><p>Henri Kemppainen, who began his professional career in 2006, is a respected international magician who has toured the world performing his shows, travelling all the way to Abu Dhabi. He was selected as the Magician of the Year in 2019 and 2022, and as the Performer of the Year at the Evento Awards 2016. Privately trained in Las Vegas, Kemppainen is also the first Finnish magician to have a television show in international distribution: the Magic in Lapland series has been widely aired in North America, South America, Asia and Europe. In Finland, Kemppainen has performed in various television programmes and also with the Haloo Helsinki! band, Robin, Anna Puu and Jussi69.</p><p>Age limit: all ages</p><p>Duration approx. 1 h 50 min with intermission</p>"
            },
            "name": {
                "fi": "Henri Kemppainen – Suuri Taikashow",
                "sv": "Henri Kemppainen – Suuri Taikashow",
                "en": "Henri Kemppainen – Suuri Taikashow"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/84FCA207F7177E722F51BFE7EAC01DC1/Henri_Kemppainen_Suuri_Taikashow",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/84FCA207F7177E722F51BFE7EAC01DC1/Henri_Kemppainen_Suuri_Taikashow",
                "en": "http://www.savoyteatteri.fi/en/events/event/84FCA207F7177E722F51BFE7EAC01DC1/Henri_Kemppainen_Suuri_Taikashow"
            },
            "provider": {
                "fi": "Live Nation Finland",
                "sv": "Live Nation Finland",
                "en": "Live Nation Finland"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59899/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61123",
            "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: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/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5337,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:49.847034Z",
                    "last_modified_time": "2023-10-10T13:31:49.847054Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737942.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5337/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T13:31:49.699898Z",
            "last_modified_time": "2023-11-14T06:13:41.287805Z",
            "date_published": null,
            "start_time": "2023-11-18T13: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": "Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.",
                "sv": "När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält."
            },
            "description": {
                "fi": "<p>Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.</p><p>Pikkuveljen rakas nalle katoaa salaperäisissä olosuhteissa ja kaikki on Mimmi Lehmän syytä.</p><p>\"Etkö voi olla ihan tavallinen lehmä? Silloin mitään ei tapahdu!\" hänen ystävänsä Varis kysyy. Mutta juuri sitä Mimmi Lehmä haluaa välttää. Hän rakastaa sitä, kun kaikenlaisia asioita tapahtuu! Yhdessä Mimmi ja Varis alkavat seurata kadonneen nallen jälkiä.</p><p>Kesto 67 min<br>Ensi-ilta 10.11.2023<br>Ikäraja Sallittu</p>",
                "sv": "<p>När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält.</p><p>Lillebrors älskade nalle försvinner under mystiska omständigheter och det är Mamma Mus fel.</p><p>\"Kan du inte bara vara en vanlig ko?\" undrar hennes vän Kråkan. \"Då händer ingenting!\" Men det är ju precis det Mamma Mu vill undvika. Hon älskar när det händer saker! Inte bara så sorgliga saker. Tillsammans börjar Mamma Mu och Kråkan följa spåren efter den saknade nallen.</p>"
            },
            "name": {
                "fi": "Kuka olet, Mimmi Lehmä? (S) – Kino Helios",
                "sv": "Vem är Mamma Mu? (T) – Kino Helios"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/75C4DDDDA9D6EDD357F265934C19DE5B/Kuka_olet_Mimmi_Lehma_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/75C4DDDDA9D6EDD357F265934C19DE5B/Vem_ar_Mamma_Mu_T_"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61123/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61129",
            "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:32/?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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 10 €",
                        "en": "20 € / 10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-joulu-ukrainan-kanssa-konsertti-vuotalo-17773322/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-joulu-ukrainan-kanssa-konsertti-vuotalo-17773322/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5406,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-11T14:03:40.094239Z",
                    "last_modified_time": "2023-10-11T14:03:40.094257Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738013.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-11T14:03:39.479185Z",
            "last_modified_time": "2023-11-14T06:13:41.210883Z",
            "date_published": null,
            "start_time": "2023-11-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ukrainalaisten lastenryhmien koreografinen tanssi- ja laulushow esittelee yleisölle ukrainalaista taidetta.",
                "en": "A performance of choreography and song by Ukrainian children's groups introduces its audiences to Ukrainian art."
            },
            "description": {
                "fi": "<p>Ukrainalaisten lastenryhmien koreografinen tanssi- ja laulushow esittelee yleisölle ukrainalaista taidetta.</p><p>Kansantanssiyhtye Svitanok ja laulustudio Lira ovat arvostettuja kilpailuja ja projekteja voittaneita ukrainalaisia ryhmiä. Ne ovat edustaneet Ukrainan kulttuuria Puolan, Tšekin, Slovakian, Itävallan, Saksan, Ranskan, Kreikan, Liettuan, Georgian, Bulgarian ja Qatarin suurimmilla näyttämöillä, ja tulevat nyt yleisön eteen Suomeen! <br> <br>Joulu Ukrainassa on juhlava. Ukrainan laulu- ja tanssiryhmät esittävät joukon perinteisiä tansseja, lauluja ja kansanmusiikkia. Juhli joulua ukrainalaisten kanssa! <br>  <br>Yleisö voi odottaa muinaisen ukrainalaisen kylän tunnelmaa jouluaattona: lapsia kulkemassa talosta taloon, joissa ystävälliset isännät ja lahjat odottavat heitä. Paha voima pyrkii häiritsemään juhlaa, mutta todelliset ukrainalaiset kasakkasoturit suojelevat sitä!</p><p>Ukrainan sodasta huolimatta ukrainalaisten kulttuuri elää edelleen ja ukrainalaiset lapset ovat valmiita jakamaan luovuutensa suomalaisten kanssa! <br> <br>Esityksen on valmistanut koreografinen koulu \"Svitanok\" ja laulustudio \"Lira\". Ohjelmassa esitetään ukrainalaista kansanmusiikkia mukaan lukien kansanlaulu \"Shchedryk\" – ei vain Ukrainan, vaan koko maailman tärkein joululaulu. <br> <br>Konsertin aikana yleisö voi tavata kasakoita ja ukrainalaisten legendojen sankareita. Tansseineen ja lauluineen lapset kutsuvat sinut taiteelliselle matkalle läpi Ukrainan, tuntemaan sen sielun ja tukemaan ukrainalaisia lahjakkaita lapsia!</p><p>Kesto: 1 t 20 min sis. väliajan<br> <br>Lipunmyynnin tuotot menevät esiintyville ryhmille.</p><p>Liput 20 € / 10 € <br> <br>Järjestäjät: Vuotalo, Helsingin kaupunki Ukraina-talo (Tampere), kansalaisjärjestö \"Yaksrava krayina\" (Ukraina)</p>",
                "en": "<p>A performance of choreography and song by Ukrainian children's groups introduces its audiences to Ukrainian art.</p><p>The folk dance group Svitanok and the vocal studio Lira are Ukrainian groups that have won some of the most prestigious competitions and projects in the field. They have represented Ukrainian culture on the biggest stages in Poland, Czech Republic, Slovakia, Austria, Germany, France, Greece, Lithuania, Georgia, Bulgaria and Qatar, and now they will have their premiere on Finnish stages!</p><p>Christmas in Ukraine is festive. Ukrainian song and dance groups perform traditional dances, songs and folk music. Let’s celebrate Christmas together with Ukrainians!</p><p>What can the audience expect: an atmosphere of an ancient Ukrainian village on Christmas Eve. Children with good wishes go from house to house, where friendly hosts and gifts await them. An evil force is ready to disrupt the celebration, but true Ukrainian Cossack warriors protect the celebration! How it all ends, the audience shall see!</p><p>Despite the war in Ukraine, Ukrainian culture still lives on and Ukrainian children are ready to share their creativity with Finnish people!</p><p>Concert duration: 1 h 20 min incl. intermission <br> <br>Tickets 20 € / 10 € <br>  <br>Organizers: Vuotalo (Helsinki), Ukraina-talo (Tampere), \"Yaskrava kraina\" (Ukraine)</p>"
            },
            "name": {
                "fi": "Svitanok - Joulu Ukrainan kanssa",
                "en": "Svitanok - Christmas with Ukraine"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/257BBB8BCD5121E66D5EDEC7B63DA0B5/Svitanok_-_Joulu_Ukrainan_kanssa",
                "en": "http://www.vuotalo.fi/en/events/event/257BBB8BCD5121E66D5EDEC7B63DA0B5/Svitanok_-_Christmas_with_Ukraine_"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61129/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60912",
            "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:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4567,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:54.430408Z",
                    "last_modified_time": "2023-09-07T14:26:54.430438Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736555.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4567/?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": "2023-09-07T14:26:53.764576Z",
            "last_modified_time": "2023-11-14T06:13:41.134674Z",
            "date_published": null,
            "start_time": "2023-11-18T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do."
            },
            "description": {
                "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>",
                "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>"
            },
            "name": {
                "fi": "DanceAbility: Lasten inklusiivinen tanssitunti",
                "en": "DanceAbility: Children's inclusive dance class"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/708D49A85C540750A49F7B3B99A0876F/DanceAbility_Lasten_inklusiivinen_tanssitunti_",
                "en": "http://www.annantalo.fi/en/events/event/708D49A85C540750A49F7B3B99A0876F/DanceAbility_Children_s_inclusive_dance_class"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60912/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59953",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4566,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:53.361736Z",
                    "last_modified_time": "2023-09-07T14:26:53.361759Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731867.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4566/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:53.202225Z",
            "last_modified_time": "2023-11-14T06:13:41.061400Z",
            "date_published": null,
            "start_time": "2023-11-18T11:00:00Z",
            "end_time": "2023-11-18T12:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Aishe Vejdanin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.",
                "sv": "Aishe Vejdanis utställnings guidning tolkas på finskt teckenspråk.",
                "en": "A guided tour of Aishe Vejdani's exhibition interpreted into Finnish sign language."
            },
            "description": {
                "fi": "<p>Aishe Vejdanin näyttelyn opastettu kierros tulkataan suomalaisella viittomakielellä.</p><p>Opastus järjestetään yhteistyössä Ursa Minorin kanssa. Oppaana Aino Laiho.</p><p>Kadonnut tulevaisuus uudelleenkuviteltuna -hanke käsittelee kadonneen tulevaisuuden tunnetta menneisyydessä ja nykyisyydessä. Tunnetta, joka johtuu homogenisoituvista ideologioista, jotka muokkasivat taiteilijan perhehistoriaa ja etnistä historiaa.</p><p>Tämä hanke haastaa kuvittelemaan ja uudelleenkuvittelemaan, millainen tulevaisuus voi tai voisi olla, jos erilaisuutta ei tukahduteta tai tukahdutettaisi.</p><p>Aishe Vejdani seuraa tällaisten ideologioiden vaikutusta perhehistoriassaan ja turkmenistanilaisessa etnisyydessään, jota leimasi Turkmenistanin sovjetisointi vuosina 1920–30 ja Pahlavi-dynastian muodostuminen Iranissa vuodesta 1925 alkaen.</p>",
                "sv": "<p>Aishe Vejdanis utställnings guidning tolkas på finskt teckenspråk.</p><p>Projektet ”Lost future reimagined” (den förlorade framtiden återuppfunnen) handlar om en känsla av en förlorad framtid i det förflutna och nutiden, orsakad av likriktande ideologier som format artistens familje- och etniska historia.</p><p>Projektet är en utmaning till att börja föreställa sig och tänka om hur framtiden kan/kunde te sig om skillnader inte förtrycks/förtrycktes.</p><p>Aishe Vejdani följer effekten av sådana ideologier inom artistens släkthistoria och turkmeniska etnicitet, märkt av sovjetiseringen av Turkmenistan under åren 1920–30 och bildandet av Pahlavidynastin i Iran från 1925.</p>",
                "en": "<p>A guided tour of Aishe Vejdani's exhibition interpreted into Finnish sign language.</p><p>The project “lost future reimagined” deals with a sense of lost future within past and present caused by homogenizing ideologies that shaped artist’s familial and ethnic history.</p><p>This project challenges itself to begin to imagine and reimagine how future can/could be if differences are/were not suppressed.</p><p>Aishe Vejdani follows the effect of such ideologies within her familial history and Turkmen ethnicity marked by Sovietisation of Turkmenistan during 1920–30, and the formation of Pahlavi dynasty in Iran from 1925.</p>"
            },
            "name": {
                "fi": "Viittomakielinen opastus: Lost Future Reimagined",
                "sv": "Guidning på teckenspråk: Lost Future Reimagined",
                "en": "Sign language tour: Lost Future Reimagined"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/EDB4A0BE23709B1A781A6D51659CD8EE/Viittomakielinen_opastus_Lost_Future_Reimagined",
                "sv": "http://www.caisa.fi/sv/evenemang/event/EDB4A0BE23709B1A781A6D51659CD8EE/Guidning_pa_teckensprak_Lost_Future_Reimagined",
                "en": "http://www.caisa.fi/en/events/event/EDB4A0BE23709B1A781A6D51659CD8EE/Sign_language_tour_Lost_Future_Reimagined"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59953/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61182",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5638,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-25T10:15:08.514511Z",
                    "last_modified_time": "2023-10-25T10:15:08.514542Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738368.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5638/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-25T10:15:08.493167Z",
            "last_modified_time": "2023-11-14T06:13:40.988815Z",
            "date_published": null,
            "start_time": "2023-11-18T08:00:00Z",
            "end_time": "2023-11-18T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tule ostoksille tai varaa oma myyntipöytä!"
            },
            "description": {
                "fi": "<p>Tule ostoksille tai varaa oma myyntipöytä!</p><p>Pöytävaraukset: mll.kannelmaki@gmail.com</p>"
            },
            "name": {
                "fi": "MLL:n lastenvaate- ja tarvikekirppis"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/006AC3E67F063F94AE9BF5AF649A27C4/MLL_n_lastenvaate-_ja_tarvikekirppis"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61182/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60657",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "31 €, ovelta 32 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/ondara-savoy-teatteri-17414643/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4563,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:50.930542Z",
                    "last_modified_time": "2023-09-07T14:26:50.930564Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735101.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:49.754043Z",
            "last_modified_time": "2023-11-14T06:13:40.913376Z",
            "date_published": null,
            "start_time": "2023-11-17T17: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": "Yhdysvaltalais-kenialainen Grammy-ehdokas, sielukas laulaja-lauluntekijä Ondara saapuu ensimmäistä kertaa Suomeen."
            },
            "description": {
                "fi": "<p>Yhdysvaltalais-kenialainen Grammy-ehdokas, sielukas laulaja-lauluntekijä Ondara saapuu ensimmäistä kertaa Suomeen.</p><p>J. S. Ondara on itseoppinut laulaja-lauluntekijä, joka muutti parikymppisenä Nairobista Minnesotaan noin kymmenen vuotta sitten. Nuoren taiteilijan tuotannossa kuuluvat kypsyys ja elämänkokemus, ja hän onkin luonut itsensä ja artistiutensa erityisesti tuon valtavan elämänmuutoksen kautta.</p><p>Ondara on kertonut kehittäneensä elämänsä hankalimmilla hetkillä itselleen hahmon, jonka läpikäymät kokemukset kuuluvat musiikissa, ja joka on visuaalisessa muodossa tullut eloon myös artistin luoman novellin ja sarjakuvan myötä. Albumin ja sarjakuvan nimikkohahmo the Spanish Villager on kuin supersankari, jonka artisti keksi itseään varten sitä tarvitsemallaan hetkellä.</p><p>Ondaran debyyttialbumi, amerikkalaisuutta eri näkökulmista käsittelevä “Tales of America” nousi julkaisunsa jälkeen vuonna 2019 kriitikoiden tietoisuuteen rehellisyydellään, tarinankerronnallaan ja musiikillisella vaikuttavuudellaan. Grammy-ehdokkuudellakin tuolloin noteerattu artisti on kertonut kirjoittaneensa parikymmentä kappaletta otsikolla “American Dream” ennen kuin osasi päättää, mikä niistä oli oikea päätymään albumille.</p><p>Viime vuonna kolmannen albuminsa “Spanish Villager no. 3” julkaissut Ondara on tunteita herättävä laulaja sekä vahvasti tulkintaan ja tanssillisuuteen nojaava esiintyjä, jonka hypnoottista liveä päästään todistamaan marraskuussa Helsingissä.</p><p>Konsertin avaa La Haka.</p><p>Illan aikataulu:<br>18:00 Ovet<br>19:00–19:30 La Haka<br>20:00–21:30 Ondara</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>LIPUT: Ennakkoon alk. 31 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 32 EUR, mikäli esitys ei ole loppuunmyyty.</p>"
            },
            "name": {
                "fi": "ONDARA (US) – + La Haka"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5E725F7C42792CE8A1742371F671DBAC/ONDARA_US_"
            },
            "provider": {
                "fi": "Fullsteam Agency Oy"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60657/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60619",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/",
                        "sv": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/",
                        "en": "https://www.lippu.fi/event/a-la-malmi-malmitalo-17268568/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4564,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:52.554080Z",
                    "last_modified_time": "2023-09-07T14:26:52.554111Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728300.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4564/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:52.273611Z",
            "last_modified_time": "2023-11-14T06:13:40.835583Z",
            "date_published": null,
            "start_time": "2023-11-17T17: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": "Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta siivoojarobotista: CW01, CW03 ja CW04.",
                "sv": "Cleaning Women är ett unikt band som opererar med egentillverkade instrument och som består av tre städrobotar: CW01, CW03 och CW04.",
                "en": "‘Cleaning Women’ is a unique ensemble of three robot cleaners using home-made instruments: CW01, CW03 and CW04."
            },
            "description": {
                "fi": "<p>Cleaning Women on ainutlaatuinen itsetehdyillä soittimilla operoiva yhtye, joka muodostuu kolmesta siivoojarobotista: CW01, CW03 ja CW04.</p><p>Yhtye on toiminut samalla kokoonpanolla jo yli kahdenkymmenen vuoden ajan, jonka aikana se on hämmästyttänyt yleisöä ympäri Tellusta yli 600:n keikan verran soittaen yli kahdessakymmenessä maassa.</p><p>Lisäksi yhtye on tehnyt neljä albumia, 3D-varjovisuaalikeikkoja ja muita erikoisprojekteja, elokuvamusiikkia ja lukuisia kehuttuja mykkäelokuvasäestyksiä, joita se on esittänyt livenä niin Moskovan elokuvamuseossa, Bolognan vanhan kaupungin keskustorilla 2000 hengen yleisölle kuin Mexico Cityn nykytaiteen museon pihallakin.</p><p>Viimeisin hyppy elokuvamusiikin puolelle oli yhtyeen tekemä alkuperäismusiikki <b>Alice Rohrwacherin</b> uuteen 38-minuuttiseen lyhytelokuvaan <i>The Pupils</i>, joka sai toukokuussa 2022 ensi-iltansa Cannesin elokuvajuhlilla ja joka valittiin lyhytelokuvasarjassa tämän vuoden Oscar-ehdokkaaksi.</p><p>Yhtyeen viimeisin levy <i>Intersubjectivity</i> julkaistiin Svartin kautta tammikuussa 2019.</p><p>Omaperäisen musiikin lisäksi Cleaning Women on tunnettu myös vaihtoehtoisista instrumenttivalinnoistaan. Yhtyeen soundin peruspalikkoina toimivat itserakennetut instrumentit ja kotitalouksista tutut esineet, joita on modifioitu musiikillisiin tarpeisiin. Materiaali on usein peräisin roskalavoilta tai pelastettu päätymästä sinne.</p><p>Vuosien saatossa yhtyeen instrumenttiperhe on laajentunut, sisältäen alkuperäisen mikitetyn pyykinkuivaustelineen lisäksi lukuisia erilaisia kieli- ja rytmisoittimia. Vaikka lähtökohta on avantgardistinen ja kokeellinen, lopputulos on yhdistelmä taidokasta soittimenhallintaa, uniikkeja äänimaisemia ja melodista sekä rytmillisesti rikasta musiikkia, jota voisi kuvailla vaikkapa yhdistelmänä elokuvallista sci-fi länkkäriä ja kipinöivää roskalavadiskoa.</p><p>Yhdessä yhtyeen yhtenäisen tummanpuhuvan ulkoasun ja muun visuaalisuuden kanssa kokonaisuus välittyy tehokkaimmin nimenomaan keikalla.</p>",
                "sv": "<p>Cleaning Women är ett unikt band som opererar med egentillverkade instrument och som består av tre städrobotar: CW01, CW03 och CW04.</p><p>Förutom för sin originella musik är Cleaning Women även känd för bandets alternativa instrumentval. De viktigaste pjäserna i bandets sound är de egentillverkade instrumenten och de bekanta hushållsartiklarna, som modifierats för de musikaliska behoven.</p><p>Materialet har ofta hämtats från sopcontainrar eller räddats från att hamna där.</p>",
                "en": "<p>‘Cleaning Women’ is a unique ensemble of three robot cleaners using home-made instruments: CW01, CW03 and CW04.</p><p>In addition to its original music, ‘Cleaning Women’ is also known for its alternative instrument choices. The ensemble’s sound is based on home-made instruments and household objects, modified to suit their musical needs.</p><p>The materials often come from or have been rescued from skips.</p>"
            },
            "name": {
                "fi": "Cleaning Women – A la Malmi",
                "sv": "Cleaning Women – A la Malmi",
                "en": "Cleaning Women – A la Malmi"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women",
                "en": "http://www.malmitalo.fi/en/events/event/9EF63A12AFF631FFD478FA67446F53AE/Cleaning_Women"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60619/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59876",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923",
                        "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923",
                        "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4565,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:52.971022Z",
                    "last_modified_time": "2023-09-07T14:26:52.971043Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730794.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4565/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:52.792339Z",
            "last_modified_time": "2023-11-14T06:13:40.757230Z",
            "date_published": null,
            "start_time": "2023-11-17T17: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": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"",
                "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”",
                "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”"
            },
            "description": {
                "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.<br>  <br>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”<br>  <br>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä!  ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"<br>  <br>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.<br> <br>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\" <br> <br>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>www.instagram.com/comedyfabe/ <br>www.instagram.com/mebekoomikko/, www.tiktok.com/@comedyfabe/ <br> <br>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi<br> <br>Klubi-illan tarjoiluista vastaa ravintola Skutta.<br> <br>Paikka: teatterisali    <br>Liput: 20/15 €</p>",
                "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p>",
                "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p>"
            },
            "name": {
                "fi": "LOPPUUNMYYTY Itäkuskus stand up -klubi",
                "sv": "SLUTSÅLT Itäkuskus stand up-klubb",
                "en": "SOLD OUT Itäkuskus Stand-up Club"
            },
            "provider_contact_info": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4CAF3CE8977CA7279138317EE4BF0797/LOPPUUNMYYTY_Itakuskus_stand_up_-klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4CAF3CE8977CA7279138317EE4BF0797/SLUTSALT_Itakuskus_stand_up-klubb",
                "en": "http://www.stoa.fi/en/events/event/4CAF3CE8977CA7279138317EE4BF0797/SOLD_OUT_Itakuskus_Stand-up_Club"
            },
            "provider": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59876/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}