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=224&weekday=6%2C7
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 4979,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=225&weekday=6%2C7",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=223&weekday=6%2C7"
    },
    "data": [
        {
            "id": "kulke:61081",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5165,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:18.594525Z",
                    "last_modified_time": "2023-10-09T13:30:18.594571Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737448.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5165/?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:30:18.455983Z",
            "last_modified_time": "2023-11-14T06:13:22.704487Z",
            "date_published": null,
            "start_time": "2023-10-14T12:00:00Z",
            "end_time": "2023-10-14T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/195CA93ADBD8F6855224BF244AC0FB3A/Muumipeikko_ja_pyrstotahti_S_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios"
            },
            "description": {
                "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61081/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60522",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/",
                        "sv": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/",
                        "en": "https://www.lippu.fi/event/megasakki-malmitalo-17026921/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4408,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:26.567682Z",
                    "last_modified_time": "2023-09-07T14:24:26.567704Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729398.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4408/?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:24:26.423685Z",
            "last_modified_time": "2023-11-14T06:13:22.631644Z",
            "date_published": null,
            "start_time": "2023-10-14T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Megasakin menevä musiikki ja iloinen tunnelma saavat kaikenikäiset pyllyt ylös penkeistä!",
                "sv": "Megasakkis fartfyllda musik och glada stämning får rumpan att lyfta från bänken, oavsett ålder!",
                "en": "Megasakki’s lively music and a happy atmosphere are guaranteed to get both young and old dancing!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki",
                "en": "http://www.malmitalo.fi/en/events/event/5CD531366DDE1AAE0BDA174CC3CDF874/Megasakki"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Megasakki",
                "sv": "Megasakki",
                "en": "Megasakki"
            },
            "description": {
                "fi": "<p>Megasakin menevä musiikki ja iloinen tunnelma saavat kaikenikäiset pyllyt ylös penkeistä!</p><p>Hauskojen ja oivaltavien sanoituksien äärellä viihtyvät niin lapset kuin aikuisetkin.</p><p>Megasakki on vuoden 2023 Emma-voittaja ja uusi lastenmusiikkiyhtye, joka tarjoilee kuulijoilleen parasta rytmimusiikkia: Soulia, Funkkia, RnB:tä, Hip Hoppia...</p><p><b>Megasakin kokoonpano:</b><br>Riikka Keränen/Tea Telepaatti – laulu<br>Elina Arlin/Säihky Suojeluskeiju – laulu<br>Anssi Tirkkonen/Aake Aikapoika – rummut, elektroniikka<br>Vesa Ojaniemi/Arvo Tarkka – basso, laulu, elektroniikka</p><p>Konsertti sopii koko perheelle.</p>",
                "sv": "<p>Megasakkis fartfyllda musik och glada stämning får rumpan att lyfta från bänken, oavsett ålder!</p><p>Både barn och vuxna njuter av de roliga och insiktsfulla texterna.</p><p><b>Megasakki</b><br>Riikka Keränen/Tea Telepaatti<br>Elina Arlin/Säihky Suojeluskeiju<br>Anssi Tirkkonen/Aake Aikapoika<br>Vesa Ojaniemi/Arvo Tarkka</p>",
                "en": "<p>Megasakki’s lively music and a happy atmosphere are guaranteed to get both young and old dancing!</p><p>Fun and clever lyrics entertain children and adults alike.</p><p><b>Megasakki</b><br>Riikka Keränen/Tea Telepaatti<br>Elina Arlin/Säihky Suojeluskeiju<br>Anssi Tirkkonen/Aake Aikapoika<br>Vesa Ojaniemi/Arvo Tarkka</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60522/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59738",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3372900",
                        "sv": "https://www.lippu.fi/eventseries/name-3372900",
                        "en": "https://www.lippu.fi/eventseries/name-3372900"
                    },
                    "price": {
                        "fi": "39/29/15 €",
                        "sv": "39/29/15 €",
                        "en": "39/29/15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4407,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:26.200845Z",
                    "last_modified_time": "2023-09-07T14:24:26.200869Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729033.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4407/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:26.043839Z",
            "last_modified_time": "2023-11-14T06:13:22.553141Z",
            "date_published": null,
            "start_time": "2023-10-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": null,
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D06BF0695E6CC4FE6B2EBEE8BB4F4C2F/UMO_Helsinki_Jazz_Orchestra_performs_Joseph_Bowie_s_Big_Band_Funk_feat_Maja_Mannila_The_Legendary_Music_of_Defunkt",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/D06BF0695E6CC4FE6B2EBEE8BB4F4C2F/UMO_Helsinki_Jazz_Orchestra_performs_Joseph_Bowie_s_Big_Band_Funk_feat_Maja_Mannila_The_Legendary_Music_of_Defunkt",
                "en": "http://www.savoyteatteri.fi/en/events/event/D06BF0695E6CC4FE6B2EBEE8BB4F4C2F/UMO_Helsinki_Jazz_Orchestra_performs_Joseph_Bowie_s_Big_Band_Funk_feat_Maja_Mannila_The_Legendary_Music_of_Defunkt"
            },
            "location_extra_info": null,
            "name": {
                "fi": "UMO Helsinki Jazz Orchestra performs Joseph Bowie’s Big Band Funk feat. Maja Mannila: The Legendary Music of Defunkt – Kapellimestarina Ed Partyka",
                "sv": "UMO Helsinki Jazz Orchestra performs Joseph Bowie’s Big Band Funk feat. Maja Mannila: The Legendary Music of Defunkt",
                "en": "UMO Helsinki Jazz Orchestra performs Joseph Bowie’s Big Band Funk feat. Maja Mannila: The Legendary Music of Defunkt"
            },
            "description": {
                "fi": "<p>Nyt saa tanssia! Laulaja, pasunisti ja perkussionisti, Defunkt-legenda Joseph Bowieta voi hyvällä syyllä kutsua funkin päälliköksi, sillä hän on viihdyttänyt, riehaannuttanut ja tanssittanut yleisöjä ympäri maailman jo vuosikymmeniä. Bowie saapuu UMO Helsinki Jazz Orchestran solistiksi Savoy-teatteriin perjantaina 13. lokakuuta ja aisaparikseen nuoren lahjakkuuden, virtuoottisen jazz- ja soul-laulajan Maja Mannilan. Yhdessä tämä valloittava parikymmenpäinen kokoonpano esittää Defunkt-yhtyeen musiikkia 1970-luvulta tähän päivään. Luvassa on funkia, soulia ja jazzia tulviva ilta, joka todellakin menee jalan alle! Ohjelmiston on sovittanut Ed Partyka, joka myös johtaa konsertin.</p><p>Joseph ”Joe” Bowie syntyi muusikkoperheen nuorimmaiseksi Yhdysvaltain Missourissa 1953. Bowien kaksi vanhempaa veljeä, saksofonisti Byron ja trumpetisti Lester, sekä musiikinopettajaisä William vaikuttivat häneen voimakkaasti. Bowie teki ensimmäisen kansainvälisen kiertueensa jo 1971 ja esiintyi ensimmäisen kerran Montreux’n jazzfestivaaleilla 1973. Hän vaikutti vuosia sekä Pariisin jazzpiireissä että Chicagon ja New Yorkin rhythm'n'blues-skenessä. Bowie on levyttänyt Defunkt-yhtyeensä kanssa viitisentoista albumia. Hän on asunut jo parinkymmenen vuoden ajan Hollannissa, josta käsin on rakentanut uraa ympäri Eurooppaa. www.josephbowie.com</p><p>Maja Mannila on vaikuttava suomalainen jazz- ja soul-laulaja, pianisti ja säveltäjä. Hänen oma musiikkinsa on sekoitus r'n'b-tä, soulia, jazzia, gospelia ja poppia. Äärimmäisen monipuolisella äänellään ja neljän oktaavin äänialallaan Mannila on lumonnut yleisöt ympäri Eurooppaa. Tulevaisuudessa Mannila tähtää levyttämiseen ja kansainväliseen keikkailuun sekä oman yhtyeensä kanssa että sooloartistina. Hänen debyyttialbuminsa Up & Down julkaistiin viime vuonna. www.maja-mannila.webnode.se</p><p>Konsertin kesto 2 h sis. väliajan.</p><p>https://youtu.be/-SHj4VKlCKM<br>https://youtu.be/ijd3Ej2G_hg</p>",
                "sv": "<p>Nu får man dansa! Sångaren, basunisten och perkussionisten, Defunktlegenden Joseph Bowie kan med fog kallas för chefen för funk – han har underhållit publik, fått fart på sina åskådare och dragit ut folk på dansgolven i flera årtionden och i hela världen. Bowie besöker Savoyteatern som solist för UMO Helsinki Jazz Orchestra fredagen den 13 oktober och som sin parhäst har han den unga begåvningen, virtuosa jazz- och soulsångerskan Maja Mannila. Tillsammans framför den förtjusande ensemblen med ett tjugotal musiker musik av bandet Defunkt från 1970-talet till dags dato. Det utlovas en kväll fylld ned funk, soul och jazz som verkligen får foten att lyfta! Repertoaren har arrangerats av Ed Partyka som också är dirigent på konserten.</p><p>Joseph ”Joe” Bowie föddes som den yngsta sonen i en musikerfamilj i Missouri USA 1953. Bowies två äldre bröder, saxofonisten Byron och trumpetisten Lester, och hans musiklärarfar William hade ett starkt inflytande på honom. Bowie gjorde sin första internationella turné redan 1971 och uppträdde 1973 för första gången på jazzfestivalen i Montreux. Han verk under flera år verksam i både jazzkretsarna i Paris och rhythm'n'blues-scenen i Chicago och New York. Bowie har spelat in omkring femton album med sitt band Defunkt. Han är redan sedan att tjugotal år bosatt i Nederländerna, som fungerat som en bas när han byggt sin karriär runtom i Europa. www.josephbowie.com</p><p>Maja Mannila är en imponerande finländska jazz- och soulsångerska, pianist och kompositör. Hennes egen musik är en mix av r'n'b, soul, jazz, gospel och pop. Mannila har med sin extremt mångsidiga röst och sitt röstomfång på fyra oktaver förtrollat publiker i hela Europa. I framtiden är Mannilas mål att spela in skivor och ge konserter internationellt både med det egna bandet och som soloartist. Mannila släppte sitt debutalbum Up & Down i fjol. www.maja-mannila.webnode.se</p><p>Konsertens längd 2 h med paus.</p><p>https://youtu.be/-SHj4VKlCKM<br>https://youtu.be/ijd3Ej2G_hg</p>",
                "en": "<p>Make them dance! Singer, trombonist, percussionist, Defunkt legend Joseph Bowie can be called the master of funk with good reason, as he has entertained, made people dance and driven them wild around the world for decades.</p><p>Bowie features as a soloist of the UMO Helsinki Jazz Orchestra at the Savoy Theatre on Friday, October 13, 2023. His partner in crime in this concert will be young and virtuoso Finnish talent, jazz and soul singer Maja Mannila.</p><p>Together, this captivating 20-something ensemble performs the music of the Defunkt band from the 1970s to the present day. The night will be full of funk, soul and jazz and the music will definitely make your feet move! The program is arranged by Ed Partyka, who also conducts the concert.</p><p>Joseph \"Joe\" Bowie was born as the youngest of a family of musicians in Missouri, USA, in 1953. Bowie has been heavily influenced by his father William, who was a music teacher, as well as his two older brothers, the saxophonist Byron and the trumpeter Lester. Bowie made his first international tour as early as 1971 and performed for the first time at the Montreux Jazz Festival in 1973. For years, he influenced both the jazz circles of Paris and the rhythm'n'blues scene of Chicago and New York. Bowie has recorded some fifteen albums with his band Defunkt. He has lived in Holland for twenty years, from where he has built a career all over Europe. www.josephbowie.com</p><p>Virtuosic vocalist, composer and pianist Maja Mannila is an impressive new voice in music today. Mannila merges aspects of different musical genres; R'n'B, Soul, Pop, Jazz and Gospel. With her four-octave vocal range and immensely versatile voice, Maja has enchanted audiences around Europe as she strives towards an international career. www.maja-mannila.webnode.se</p><p>Duration 2 hours with intermission.</p><p>https://youtu.be/UX0n-qkEwPg<br>https://youtu.be/ijd3Ej2G_hg</p>"
            },
            "provider": {
                "fi": "UMO Helsinki Jazz Orchestra",
                "sv": "UMO Helsinki Jazz Orchestra",
                "en": "UMO Helsinki Jazz Orchestra"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59738/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59875",
            "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": [],
                    "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"
                    },
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4406,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:25.730833Z",
                    "last_modified_time": "2023-09-07T14:24:25.730855Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730792.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4406/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:25.064982Z",
            "last_modified_time": "2023-11-14T06:13:22.476852Z",
            "date_published": null,
            "start_time": "2023-10-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": 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!”"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/9F61A0669F3BA6738B9991D5D36014C3/Itakuskus_stand_up_-klubi",
                "sv": "http://www.stoa.fi/sv/evenemang/event/9F61A0669F3BA6738B9991D5D36014C3/Itakuskus_stand_up-klubb",
                "en": "http://www.stoa.fi/en/events/event/9F61A0669F3BA6738B9991D5D36014C3/Itakuskus_Stand-up_Club"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Itäkuskus stand up -klubi",
                "sv": "Itäkuskus stand up-klubb",
                "en": "Itäkuskus Stand-up Club"
            },
            "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>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59875/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60521",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/",
                        "sv": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/",
                        "en": "https://www.lippu.fi/event/osmo-ikonen-feat-23-malmitalo-17268544/"
                    },
                    "price": {
                        "fi": "34 €",
                        "sv": "34 €",
                        "en": "34 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4405,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:24.135662Z",
                    "last_modified_time": "2023-09-07T14:24:24.135692Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723296.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4405/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:23.428401Z",
            "last_modified_time": "2023-11-14T06:13:22.402572Z",
            "date_published": null,
            "start_time": "2023-10-13T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Odotettu ja toivottu Osmo Ikonen feat. -kiertue on täällä!",
                "sv": "Den efterlängtade och önskade Osmo Ikonen feat. -turnén är här!",
                "en": "The long-awaited and anticipated Osmo Ikonen feat. tour is here!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_-konsertti_vieraana_Emma_Salokoski_LOPPUUNMYYTY",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_-konsert_som_gast_Emma_Salokoski_SLUTSALD",
                "en": "http://www.malmitalo.fi/en/events/event/4AE38F20640949DF949D898EAEBB9081/Osmo_Ikonen_feat_Emma_Salokoski_SOLD_OUT"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Osmo Ikonen feat. -konsertti, vieraana Emma Salokoski | LOPPUUNMYYTY",
                "sv": "Osmo Ikonen feat. -konsert, som gäst Emma Salokoski | SLUTSÅLD",
                "en": "Osmo Ikonen feat. Emma Salokoski | SOLD OUT"
            },
            "description": {
                "fi": "<p>Odotettu ja toivottu Osmo Ikonen feat. -kiertue on täällä!</p><p><b>Osmo Ikonen</b> kutsuu vieraakseen Malmitalon konserttiin monipuolisen ja arvostetun laulaja-lauluntekijä, <b>Emma Salokosken</b>. Useista eri yhtyeyksistä tutut musiikkialan moniottelijat lyövät kättä päälle ja esittävät yhdessä tyylikkään kokonaisuuden omiaan, sekä lainattuja lauluja sekä kotimaasta että maailmalta.</p><p>Tätä musiikillista tyylikyyttä ja karismaa on nähtävissä harvoin, joten tämä kannattaa tulla kuulemaan ja kokemaan itse paikan päälle!<br> <br>Osmo Ikonen on laulaja/lauluntekijä/multi-instrumentalisti ja musiikkituottaja. Hänet tunnetaan soolouransa lisäksi <i>Sunrise Avenue</i> yhtyeen kosketinsoittajana, sekä mm. SuomiLOVE-ohjelman solistina ja sovittajana. <br> <br>Hänen debyyttialbuminsa <i>”Stories From Within”</i> julkaistiin vuonna 2008, toinen albumi <i>”Heaven Or Hell Is Just State Of Mind”</i> puolestaan vuonna 2010. Vuonna 2015 ilmestyi hänen viimeisin englanninkielinen EP:nsä <i>”Let it out”</i>.</p><p>Sittemmin artisti on keskittynyt suomenkieliseen tuotantoon. Ensimmäinen suomenkielinen levy, <i>Yhden miehen armeija</i>, julkaistiin kesällä 2021. Uuden materiaalin myötä Osmo keikkailee sekä soolona, että bändin kanssa ympäri Suomen.<br> <br>Lämmin ja tunnistettava laulusoundi, energinen lavakarisma, poikkeuksellinen lahjakkuus useiden eri soitinten taitajana, sekä pitkä ura musiikin parissa on tehnyt Osmosta arvostetun artistin ympäri Suomen.<br> <br><b>Emma Salokoski</b> on tehnyt monipuolista uraa laulajana vuodesta 1998. Hän säveltää ja sanoittaa usein laulunsa, ja hänen musiikkiaan on myös esitetty useissa teatteri- ja tanssiproduktioissa.<br> <br>Vuonna 2006 Salokoski valittiin vuoden naissolistiksi Emma-gaalassa. Emma Salokoski Ensemblen albumi <i>”Kaksi mannerta”</i> on myynyt kultaa, ja vuonna 2010 julkaistun kappaleen <i>”Veden alla”</i> -videota on katsottu YouTubessa yli neljä miljoonaa kertaa. Salokoski on tehnyt mittavan uran myös jazzmusiikin parissa.</p><p>Lisäksi Salokoski toimii kuoronjohtajana, ja vetää omaa kuoroaan nimeltä <i>“Emma Salokoski Voices”</i> sekä työskentelee kuoronvalmentajana ja äänenkäyttöcoachina. Hän on erikoistunut rytmimusiikin kuoronjohtoon opiskellessaan Royal Academy of Music Aalborgissa Tanskassa.<br> <br>Emma on toiminut taiteen piirissä useissa poikkitaiteellisissa projekteissa, mm. säveltänyt musiikkia tanssiteoksiin, esiintynyt tanssiteoksissa, tehnyt kuvataidetta ja ohjannut musiikkiteatteria. Hän on myös esiintynyt maamme eturivin muusikoiden kanssa ympäri Suomea ja ulkomailla. Hän on ollut solistina niin <i>UMO:n</i> kuin sinfoniaorkestereiden kanssa, ja nähnyt myös rock-festivaalien vellovia yleisömassoja mm. <i>Don Johnson Big Bandin</i> riveissä.</p><p>Vuonna 2021 Emma palkittiin Vantaan taiteilijapalkinnolla.</p><p>Konsertin kesto on noin 1,5 h (sis. väliajan).</p>",
                "sv": "<p>Den efterlängtade och önskade Osmo Ikonen feat. -turnén är här!</p><p>Till konserten i Malms kulturhus bjuder Osmo Ikonen som gäst den mångsidiga och uppskattade sångaren och låtskrivaren Emma Salokoski.</p><p>Dessa musikaliska mångkampare, som är kända från många sammanhang, skakar hand och framför tillsammans en elegant repertoar bestående av både egna och lånade låtar från hemlandet och utlandet.</p>",
                "en": "<p>The long-awaited and anticipated Osmo Ikonen feat. tour is here!</p><p>Osmo Ikonen invites the versatile and acclaimed singer-songwriter Emma Salokoski as a special guest to a concert at Malmitalo.</p><p>The multi-talented musicians, known from several different ensembles, will shake hands and perform an elegant set of their own songs as well as borrowed songs from Finland and around the world.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60521/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61046",
            "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: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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios",
                        "sv": "https://www.lippu.fi/artist/kino-helios",
                        "en": "https://www.lippu.fi/artist/kino-helios"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5164,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:16.479280Z",
                    "last_modified_time": "2023-10-09T13:30:16.479301Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737375.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5164/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:15.412988Z",
            "last_modified_time": "2023-11-14T06:13:22.323744Z",
            "date_published": null,
            "start_time": "2023-10-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.",
                "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.",
                "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_",
                "en": "http://www.malmitalo.fi/en/events/event/8452AA1BD5590E5DF556E631A2D1CA37/Peluri_kuolema_on_elavien_ongelma_16_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios",
                "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios",
                "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios"
            },
            "description": {
                "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>",
                "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>",
                "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61046/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60240",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/art-jazz-helsinki-festival-vuotalo-17251560/",
                        "sv": "https://www.lippu.fi/event/art-jazz-helsinki-festival-vuotalo-17251560/",
                        "en": "https://www.lippu.fi/event/art-jazz-helsinki-festival-vuotalo-17251560/"
                    },
                    "price": {
                        "fi": "20 € / 18 €",
                        "sv": "20 € / 18 €",
                        "en": "20 € / 18 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4404,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:22.921213Z",
                    "last_modified_time": "2023-09-07T14:24:22.921234Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734470.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4404/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:24:22.762808Z",
            "last_modified_time": "2023-11-14T06:13:22.242127Z",
            "date_published": null,
            "start_time": "2023-10-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Art Jazz Helsinki -festivaalin levynjulkaisukonsertissa Riikka Keräsen kvartetti esittää sävellyksiä Keräsen kiitosta saaneelta debyyttialbumilta A Vision of a Garden.",
                "sv": "Albumsläppskonserten för Art Jazz Helsinki festival. Riikka Keränens kvartett framför kompositioner från Keränens hyllade debutalbum A Vision of a Garden.",
                "en": "At the album release concert of the Art Jazz Helsinki festival, Riikka Keränen's quartet performs compositions from Keränen's acclaimed debut album A Vision of a Garden."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BC2FC28B4112D16C4B2CCF0A2E8E09DE/Riikka_Keranen_Group_One_Time_Romance",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/BC2FC28B4112D16C4B2CCF0A2E8E09DE/Riikka_Keranen_Group_One_Time_Romance",
                "en": "http://www.vuotalo.fi/en/events/event/BC2FC28B4112D16C4B2CCF0A2E8E09DE/Riikka_Keranen_Group_One_Time_Romance"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Riikka Keränen Group: One Time Romance – Klubi-ilta / Art Jazz Helsinki Festival",
                "sv": "Riikka Keränen Group: One Time Romance",
                "en": "Riikka Keränen Group: One Time Romance"
            },
            "description": {
                "fi": "<p>Art Jazz Helsinki -festivaalin levynjulkaisukonsertissa Riikka Keräsen kvartetti esittää sävellyksiä Keräsen kiitosta saaneelta debyyttialbumilta A Vision of a Garden.</p><p>Lisäksi konsertissa kuullaan tätä iltaa varten valikoituja suuren amerikkalaisen laulukirjan jazzklassikoita.</p><p>Laulajan lämmin ääni, yhtyeen hienostunut sävelkieli ja improvisoinnin pyörteistä vauhtia saavat maisemat vievät kuulijan matkalle vaikuttavan jazzin maailmaan. Jazzlaulaja-säveltäjä Riikka Keräsen musiikissa post-bop-jazzin elementit yhdistyvät pop-suuntautuneemman lähestymistavan sävyihin ja herkkyyteen.</p><p>Riikka Keränen – laulu<br>Juho Valjakka – piano<br>Oskari Siirtola – kontrabasso<br>Anssi Tirkkonen – rummut</p><p>Liput 20 / 18 € + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Kesto: n. 2 tuntia, konsertissa on väliaika.</p><p>Festivaalin järjestää Paloheinän-Torpparinmäen kaupunginosayhdistys ry.<br>Festivaalia tukee Helsingin kaupunki.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. Sali avautuu klo 17.30.</p>",
                "sv": "<p>Albumsläppskonserten för Art Jazz Helsinki festival. Riikka Keränens kvartett framför kompositioner från Keränens hyllade debutalbum A Vision of a Garden.</p><p>Riikka Keränen<br>Juho Valjakka<br>Oskari Siirtola<br>Anssi Tirkkonen</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Barn under 18 år endast i sällskap av en vuxen.<br>Dörrarna öppnas kl. 17.30.</p>",
                "en": "<p>At the album release concert of the Art Jazz Helsinki festival, Riikka Keränen's quartet performs compositions from Keränen's acclaimed debut album A Vision of a Garden.</p><p>Riikka Keränen<br>Juho Valjakka<br>Oskari Siirtola<br>Anssi Tirkkonen</p><p>Club night, fully licensed bar, Café Pokkari. Children under 18 yrs only with an adult.<br>Doors open at 5.30 PM.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60240/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60507",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-kanneltalo-16804389/",
                        "sv": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-kanneltalo-16804389/",
                        "en": "https://www.lippu.fi/event/jokeri-pokeri-box-deluxe-show-kanneltalo-16804389/"
                    },
                    "price": {
                        "fi": "18,50 € / Perhelippu neljälle 14,50 €/kpl",
                        "sv": "18,50 € / Perhelippu neljälle 14,50 €/kpl",
                        "en": "18,50 € / Perhelippu neljälle 14,50 €/kpl"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4403,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:22.488227Z",
                    "last_modified_time": "2023-09-07T14:24:22.488249Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730295.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4403/?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:24:22.310268Z",
            "last_modified_time": "2023-11-14T06:13:22.168975Z",
            "date_published": null,
            "start_time": "2023-10-13T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestaritaikuri Simo Aalto juhlii kuluvana vuonna 45-vuotista uraansa esiintyvänä taiteilijana.",
                "sv": "Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.",
                "en": "Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4F7151F490A6A7FF4EA24304D3C3DB6F/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4F7151F490A6A7FF4EA24304D3C3DB6F/Jokeri_Pokeri_Box_DeLuxe_SHOW",
                "en": "http://www.kanneltalo.fi/en/events/event/4F7151F490A6A7FF4EA24304D3C3DB6F/Jokeri_Pokeri_Box_DeLuxe_SHOW"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Jokeri Pokeri Box – DeLuxe SHOW",
                "sv": "Jokeri Pokeri Box – DeLuxe SHOW",
                "en": "Jokeri Pokeri Box – DeLuxe SHOW"
            },
            "description": {
                "fi": "<p>Lasten ja aikuisten legendaarinen kestosuosikki ja TV:stä tuttu maailmanmestaritaikuri Simo Aalto juhlii kuluvana vuonna 45-vuotista uraansa esiintyvänä taiteilijana.</p><p><b>Simo</b> ja hänen avustajavaimonsa <b>Kirsti</b> juhlivat merkkipaalua syksyllä 2023 alkavalla mittavalla kuudentoista paikkakunnan <i>Jokeri Pokeri Box DeLuxe</i> -kiertueella. Kiertue starttaa Simon syntymäkaupungista Oulusta syyskuun puolessa välissä.</p><p>Tällä kiertueella on ensimmäistä kertaa koskaan mukana Special Guest Star ja tämän viitan harteilleen on saanut oma Simon tytär, vatsastapuhuja <b>Sari Aalto</b>. Sari tunnetaan vuoden 2017 Talent Suomi -ohjelman kakkossijastaan sekä lukemattomista videoistaan TikTok-palvelussa, jossa hänellä on käsittämättömät yli 5 miljoonaa seuraajaa! Sari tuo tietysti mukanaan Simpanssi-Anssin, joka on hurmannut lapset ja aikuiset keikoilla ympäri Suomen.</p><p>Uudessa iloisessa show’ssa on ihmeteltävää koko perheelle. Simo tarjoilee maailman parhaita taikatemppuja ryyditettynä hyväntuulisella lavashow’lla. Kolmikon mukaansatempaava esiintyminen takaa, että taikapölyn vaikutus säilyy pitkään, mieli virkistyy ja arjen pyöritys unohtuu. Sanalla sanoen luvassa on laadukasta estradiviihdettä!</p><p>Simon omin sanoin: <i>”Pitkän urani aikana on jo yksi sukupolvi, ysärilapset, kasvanut aikuisiksi ja he tulevat nyt omien lastensa kanssa katsomaan lapsuutensa idolia. Siksi haluan tarjota iloa ja ihmetystä kaikenikäisille.”</i></p><p>Kesto: 1 t<br>Ikäsuositus: 2+</p>",
                "sv": "<p>Barns och vuxnas stående favorit, tv-kändisen och den legendariska världsmästartrollkarlen Simo Aalto firar i år sin 45-åriga karriär som scenkonstnär.</p><p>Special Guest Star: Sari Aalto</p>",
                "en": "<p>Simo Aalto, the legendary favourite for children and adults and the world champion magician from TV, is celebrating 45 years as a performing artist this year.</p><p>Special Guest Star: Sari Aalto</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60507/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61048",
            "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/kulke:55/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/",
                        "sv": "https://www.lippu.fi/artist/kino-helios/",
                        "en": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €",
                        "en": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5163,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:30:14.886468Z",
                    "last_modified_time": "2023-10-09T13:30:14.886485Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737379.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5163/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:30:14.741006Z",
            "last_modified_time": "2023-11-14T06:13:22.018322Z",
            "date_published": null,
            "start_time": "2023-10-13T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_",
                "en": "http://www.malmitalo.fi/en/events/event/6D218911D19DE025F90E5D3956F9BE0C/Rakas_aitini_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Rakas äitini (12) – Kino Helios",
                "sv": "Rakas äitini (12) – Kino Helios",
                "en": "Rakas äitini (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61048/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60451",
            "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:33/?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/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4401,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:24:20.825054Z",
                    "last_modified_time": "2023-09-07T14:24:20.825076Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734963.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4401/?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:24:20.067660Z",
            "last_modified_time": "2023-11-14T06:13:21.940005Z",
            "date_published": null,
            "start_time": "2023-10-13T06:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Monikielinen ja vuorovaikutuksellinen tarina kolmesta shamaanikoulun oppilaasta, jotka päättävät pelastaa shamaanikoulun ystävyyden ja taikuuden avulla.",
                "sv": "En flerspråkig och interaktiv berättelse om tre elever i en schamanskola som bestämmer sig för att rädda schamanskolan med hjälp av vänskap och magi.",
                "en": "Somewhere in the far North, there is an international shamanic school in the middle of the forest."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/0453956076139767E8E6EB639EF69B1C/Shamaanit_-_paivakodeille_ja_1_ja_2_luokan_oppilaille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/0453956076139767E8E6EB639EF69B1C/Schamaner",
                "en": "http://www.caisa.fi/en/events/event/0453956076139767E8E6EB639EF69B1C/Shamans"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Shamaanit - päiväkodeille ja 1. ja 2. luokan oppilaille – Tarina ystävyydestä ja taikuudesta",
                "sv": "Schamaner – En berättelse om vänskap och magi",
                "en": "Shamans – A story of friendship and magic"
            },
            "description": {
                "fi": "<p>Monikielinen ja vuorovaikutuksellinen tarina kolmesta shamaanikoulun oppilaasta, jotka päättävät pelastaa shamaanikoulun ystävyyden ja taikuuden avulla.</p><p>Kaukana pohjoisen metsissä sijaitsee kansainvälinen shamaanikoulu, jonka oppilaat tulevat joka puolelta maailmaa. Jokaisella oppilaalla on erityinen voima, mutta koulussa on tiukat säännöt oppilaiden välisestä vuorovaikutuksesta, äidinkielen käytöstä, loitsuista ja taikuudesta kouluajan ulkopuolella.</p><p>Eräänä päivänä tapahtuu jotain odottamatonta ja oppilaat päättävät rikkoa sääntöjä pelastaakseen koulun. Pystyvätkö kolme oppilasta Ursula, Tremar ja Šams pelastamaan mestarinsa ja murtamaan koulunsa loitsun?<br> <br>Esityksen kolme päähenkilöä löytävät – yleisön avustuksella – ystävyyden ja monimuotoisuuden taian.<br> <br>Tämä monikielinen ja interaktiivinen esitys on kunnianosoitus shamanismille, taikuudelle ja ystävyydelle.</p><p>Ohjaus ja näytelmäkirjoittaja: Ilaria Tucci<br>Taiteellinen tuottaja ja dramaturgi: Juliane Mikkonen<br>Näyttelijät: Leandro Lefa, Taru Huokkola, Jalal Hajali<br>Kertojaääni: Markku Mäkiranta<br>Äänet ja musiikki: Behnam Sanei<br>Äänieditointi: Headline Recording Studio | Jani Viitanen<br>Valosuunnittelu: Veli-Ville Siven & Perttu Sinervo<br>Lavasuunnittelu: Ilaria Tucci & Perttu Sinervo<br> <br>Yhteistyökumppanit: Suomen Kulttuurirahasto, Taiteen edistämiskeskus ja Lastenkulttuurikeskus Rulla.</p><p>Kesto: n. 45 min<br>Ikäsuositus: 5+ vuotiaille, mutta esitys soveltuu myös pienemmille<br>Kielet: suomi, lisäksi brasilian portugali, arabia, kurdi ja englanti.<br>Maksuton päiväkodeille ja ala-asteen 1. ja 2. luokkalaisille.</p>",
                "sv": "<p>En flerspråkig och interaktiv berättelse om tre elever i en schamanskola som bestämmer sig för att rädda schamanskolan med hjälp av vänskap och magi.</p><p>Långt uppe i skogarna i norr finns en internationell schamanskola med elever från hela världen. Varje elev har en särskild kraft, men skolan har strikta regler om umgänget mellan eleverna, användningen av det egna modersmålet, besvärjelser och magi utanför skoltiden.</p><p>Denna flerspråkiga och interaktiva föreställning är en hyllning till schamanism, magi och vänskap.</p><p>Längd: n. 45 min<br>Åldersrekommendation: 5+ år, också yngre<br>Språk: finska, brasiliansk portugisiska, arabiskt, kurdiska och engelska</p>",
                "en": "<p>Somewhere in the far North, there is an international shamanic school in the middle of the forest.</p><p>The students come from every corner of the world to become shamans. Everyone already has a special power, but there are strict rules in the school about interactions among the students, regarding the use of native languages, spells and magic outside the school time.</p><p>However, one day something unexpected happens and the students decide to break the rules to save the school. Will the three students Ursula, Tremar, and Šams be able to rescue their master and break the enchantment on their school?</p><p>With the help of the audience, the three main characters will discover the magic of friendship and diversity. This multilingual and interactive play is a homage to shamanism, magic, and friendship.</p><p>FinNomads consists of theatre professionals with Finnish and foreign backgrounds.<br>Its members implement multilingual and intercultural theatre productions and workshops in Finland and abroad.</p><p>Director and playwright: Ilaria Tucci<br>Artistic producer and dramaturg: Juliane Mikkonen<br>Performers: Leandro Lefa, Taru Huokkola, Jalal Hajali<br>Voice-over: Markku Mäkiranta<br>Sound & music: Behnam Sanei<br>Sound editing: Headline Recording Studio | Jani Viitanen<br>Lighting design: obias Lönnquist, Ilaria Tucci<br>Stage design: Ilaria Tucci & Perttu Sinervo</p><p>Duration: approx. 45 min<br>Age recommendation: 5+ yrs, also for younger children <br>Languages: Finnish, Brazilian Portuguese, Arabic, Kurd and English</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60451/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60796",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3476002"
                    },
                    "price": {
                        "fi": "35 €, ovelta 40 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4370,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:55.241849Z",
                    "last_modified_time": "2023-09-07T14:23:55.241871Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736543.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4370/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:54.366551Z",
            "last_modified_time": "2023-11-14T06:13:19.042275Z",
            "date_published": null,
            "start_time": "2023-10-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7D20E1D4E2A7AEC2D5D7FF39EC39F9A0/Bottenviken_SE_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Bottenviken (SE)"
            },
            "description": {
                "fi": "<p>Suomalaiset hitit ruotsiksi kääntänyt Bottenviken saapuu Suomeen levvynjulkaisukeikalle Savoy-teatteriin!</p><p>Pohjoismaissa suurta ihastusta ja arvostelumenestystä herättänyt Bottenviken saapuu ensimmäistä kertaa Suomeen keikoille lokakuussa 7.10. Tampereen Tavara-asemalle ja 8.10. Helsingin Savoy-teatteriin.</p><p>Love Antellin, Mattias Björkasin ja Thella Johnsonin perustaman Bottenvikenin tavoitteena on tuoda yhteen muusikoita, taiteilijoita ja kirjailijoita ruotsin ja suomen kielialueilta vuoropuheluun Itämeren yli musiikin ja sanoitusten avulla. Projektin tuloksena on syntynyt täyspitkä albumi \"Du och jag - ett rike - ett land\". Kehuttu albumi on saanut Suomessa positiivisen vastaanoton ja levy oli ilmestyessään muun muassa Radio Helsingin viikon levynä. Levyllä Bottenviken on tehnyt käännökset ruotsiksi mm. Maustetyttöjen, Samuli Putron, Ultra Bran ja Maija Vilkkumaan kappaleista.</p><p>Hanke perustuu kysymykseen, kuinka kielen ja kansallisen identiteetin välinen kuilu saa erilaisia ilmaisuja. Onko Ruotsin ja Suomen välillä henkinen etäisyys? Jos on, mitä tässä välissä on? Tulkintojen lisäksi Antell, Björkas ja Johnson tuovat mukanaan henkilökohtaisia näkemyksiään Ruotsista, Suomesta ja ruotsalais-suomalaisesta kulttuuri-identiteetistä. Heillä on yhteinen identiteetti, mutta heillä on myös erilaisia kokemuksia.</p><p>Thella Johnson on toimittaja, muusikko ja kirjailija. Hän työskentelee juontajana ja tuottajana Ruotsin radiossa. Hän on toiminut SR:n kirjeenvaihtajana Helsingissä ja debytoi kirjailijana keväällä 2023 romaanilla \"Peace\" (Norstedts). Mattias Björkas on muusikko ja kirjailija. Hän on keulahahmo ja lauluntekijä Vasas Flora och Fauna -yhtyeessä ja hän on vaikuttanut myös indie-suosikki Cats On Fire -yhtyeessä. Love Antell on musiikkitaiteilija ja kuvataiteilija. Hän on aktiivinen sekä sooloartistina että Florence Valentin -yhtyeessä. Hän on esiintynyt palkitussa elokuvassa \"Ingen riktig finne\" (2013) ja ruotsalaisen television Love in Finland -sarjassa (2015).</p><p>Bottenviken on nähty kesän aikana muun muassa Göteborgin Way Out West -festivaaleilla ja yhtye tekee syksyn aikana keikkoja Ruotsissa. Lokakuussa Bottenviken esiintyy ensimmäistä kertaa Suomessa lauantaina 7.10. Tampereen Tavara-asemalla osana Lost In Music -festivaalia ja sunnuntaina 8.10. Helsingissä omalla keikallaan Savoy-teatterissa.</p><p>LIPUT: Ennakkoon alk. 35 EUR + tilausmaksut (alk. 1,50 € www.lippu.fi)<br>Ovelta 40 EUR, mikäli esitys ei ole loppuunmyyty.</p><p>Kesto n. 60-70min, ei väliaikaa</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>Helsingin keikan viralliset mediakumppanit ovat Radio Helsinki ja Soundi.</p><p>www.facebook.com/bottenvikenartistproject <br>www.sunbornlive.fi</p>"
            },
            "provider": {
                "fi": "Sunborn Events Oy"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60796/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59930",
            "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: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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4369,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:53.530137Z",
                    "last_modified_time": "2023-09-07T14:23:53.530158Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731641.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4369/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:52.862164Z",
            "last_modified_time": "2023-11-14T06:13:18.965078Z",
            "date_published": null,
            "start_time": "2023-10-08T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.",
                "sv": "Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.",
                "en": "‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile",
                "en": "http://www.stoa.fi/en/events/event/4BB5FADA5B15ECABB1C7EC95368A1C9A/Meanwhile"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Meanwhile – Decade of Deviations: Nuua Company 10 vuotta",
                "sv": "Meanwhile – Decade of Deviations: Nuua Company 10 år",
                "en": "Meanwhile – Decade of Deviations: Nuua Company 10 years"
            },
            "description": {
                "fi": "<p>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Meanwhile</b><br>Meanwhile on maailma, joka peilaa tämän päivän kulttuuriamme ja iloittelee kaikella ihmisten turhanpäiväisillä tavoilla käyttää aikaansa.<br> <br>Se on sekoitus mukaansa tempaavia ja dramaattisia tunnelmia, jotka yhdistyvät minimalistiseen komiikkaan jongleerauksen, esinemanipulaation ja visuaalisen teatterin keinoin. <br> <br>Surrealistinen ja vinksahtanut <i>Meanwhile</i> ruotii kokemustamme ajan kulusta ja sen käytöstä. Esityksessä nykymaailman absurdi tärkeysjärjestys saa uusia ulottuvuuksia, sillä se ylistää asioita, joiden tekeminen koetaan yhteiskunnallisella tasolla tyhjänpäiväiseksi. Kaksi jonglööriä koettelevat kokijan ymmärrystä ja sitä, kuinka kaikki turhaksi kokemamme tekeminen voi synnyttää arvomaailman muutosta.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p>Kesto: 60 min<br>Ohjaus: Olli Vuorinen<br>Esiintyminen: Merri Heikkilä, Onni Toivonen <br>Valosuunnittelu: Teo Laverna, <br>Äänisuunnittelu: Konsta Leinonen <br>Tukijat: Kallo Collective, Cirko, Taiteen keskustoiminta, Koneen säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>",
                "sv": "<p>Meanwhile är en värld som speglar vår tids kultur och raljerar med människornas triviala tidsfördriv.</p><p>Förställningen är en blandning medryckande och dramatiska stämningar som kombineras med minimalistisk komik skapad med jongleringens, objektmanipulationens och den visuella teaterns medel.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company 10 år  </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>",
                "en": "<p>‘Meanwhile’ is a world that mirrors our culture today and delights in all the futile ways people spend their time.</p><p>It is a mix of captivating and dramatic atmospheres combined with minimalist comedy through juggling, object manipulation and visual theatre.</p><p><u>https://nuua.company/project/meanwhile/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary  </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59930/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59973",
            "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: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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4368,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:52.466032Z",
                    "last_modified_time": "2023-09-07T14:23:52.466052Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731999.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4368/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:52.312590Z",
            "last_modified_time": "2023-11-14T06:13:18.885911Z",
            "date_published": null,
            "start_time": "2023-10-07T17:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.",
                "sv": "Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.",
                "en": "Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/92350955236C5501304F388951E53CAC/Kulovalkea",
                "sv": "http://www.stoa.fi/sv/evenemang/event/92350955236C5501304F388951E53CAC/Kulovalkea",
                "en": "http://www.stoa.fi/en/events/event/92350955236C5501304F388951E53CAC/Kulovalkea_Wildfire"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Kulovalkea – Decade of Deviations: Nuua Company 10 vuotta",
                "sv": "Kulovalkea – Decade of Deviations: Nuua Company 10 år",
                "en": "Kulovalkea – Wildfire – Decade of Deviations: Nuua Company 10 years"
            },
            "description": {
                "fi": "<p>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Kulovalkea </b><br>Kulovalkea tarkoittaa nopeasti leviävää metsäpaloa ja toimii metaforana, joka kutsuu katsojan todistamaan jotain haikean kaunista ja tekemään tilaa uudelle. <br> <br>Esitys tarjoaa eteerisiä tunnelmia ja unenomaisia näyttämökuvia, kuin liikkuvia maalauksia. Luoden tilaa luoville liikkeille, jotka vievät katsojan uteliaiseen tilaan, jonka kautta arkiselta tuntuvat asiat muuttuvat odottamattomiksi ja kieroutuneiksi. <br> <br>Totuus ei aina ole sitä, mitä todellisuus välittää, vaan enemmän se, mikä on peräisin alitajunnastamme, unelmistamme ja näkemyksistämme, jotka ovat haudattu syvälle psyykeisiimme. Kulovalkea tarjoaa pirstaleisen joukon näyttämökuvia, jotka ruokkivat kekseliäisyyttä ja uhmaavat rationaalisuutta. Kahdeksan sirkustaiteilijan voimin luomme virtuoottisen ja absurdin matkan tietoisuuden rajamaille.</p><p><u>https://nuua.company/project/kulovalkea/</u><br> <br>Kesto: 70 min <br>Ohjaus: Olli Vuorinen <br>Esiintyminen: Valpuri Kaarninen, Maria Peltola, Jaime Allen, Juho Yrjölä, Merri Heikkilä, Nelli Kujansivu, Rosa Autio, Petteri Savikorpi <br>Valosuunnittelu: Teo Laverna <br>Äänisuunnittelu: Katri Salmenoja <br>Tukijat: Dynamo, Cirko, Circus Cirkör, Suntopia, Sorin Sirkus, Latitude 50, Circa Auch, Taiteen keskustoiminkunta, Koneen Säätiö, Helsingin kaupunki</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>",
                "sv": "<p>Kulovalkea betyder löpeld, en skogsbrand som sprider sig snabbt, och här används det som en metafor och en inbjudan till att bevittna något vemodigt vackert och göra plats för något nytt.</p><p>Den eteriska föreställningens drömlika scener är som rörliga målningar. Det skapas utrymme för kreativa rörelser som väcker åskådarens nyfikenhet och gör att vardagliga fenomen känns oväntade och skruvade.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company 10 år  </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>",
                "en": "<p>Wildfire is a rapidly spreading forest fire and serves as a metaphor that invites the viewer to witness something wistfully beautiful and make room for something new.</p><p>The performance offers ethereal atmospheres and dreamlike stage images, like moving paintings. It creates space for creative movements that take the viewer into a curious state, through which things that seem mundane become unexpected and twisted.</p><p><u>https://nuua.company/project/kulovalkea/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary  </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59973/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59929",
            "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: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:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "sv": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/",
                        "en": "https://www.lippu.fi/artist/stoa/decade-of-deviations-3399568/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4366,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:51.717268Z",
                    "last_modified_time": "2023-09-07T14:23:51.717288Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731640.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4366/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:51.562287Z",
            "last_modified_time": "2023-11-14T06:13:18.809175Z",
            "date_published": null,
            "start_time": "2023-10-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.",
                "sv": "Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.",
                "en": "Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock",
                "sv": "http://www.stoa.fi/sv/evenemang/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock",
                "en": "http://www.stoa.fi/en/events/event/12623DDE1E6995043B2A979AE5C15446/Blueberry_Burdock"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 vuotta",
                "sv": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 år",
                "en": "Blueberry Burdock – Decade of Deviations: Nuua Company 10 years"
            },
            "description": {
                "fi": "<p>Miellyttävä limbo mielen risteyksessä, teos joka on syntynyt kirjaimellisten ja metaforisten suuntien yltäkylläisyydestä.</p><p><b>Nuua Company</b> on jo vuosikymmenen ajan seilannut valtavirtojen sivussa omia reittejään ja eri taiteenaloja yhdistellen luonut viihdyttäviä ja ajatuksia herättäviä taidekokemuksia.<br> <br>Näitä kokemuksia kutsumme sirkukseksi.</p><p>Nuua Company 10-vuotta -juhlafestivaalilla esitetään ryhmän uusimpia teoksia, installaatiotaidetta sekä vuosien varrelta kertynyttä valo- ja videokuvaa. <br> <br>Ohjelmistossa on kaksi yhdessä esitettävää ensi-iltateosta, <b>Kulovalkea</b> ja <B>Blueberry Burdock</b> (6.10. ja 7.10.), sekä mainetta niittänyt <b>Meanwhile-teos</b> (8.10.).</p><p>= = = = = = = = = = = = = =</p><p><b>Blueberry Burdock</b><br>Blueberry Burdock on ylenpalttisten vaihtoehtojen hukuttaman hahmon matka, jossa ristiriidat ja sisäiset konfliktit ilmenevät kehollisina kertomuksina. Teoksen hahmo sotkeutuu harhaanjohtaviin opasteisiin ja rakentaa huonetta liikkuvista seinistä ja puolikkaista esineistä. Kooten eletyn elemän ja pirstaleisen todellisuuden palapeliä. <br> <br>Visuaalisen kerronnan, esinemanipulaation ja koomisen absurdiuden yhdistelmä Blueberry Burdock, tanssii ihmismielen limbomaisessa tilassa.<br> <br>Esitys herättää uudenlaista arvostusta elämän syvällisyyttä kohtaan. Se rohkaisee yleisöä hyväksymään elettyjen kokemusten ristiriitaisuuksia ja juhlimaan olemassaolon kaunista arvoituksellisuutta.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p>Ohjaus: Thomas Monckton<br>Esiintyminen: Olli Vuorinen<br>Valosuunnittelu: Teo Lanerva<br>Äänisuunnittelu: Konsta Leinonen<br>Pukusuunnittelu: Iida Ukkola<br>Lavastus: Olli Vuorinen<br>Lavasteiden rakennus: Kalle Oja<br>Tuotanto: Nuua Company<br>Yhteistuotanto: Kallo Collective <br>Tukijat: Taiteen edistämiskeskus, Helsingin kaupunki,Tanssiteatteri Hurjaruuth, Koneen säätiö, Tero Saarinen Company, Stoa</p><p>Kesto: 50 min</p><p>= = = = = = = = = = = = = =</p><p>Yksittäiset normaalihintaiset liput 20/15 €, kahden esityksen illat 32/22 €, festivaalipassi 45/35 €.</p>",
                "sv": "<p>Cirkuskonstnär Olli Vuorinens soloverk är en surrealistisk resa till människans psykologiska handlingsmönster och motstridigheterna i dem.</p><p>Med ett urval av konkreta och metaforiska uttryck och ett överflöd av riktningar kombinerar Blueberry Burdock surrealistiska scener och kroppsliga berättelser som uttrycker komplexiteten i det levda livet.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company 10 år  </b><br>Nuua Company har redan i årtionden seglat utanför huvudströmningarna och skapat underhållande och tankeväckande konstupplevelser genom att kombinera olika konstarter.<br>Dessa upplevelser kallar vi cirkus.</p><p>På jubileumsfestivalen Nuua Company 10 år framförs gruppens senaste verk, installationskonst samt fotografier och filmklipp från årens lopp. På repertoaren står två premiärverk som visas tillsammans, Kulovalkea och Blueberry Burdock (6 och 7 okt.), samt verket Meanwhile (8 okt.) som rönt uppmärksamhet.</p>",
                "en": "<p>Circus artist Olli Vuorinen’s solo piece is a surrealist journey into the psychological patterns of the human mind and their contradictions.</p><p>In an abundance of concrete and metaphorical choices and directions, ‘Blueberry Burdock’ combines surrealist scenes and embodied narratives that express the complexity of a life lived.</p><p><u>https://nuua.company/project/blueberry-burdock/</u></p><p><b>Decade of Deviations: Nuua Company’s 10th Anniversary  </b><br>For a decade, Nuua Company has been forging a trail slightly off the mainstream, combining different artistic disciplines to create entertaining and thought-provoking art experiences.<br>We call these experiences circus.</p><p>Nuua Company’s 10th anniversary festival will showcase the group’s latest works, installation art as well as light and video footage accumulated over the years. The programme includes two premieres, ‘Wildfire’ and ‘Blueberry Burdock’ (6 and 7 October), and the acclaimed ‘Meanwhile’ (8 October).</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59929/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59734",
            "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: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: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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3377055",
                        "sv": "https://www.lippu.fi/eventseries/name-3377055",
                        "en": "https://www.lippu.fi/eventseries/name-3377055"
                    },
                    "price": {
                        "fi": "59/47/15 €, Premium 69 €",
                        "sv": "59/47/15 €, Premium 69 €",
                        "en": "59/47/15 €, Premium 69 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4367,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:52.094061Z",
                    "last_modified_time": "2023-09-07T14:23:52.094083Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730033.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4367/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:51.942689Z",
            "last_modified_time": "2023-11-14T06:13:18.728432Z",
            "date_published": null,
            "start_time": "2023-10-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta",
                "sv": "En spansk flamencoshow full med spänning, passion och virtuositet",
                "en": "A Spanish flamenco show full of excitement, passion and virtuosity"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Espanja_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spanien_",
                "en": "http://www.savoyteatteri.fi/en/events/event/7C143887F1D018CD81BCBF000A39FA13/Flamenco_Luxur_a_Spain_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Flamenco Luxurîa (Espanja) – by Barcelona Flamenco Ballet",
                "sv": "Flamenco Luxurîa (Spanien) – by Barcelona Flamenco Ballet",
                "en": "Flamenco Luxurîa (Spain) – by Barcelona Flamenco Ballet"
            },
            "description": {
                "fi": "<p>Espanjalainen flamenco-esitys täynnä jännitystä, intohimoa ja taituruutta</p><p>Arvostettu Barcelona Flamenco Ballet tuo lokakuussa Savoy-teatteriin tuoreen tanssispektaakkelinsa Flamenco Luxurîa.</p><p>Nimi Luxurîa tarkoittaa suomeksi hekumaa, intohimoa. Teoksen on luonut palkittu tanssija ja koreografi David Gutiérrez, jonka esittämä päähenkilö joutuu valitsemaan rakkauden sekä vapauden ja intohimon välillä. Esityksen naispääroolin tanssii Paula Reyes. Viime vuonna ensi-iltansa saanut Luxurîa on jo kerännyt menestystä ympäri maailmaa, muun muassa Yhdysvalloissa, Etelä-Koreassa, Italiassa ja tietenkin myös Espanjan Kataloniassa.</p><p>David Gutierrezin koreografiat yhdistävät niin perinteistä kuin ja modernia flamencotanssia. Hänen juurensa ovat vahvasti Katalonian sydämessä Barcelonassa, jossa Gutierrez aloitti tanssiopintonsa nelivuotiaana. Katalonialaisen kulttuurin esiintuominen on yksi merkityksellisimpiä asioita Gutierrezin työssä.</p><p>Seitsemän tanssijan ja viiden muusikon ensemble tuo Savoyn lavalle näyttäviä tanssinumeroita, sykähdyttävää flamenco-musiikkia sekä loisteliaita pukuja. Luvassa on viihdyttävä ja vahva esitys, joka painuu yleisön mieliin pitkäksi aikaa.</p><p>Esiintyjät:<br>Pääosissa: David Gutiérrez, Montserrat María Martínez<br>Tanssija-ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Kitara: Jordi Centeno<br>Laulu: Rafael Bueno<br>Perkussiot: Alberto Garrido<br>Piano: José Miguel Castaño<br>Huilu ja saksofoni: Rafael Palomares</p><p>Kesto n. 2 t, sis. väliajan.</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>En spansk flamencoshow full med spänning, passion och virtuositet</p><p>Renommerade Barcelona Flamenco Ballet kommer till Savoyteatern i oktober med sitt färska dansspektakel Flamenco Luxurîa.</p><p>Namnet Luxurîa betyder rus, passion på svenska. Verket är skapat av den prisbelönta dansaren och koreografen David Gutiérrez som spelar huvudrollen, en karaktär som tvingas välja mellan kärlek och frihet och passion. Föreställningens kvinnliga huvudroll dansas av Paula Reyes. Luxurîa som hade premiär i fjol har redan rönt framgångar runtom i världen, bland annat i USA, Sydkorea, Italien och naturligtvis Katalonien i Spanien.</p><p>David Gutierrez koreografier kombinerar både traditionell och modern flamencodans. Hans rötter är stadigt i hjärtat av Katalonien, Barcelona, där Gutierrez inledde dansstudierna i fyraårsåldern. Att lyfta fram den katalanska kulturen är ett av de viktigaste elementen i Gutierrez arbete.</p><p>Ensemblen med sju dansare och fem musiker fyller Savoys scen med imponerande dansnummer, bedårande flamencomusik och storslagna kostymer. Det utlovas en underhållande och kraftfull föreställning som publiken sent kommer att glömma.</p><p>På scenen:<br>I huvudrollerna: David Gutiérrez, Montserrat María Martínez<br>Dansensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Gitarr: Jordi Centeno<br>Sång: Rafael Bueno<br>Perkussion: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flöjt och saxofon: Rafael Palomares</p><p>Längd ca 2,5 timmar med paus.</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>A Spanish flamenco show full of excitement, passion and virtuosity</p><p>The esteemed Barcelona Flamenco Ballet will be bringing its fresh dance spectacle Flamenco Luxurîa to Savoy Theatre in October.</p><p>In English, the name Luxurîa means lust and passion. The piece was created by the award-winning dancer and choreograph David Gutiérrez, who plays the protagonist who is forced to choose between love, freedom and passion. The leading female role is performed by dancer Paula Reyes. After its premiere last year, Luxurîa has already found success in countless countries, such as the United States, South Korea, Italy and of course Catalonia, Spain.</p><p>David Gutierrez’s choreographies combine traditional and modern flamenco. His roots strongly are planted in the heart of Catalonia, Barcelona, where he began his dance studies at four years old. Highlighting the Catalonian culture is one of the most important aspects of Gutierrez’s work.</p><p>The ensemble of seven dancers and five musicians will fill the Savoy stage with spectacular dance numbers, stirring Flamenco music and stunning outfits. Audiences will get to enjoy an entertaining and powerful performance that they will remember for a long time.</p><p>Performers:<br>Leading roles: David Gutiérrez, Montserrat María Martínez<br>Dance ensemble: Judit González, Maria Bardolet, Montserrat Anguera, Esmeralda Martín, Lucía Vicedo<br>Guitar: Jordi Centeno<br>Vocals: Rafael Bueno<br>Percussions: Alberto Garrido<br>Piano: José Miguel Castaño<br>Flute and saxophone: Rafael Palomares</p><p>Duration approx. 2 h with intermission.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p>"
            },
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59734/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60056",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/machu-picchu-konsertti-3424015/"
                    },
                    "price": {
                        "fi": "10 € / 6 €",
                        "sv": "10 € / 6 €",
                        "en": "10 € / 6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4365,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:50.524538Z",
                    "last_modified_time": "2023-09-07T14:23:50.524560Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732390.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4365/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:49.773907Z",
            "last_modified_time": "2023-11-14T06:13:18.644421Z",
            "date_published": null,
            "start_time": "2023-10-07T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.",
                "sv": "Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.",
                "en": "The Machu Picchu group celebrates the 50-year history of Chileans in Finland."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu",
                "sv": "http://www.caisa.fi/sv/evenemang/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu-konsert_",
                "en": "http://www.caisa.fi/en/events/event/BB9876B996B9BA76D277BBA06831683F/Machu_Picchu_concert_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Machu Picchu – Chile50-teemaisia tapahtumia Caisassa",
                "sv": "Machu Picchu-konsert – Evenemang med Chile50-tema i Caisa",
                "en": "Machu Picchu concert – Chile50 themed events at Caisa"
            },
            "description": {
                "fi": "<p>Machu Picchu -ryhmä juhlistaa chileläisten 50-vuotista taivalta Suomessa.</p><p>Ohjelmisto koostuu ”chileläisen uuden laulun” klassikoista kuten Violetta Parran ja Victor Jaran musiikista. Mukana on myös lauluja muista Latinalaisen Amerikan maista. Konserttiin tuodaan visuaalisia elementtejä chileläisestä maisemasta ja Chilen kansan lähihistoriasta.</p><p>Machu Picchu perustettiin Ruotsissa 35 vuotta sitten. Viisi vuotta myöhemmin se siirtyi Suomeen soittamaan latinalaisamerikkalaista musiikkia. Ryhmä on julkaissut 3 levyä, esiintynyt useita kertoja televisiossa ja tehnyt kiertueita festivaaleille ja kouluihin eri puolilla Suomea. Instrumentteina käytetään muiden muassa Etelä-Amerikan kansanmusiikille tyypillisiä lyömä- ja puhallinsoittimia.</p><p>Ryhmän ammattimuusikot ovat: Roberto Cueto (Chile), Rodrigo Rodriguez (Chile), Pedro Castellon (Bolivia), Tito Chauca (Peru) ja Mikko Nousiainen (Suomi).</p><p>Kesto: 1,5 h (lyhyt väliaika)<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi, espanja ja englanti</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>",
                "sv": "<p>Gruppen Machu Picchu firar chilenarnas 50-åriga historia i Finland.</p><p>På repertoaren står klassiker inom genren ”ny chilensk sång”, såsom musik av Violetta Parra och Victor Jara. På konserten framförs också sånger från andra länder i Latinamerika. Konsertens visuella element knyter an till det chilenska landskapet och det chilenska folkets närhistoria.</p><p>Längd: 1,5 t, med kort paus<br>Åldersrekommendation: för alla åldrar<br>Språk: finska, spanska och engelska</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>",
                "en": "<p>The Machu Picchu group celebrates the 50-year history of Chileans in Finland.</p><p>The programme consists of classics of the “new Chilean song”, such as the music of Violetta Parra and Victor Jara. It also includes songs from other Latin American countries. The concert includes visual elements from the Chilean landscape and the recent history of the Chilean people.</p><p>Duration: 1,5 h with short intermission<br>Age recommendation: for all ages<br>Language: Finnish, Spanish and English</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme.</i></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60056/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61082",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5153,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:52.882767Z",
                    "last_modified_time": "2023-10-09T13:29:52.882785Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737450.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5153/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:29:52.746935Z",
            "last_modified_time": "2023-11-14T06:13:18.575322Z",
            "date_published": null,
            "start_time": "2023-10-07T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/92D74551B04B1A41FA91735C76D12F05/Viimeinen_vuoro_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Viimeinen vuoro (12) – Kino Helios"
            },
            "description": {
                "fi": "<p>Tom Harper lähtee pitkälle bussimatkalle Skotlannin pohjoisimmasta kolkasta synnyinseuduilleen Englannin etelärannikon John O’Groatsiin.</p><p>Paikallisbussien aikatauluja, omaa ikäänsä ja kohtaloa uhmaten Tom Harper (Timothy Spall) tekee kaikkensa pitääkseen vaimolleen antamansa lupauksen. Matkasta tulee muistorikas seikkailuretki täynnä käänteitä ja yllätyksiä. VIIMEINEN VUORO on elokuva rakkaudesta, menetyksestä ja ihmisen luonteikkaasta periksiantamattomuudesta.</p><p>Ikäraja 12<br>Ensi-ilta 29.9.2023<br>Kesto 86 min</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61082/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60057",
            "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: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:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4364,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:49.028205Z",
                    "last_modified_time": "2023-09-07T14:23:49.028226Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732392.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4364/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:23:48.704168Z",
            "last_modified_time": "2023-11-14T06:13:18.503937Z",
            "date_published": null,
            "start_time": "2023-10-07T14:00:00Z",
            "end_time": "2023-10-07T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.",
                "sv": "Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.",
                "en": "The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/11D6080CBBFA9D43B06234834E88FF81/Keskustelu_Ensimmaiset_chilelaiset_pakolaiset_Suomessa",
                "sv": "http://www.caisa.fi/sv/evenemang/event/11D6080CBBFA9D43B06234834E88FF81/Samtal_De_forsta_chilenska_flyktingarna_i_Finland",
                "en": "http://www.caisa.fi/en/events/event/11D6080CBBFA9D43B06234834E88FF81/Discussion_The_First_Chilean_Refugees_in_Finland"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Keskustelu: Ensimmäiset chileläiset pakolaiset Suomessa – Chile50-teemaisia tapahtumia Caisassa",
                "sv": "Samtal: De första chilenska flyktingarna i Finland – Evenemang med Chile50-tema i Caisa",
                "en": "Discussion: The First Chilean Refugees in Finland – Chile50 themed events at Caisa"
            },
            "description": {
                "fi": "<p>Suomen hallitus päätti lokakuussa 1973 ottaa ryhmän Augusto Pinochetin sortoa pakenevia chileläisiä Suomeen.</p><p>He saapuivat Suomeen vielä vuoden 1973 puolella, ja heistä tuli Suomen ensimmäinen kiintiöpakolaisryhmä.</p><p>Monet alkuperäisistä chileläisistä pakolaisista ovat palanneet synnyinmaahansa asumaan sen jälkeen, kun Chile viimein siirtyi demokratiaan. Mutta moni asuu edelleen Suomessa, missä heidän perheenjäsenensäkin ovat. Mutta tuntevatko he olevansa suomalaisia vai chileläisiä? Miten 1970-luvun Suomi otti heidät vastaan ja mitä Suomi on heille antanut?</p><p>Näihin ja moniin muihin kysymyksiin etsitään vastausta alkuperäisten chileläisten pakolaisten kanssa. Keskustelemassa: <b>Adrián Soto</b> ja <b>Alfonso Padilla</b>. Juontaja: <b>Jaana Kanninen</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi/espanja<br>Vapaa pääsy<br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>",
                "sv": "<p>Den finska regeringen beslutade i oktober 1973 att ta emot en grupp chilenare som flytt undan Augusto Pinochets förtryck till Finland.</p><p>Chilenarna kom till Finland redan under 1973 och blev Finlands första grupp av kvotflyktingar.</p><p>Känner de sig som finländare eller chilenare? Hur tog 1970-talets Finland emot dem och vad har Finland gett dem?</p><p>Vi söker ett svar på dessa och många andra frågor med de ursprungliga chilenska flyktingarna. I samtalet deltar: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (på spanska), <b>Alfonso Padilla</b>. Programledare: <b>Jaana Kanninen</b>.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska/spanska<br>Fritt inträde<br>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>",
                "en": "<p>The Finnish government decided to take in a group of Chileans fleeing Augusto Pinochet’s oppression to Finland in October 1973.</p><p>They arrived in Finland before the end of 1973 and became Finland’s first quota refugee group.</p><p>Do they identify themselves as Finns or Chileans? How did Finland in the 1970s receive them and what has Finland given them?</p><p>These and many other questions will be answered with indigenous Chilean refugees. Participating in the discussion are: <b>Adrián Soto</b>, <b>Carmen Quinteros</b> (in Spanish), <b>Alfonso Padilla</b>. Host: <b>Jaana Kanninen</b>.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish/Spanish<br>Free entry<br>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60057/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61080",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "price": {
                        "fi": "8 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5152,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:29:52.315440Z",
                    "last_modified_time": "2023-10-09T13:29:52.315460Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737446.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5152/?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:29:52.173943Z",
            "last_modified_time": "2023-11-14T06:13:18.429631Z",
            "date_published": null,
            "start_time": "2023-10-07T12:00:00Z",
            "end_time": "2023-10-07T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B558137B5D5B16D9C202CE790E51E7EF/Muumipeikko_ja_pyrstotahti_S_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Muumipeikko ja pyrstötähti (S) – Kino Helios"
            },
            "description": {
                "fi": "<p>Kaikkien rakastama klassikko Muumipeikko ja pyrstötähti saapuu uudistettuna elokuvateattereihin!</p><p>Eräänä sateisena iltana Muumilaakson rauhaisaan idylliin saapuu filosofiksi esittäytyvä Piisamirotta ennustamaan koko maapalloa kohtaavaa katastrofia. Yhtäkkiä kesä ei olekaan enää niin kuin ennen. Muumipeikon, Nipsun ja Pikku Myyn on lähdettävä vaikeakulkuiseen seikkailuun tähtitornivuoren huipulle selvittämään, onko maailmanloppu todella tulossa.</p><p>Elämän palaaminen uomiinsa edellyttää Muumilaakson väeltä ennennäkemätöntä sankaruutta. Matkalla kohdataan jännittäviä vaaroja, mutta myös luonnon ihmeitä ja uskomattomia aarteita – ja solmitaan korvaamattomia uusia ystävyyksiä. Tarinassa tavataan myös seikkailija Nuuskamuikkunen sekä viisas keksijä Niisku ja hänen siskonsa Niiskuneiti.</p><p>Vahvistunein joukoin kotiin Muumilaaksoon palattuaan on ystävyksillä entistäkin paremmat eväät niin pyörremyrskyiltä kuin pyrstötähdiltä suojautumiseen ja koko Muumi-perheen pelastamiseen. Tarvitaan vain kekseliäisyyttä, yhteishenkeä ja valmiutta auttaa apua tarvitsevia, jotta kaikki pysyvät turvassa merkillisiltä luonnonilmiöiltä.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61080/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60909",
            "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": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4363,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:23:48.464601Z",
                    "last_modified_time": "2023-09-07T14:23:48.464631Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736552.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4363/?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:23:48.299251Z",
            "last_modified_time": "2023-11-14T06:13:18.360880Z",
            "date_published": null,
            "start_time": "2023-10-07T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": 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."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E8C6EABB8B8E1CCF2BA876C8E0FA2047/DanceAbility_Lasten_inklusiivinen_tanssitunti_",
                "en": "http://www.annantalo.fi/en/events/event/E8C6EABB8B8E1CCF2BA876C8E0FA2047/DanceAbility_Children_s_inclusive_dance_class"
            },
            "location_extra_info": null,
            "name": {
                "fi": "DanceAbility: Lasten inklusiivinen tanssitunti",
                "en": "DanceAbility: Children's inclusive dance class"
            },
            "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>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60909/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}