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&hide_super_event=true&page=1110
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 26224,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1111",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1109"
    },
    "data": [
        {
            "id": "kulke:60892",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/",
                        "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5220,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:59.476342Z",
                    "last_modified_time": "2023-10-09T13:31:59.476366Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735809.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5220/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:59.214972Z",
            "last_modified_time": "2023-11-14T06:13:38.348582Z",
            "date_published": null,
            "start_time": "2023-11-12T17:00:00Z",
            "end_time": "2023-11-12T18:25:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Cherish Menzo: DARKMATTER",
                "en": "Moving in November – Cherish Menzo: DARKMATTER"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A811DEEF7A93363D073B308A178DC290/Liikkeella_marraskuussa_Cherish_Menzo_DARKMATTER",
                "en": "http://www.stoa.fi/en/events/event/A811DEEF7A93363D073B308A178DC290/Moving_in_November_Cherish_Menzo_DARKMATTER"
            },
            "description": {
                "fi": "<p>Teoksessaan Cherish Menzo ja hänen lavakumppaninsa Camilo Mejía Cortés etsivät tapoja irrottaa kehonsa tavasta, joilla ne nähdään ja koetaan päivittäistodellisuudessa.</p><p>He luovat katseensa ylös taivaalle, pimeään aineeseen ja mustiin aukkoihin, jotka kohtaavat ja törmäävät toisiinsa synnyttäen uuden (afro)futuristisen ja arvoituksellisen ruumiin. <s>DARK</s>MATTER haluaa päästä eroon ennakkoluuloisista tavoista katsoa kehoja ja tarinoita, joita omistamme niille. Kuten edellisessä projektissaan JEZEBEL, joka esitettiin Liikkeellä marraskuussa -festivaalin ohjelmistossa vuonna 2022, Menzo venyttää liikekieltään lisäämällä siihen hiphop -maailmasta ammentavan Chopped and Screwed -remixtekniikan, jossa musiikin tempoa on hidastettu jyrkästi.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia Menzo käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 12.11. klo 12 Caisassa.</p><p>Tämä esitys on osa Flanders Focus –ohjelmaa, osana Liikkeellä marraskuussa –festivaalia.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/d%cc%b6a%cc%b6r%cc%b6k%cc%b6matter-2/</p><p>Kesto: 85 min<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.<br> <br>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>",
                "en": "<p>Cherish Menzo and her onstage partner Camilo Mejía Cortés look for ways to detach their bodies from the way they are perceived and the daily reality in which they move.</p><p>Among other things, they look up to the sky, at dark matter and at black holes that meet and collide to give birth to a new, (afro) futuristic and enigmatic body. <s>DARK</s>MATTER wants to get rid of the biased way of looking at one’s body, at that of the other, and at the stories we attribute to them. Just as in her previous project JEZEBEL, presented in Moving in November 2022, Menzo stretches her movement language further by applying the Chopped and Screwed method to her movement language – a remix technique from the hip hop world, where the tempo of the music is turned down.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with Menzo and local host called Soup Talk on the 12th of November at noon in Caisa.</p><p>This performance is part of the Flemish Focus within Moving in November.</p><p>Read more: https://movinginnovember.fi/d%cc%b6a%cc%b6r%cc%b6k%cc%b6matter/</p><p>Duration: 85 min<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teoksessaan Cherish Menzo ja hänen lavakumppaninsa Camilo Mejía Cortés etsivät tapoja irrottaa kehonsa tavasta, joilla ne nähdään ja koetaan päivittäistodellisuudessa.",
                "en": "Cherish Menzo and her onstage partner Camilo Mejía Cortés look for ways to detach their bodies from the way they are perceived and the daily reality in which they move."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60892/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60617",
            "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": true,
                    "offer_price_groups": [],
                    "price": null,
                    "info_url": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4536,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:24.830530Z",
                    "last_modified_time": "2023-09-07T14:26:24.830550Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_723645.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4536/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:26:23.961887Z",
            "last_modified_time": "2023-11-14T06:13:38.268751Z",
            "date_published": null,
            "start_time": "2023-11-12T12:00:00Z",
            "end_time": "2023-11-12T15:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Lasten Etnosoi!",
                "sv": "Barnens Etnosoi!",
                "en": "Etnosoi! for Children"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/552BAD28C9DBAA1FE766DCD233B90A58/Lasten_Etnosoi_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/552BAD28C9DBAA1FE766DCD233B90A58/Barnens_Etnosoi_",
                "en": "http://www.malmitalo.fi/en/events/event/552BAD28C9DBAA1FE766DCD233B90A58/Etnosoi_for_Children_"
            },
            "description": {
                "fi": "<p>Lasten Etnosoi!ssa pieni on suurta. Etnosoi!-festivaali rohkaisee tekemään uusia musiikillisia tutkimusmatkoja ja esittelee musiikkia maailman eri kolkista.</p><p><b>Sattuma-yhtyeen konsertti</b></p><p>20-vuotisjuhlavuottaan viettävän Sattuma-yhtyeen lastenkonsertissa kuullaan paitsi karjalaista kansanmusiikkia, päästään samalla myös karjalankielikylpyyn!</p><p>Pieni sali klo 14:15 ja 15:45</p><p><b>Soitinten seikkailu</b></p><p>Tule mukaan Soitinten Seikkailuun, tarinalliseen konserttiin, jossa monenlaiset kulttuurit kohtaavat. Retkelle sinut johdattavat Sibelius-akatemian Global music-aineryhmän opiskelijat.</p><p>Ayla Brinkmann (Suomi/Etelä-Afrikka), tarinankertoja<br>Jui Hsin Ni (Taiwan), shamisen<br>Aarne Toivonen (Suomi), rummut<br>Javier Navarro Lara (Chile) , basso<br>Ana Lazar (Slovenia), viulu<br>Sara Majidi (Iran), qanun<br>matkanjohtajana Puro Paju (Suomi)</p><p>Malmisali klo 14 ja 15:30</p><p><b>Perheafro!</b></p><p>Tanssisalissa tanssitaan rennosti kaikki yhdessä, niin lapset kuin aikuiset. Tanssiin johdattaa tanssija-koreografi Sibiry Konate. Liike ja musiikki johdattelee meitä mm. Burkina Fason rytmeihin ja musiikkiin. Työpajassa on livesäestys.</p><p>Tanssisali klo 14.30 ja 16</p><p><b>Mitali tärkeälle ihmiselle -askartelutyöpaja</b></p><p>Olet rohkea, olet tärkeä, olet tosi hyvä kertomaan tarinoita! Olet hauska ja paras pomppimaan kenguruhyppyjä! Minkälaisen mitalin sinä antaisit tärkeälle ihmiselle? Tervetuloa 12.11. mitalitehtaalle Malmitalon aulaan!</p><p>Malmitalon aula, nonstop klo 14-17</p><p><b>Hyvinvointia rummulla 12+</b></p><p>Taiteellisen ilmaisun lisäksi rummutuksella on muitakin hyötyjä. Sitä voidaan käyttää esimerkiksi parantamaan kehon osien koordinaatiota, rakentamaan itseluottamusta, saada parempi käsitys omista henkisistä ja fyysisistä kyvyistä, stressistä toipumiseen, harjoittamaan ja kehittämään muistia, parantamaan keskittymistä ja ennen kaikkea tuomaan iloa.</p><p>Tätä tarkoitusta varten aion käyttää metodia, jossa rumpali käyttää vartaloaan painottamaan ja ilmaisemaan rytmiä, soittamalla rumpua seisten, tehden samalla tanssillisia liikkeitä, käyttäen muita ilmaisukeinoja, kuten eleitä, asentoja, ilmeitä ja ääntä. Rumpu on asetettu jalustalle ja sitä soitetaan kahdella rumpupalikalla. Rumpuina käytetään ngomaa – traditionaalista tansanialaista rumpua.</p><p>Harjoittelemalla tätä metodia, osallistujat voivat kokea siitä välitöntä ja suunnatonta hyötyä kuten edellä kuvasin.</p><p>Kohderyhmät<br>Erilaisia kohderyhmiä ovat esim. henkilöt, jotka kärsivät masennuksesta ja stressistä, nuoret, joilla on sosiaalisia ongelmia, koululaiset, musiikinopiskelijat, koulujen opettajat, erityislapset, työntekijät työpaikoilla jne.</p><p>Hyvinvointia rummulla 12+ -työpajan vetää sen luoja, muusikko-tanssija-koreografi, pitkään Suomessa kaiken ikäisten oppijoiden kanssa työskennellyt tansanialainen Arnold Chiwalala. HUOM. Ikäsuositus 12-vuotta ja kaikki sitä vanhemmat.</p><p>Kokoushuone 3 klo 14.15 ja 15.45</p><p>Lasten Etnosoi!n tuottavat yhdessä Malmitalo & Maailman musiikin keskus</p><p>Lisätietoja tapahtumasta täältä: https://www.etnosoi.fi/fi/etnosoi/lasten-etnosoi</p><p>Vapaa pääsy</p>",
                "sv": "<p>I Barnens Etnosoi! är det lilla stort. Etnosoi!-festivalen uppmuntrar till att göra nya musikaliska upptäcktsresor och presenterar musik från världens alla hörn.</p><p>Bandet Sattuma som firar sitt 20-årsjubileum ger en barnkonsert med karelsk folkmusik och publiken bjuds också med på ett språkbad i karelska! Till farsdagsfestligheterna hör också andra musikföreställningar, verkstäder och avslappnad samvaro.</p><p>Fritt inträde</p>",
                "en": "<p>In Etnosoi! for Children, small is big. The Etnosoi! festival encourages the audience to make new musical explorations, and showcases music from all over the world.</p><p>The children’s concert by the band Sattuma, which is celebrating its 20th anniversary, features not only Karelian folk music but also a Karelian language bath! The Father’s Day fun also includes other musical performances, workshops and relaxed hanging out.</p><p>Free entry</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten Etnosoi!ssa pieni on suurta. Etnosoi!-festivaali rohkaisee tekemään uusia musiikillisia tutkimusmatkoja ja esittelee musiikkia maailman eri kolkista.",
                "sv": "I Barnens Etnosoi! är det lilla stort. Etnosoi!-festivalen uppmuntrar till att göra nya musikaliska upptäcktsresor och presenterar musik från världens alla hörn.",
                "en": "In Etnosoi! for Children, small is big. The Etnosoi! festival encourages the audience to make new musical explorations, and showcases music from all over the world."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60617/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61043",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16,50 € / 22,50 €",
                        "sv": "16,50 € / 22,50 €",
                        "en": "16,50 € / 22,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "en": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5219,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:56.465968Z",
                    "last_modified_time": "2023-10-09T13:31:56.465986Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737516.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5219/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:56.329452Z",
            "last_modified_time": "2023-11-14T06:13:38.197275Z",
            "date_published": null,
            "start_time": "2023-11-11T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Latin Folk Night",
                "sv": "Latin Folk Night",
                "en": "Latin Folk Night"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night",
                "en": "http://www.malmitalo.fi/en/events/event/856A3BC02B46C259B44104A73835A540/Latin_Folk_Night"
            },
            "description": {
                "fi": "<p>Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!</p><p>Helsingin latinalaisamerikkalainen yhteisö vie katsojan värikkään esityksensä kautta alueen kulttuurisille sydänmaille. Illan aikana lavalla nähdään kansantansseja, joissa yhdistyvät alkuperäiskansojen perinteet ja afrikkalaiset sekä eurooppalaiset vaikutteet.</p><p><b>Askelten Palo ry:n</b> tuottama esitys edistää kulttuurivaihtoa ja ymmärrystä latinalaisamerikkalaisen ja suomalaisen yhteisön välillä.</p><p>Tule mukaan rakentamaan siltoja ja juhlimaan moninaisuutta!</p><p><b>Kaksi esitystä:</b><br>Ensimmäinen esitys klo 16.00<br>Toinen esitys klo 19.00</p><p>Kesto n. 1 h 30 min, sis. 20 min väliaika</p><p>***</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b></p><p>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "sv": "<p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Längd cirka 1 t 30 min, med paus<br><b>Två föreställning</b>: 16.00 och 19.00</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "en": "<p>We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!</p><p>Our event celebrates the unique fusion of Indigenous, African, and European influences that have shaped and contributed to the rich tapestry of rhythms and melodies in Latin American folk music.</p><p>Experience the heart of our culture through colorful performances by members of the Latin American community living in Helsinki. You’ll witness traditional dances from different countries and enjoy our delicious cuisine.</p><p><b>Askelten Palo ry</b> is proud to promote cultural exchanges and understanding between our community and Finland through this show.</p><p>Don’t miss this unique opportunity to celebrate diversity, build bridges and immerse yourself in the magic of Latin America.</p><p><b>Two shows:</b><br>First show at 4:00 p.m<br>Second show at 7:00 p.m</p><p>Duration approx. 1 h 30 min, incl. 20 min. interval</p><p>>b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!",
                "sv": "Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!",
                "en": "We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61043/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60891",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/",
                        "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5218,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:56.108993Z",
                    "last_modified_time": "2023-10-09T13:31:56.109021Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735808.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5218/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:55.964098Z",
            "last_modified_time": "2023-11-14T06:13:38.112654Z",
            "date_published": null,
            "start_time": "2023-11-11T17:00:00Z",
            "end_time": "2023-11-11T18:25:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Cherish Menzo: DARKMATTER",
                "en": "Moving in November – Cherish Menzo: DARKMATTER"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/89FFB424B3218D1925CA5FB20DDFFBCF/Liikkeella_marraskuussa_Cherish_Menzo_DARKMATTER",
                "en": "http://www.stoa.fi/en/events/event/89FFB424B3218D1925CA5FB20DDFFBCF/Moving_in_November_Cherish_Menzo_DARKMATTER"
            },
            "description": {
                "fi": "<p>Teoksessaan Cherish Menzo ja hänen lavakumppaninsa Camilo Mejía Cortés etsivät tapoja irrottaa kehonsa tavasta, joilla ne nähdään ja koetaan päivittäistodellisuudessa.</p><p>He luovat katseensa ylös taivaalle, pimeään aineeseen ja mustiin aukkoihin, jotka kohtaavat ja törmäävät toisiinsa synnyttäen uuden (afro)futuristisen ja arvoituksellisen ruumiin. <s>DARK</s>MATTER haluaa päästä eroon ennakkoluuloisista tavoista katsoa kehoja ja tarinoita, joita omistamme niille. Kuten edellisessä projektissaan JEZEBEL, joka esitettiin Liikkeellä marraskuussa -festivaalin ohjelmistossa vuonna 2022, Menzo venyttää liikekieltään lisäämällä siihen hiphop -maailmasta ammentavan Chopped and Screwed -remixtekniikan, jossa musiikin tempoa on hidastettu jyrkästi.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia Menzo käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 12.11. klo 12 Caisassa.</p><p>Tämä esitys on osa Flanders Focus –ohjelmaa, osana Liikkeellä marraskuussa –festivaalia.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/d%cc%b6a%cc%b6r%cc%b6k%cc%b6matter-2/</p><p>Kesto: 85 min<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.<br> <br>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>",
                "en": "<p>Cherish Menzo and her onstage partner Camilo Mejía Cortés look for ways to detach their bodies from the way they are perceived and the daily reality in which they move.</p><p>Among other things, they look up to the sky, at dark matter and at black holes that meet and collide to give birth to a new, (afro) futuristic and enigmatic body. <s>DARK</s>MATTER wants to get rid of the biased way of looking at one’s body, at that of the other, and at the stories we attribute to them. Just as in her previous project JEZEBEL, presented in Moving in November 2022, Menzo stretches her movement language further by applying the Chopped and Screwed method to her movement language – a remix technique from the hip hop world, where the tempo of the music is turned down.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with Menzo and local host called Soup Talk on the 12th of November at noon in Caisa.</p><p>This performance is part of the Flemish Focus within Moving in November.</p><p>Read more: https://movinginnovember.fi/d%cc%b6a%cc%b6r%cc%b6k%cc%b6matter/</p><p>Duration: 85 min<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teoksessaan Cherish Menzo ja hänen lavakumppaninsa Camilo Mejía Cortés etsivät tapoja irrottaa kehonsa tavasta, joilla ne nähdään ja koetaan päivittäistodellisuudessa.",
                "en": "Cherish Menzo and her onstage partner Camilo Mejía Cortés look for ways to detach their bodies from the way they are perceived and the daily reality in which they move."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60891/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61156",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5516,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-18T09:27:04.580412Z",
                    "last_modified_time": "2023-10-18T09:27:04.580432Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738090.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5516/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-18T09:27:04.355638Z",
            "last_modified_time": "2023-11-14T06:13:38.040451Z",
            "date_published": null,
            "start_time": "2023-11-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Reality (12) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6DB279B8485578636E0BA607ABB3A8A8/Reality_12_"
            },
            "description": {
                "fi": "<p>Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa.</p><p>Miksi ihmeessä FBI on kiinnostunut 25-vuotiaasta nuoresta naisesta? FBI:n tutkijat aloittavat heti paikalla intensiivisen kuulustelun, jonka myötä Realityn tarina alkaa pala palalta hahmottua. Hän on millenniaali, joogaohjaaja, tulkki – ja myös veteraani, jonka FBI aikoo nyt pidättää.</p><p>Intensiivinen jännitysnäytelmä nuoren naisen pakahduttavan jännittävästä ja paikoin absurdin humoristisiakin piirteitä saavasta pidätyksestä perustuu kappaleeseen Yhdysvaltain tosielämän lähihistoriaa ja elokuvan dialogi noudattelee sanasta sanaan FBI:n toteuttaman kuulustelun pöytäkirjaa. Elokuva luo tiukan silmäyksen Yhdysvaltain oikeusjärjestelmään, joka syytti tiedusteluasiantuntija Reality Winneriä hallituksen tietojen vuotamisesta medialle tapauksessa, joka koski Venäjän sekaantumista Yhdysvaltain vuoden 2016 presidentinvaaleihin.</p><p>Kiehtovan ja tiivistunnelmaisen draaman pääosassa vaikuttavan roolin tekee Sidney Sweeney (Euphoria, The White Lotus, Handmaid’s Tale).</p><p>Kesto 83 min<br>Ikäraja 12<br>Ensi-ilta 27.10.2023</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun Yhdysvaltain Georgiassa asuva Reality Winner (Sydney Sweeney) palaa kesäkuisena lauantai-iltapäivänä vuonna 2017 ruokaostoksilta kotiinsa, FBI on häntä vastassa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61156/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60627",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "21 € / 16 €",
                        "sv": "21 € / 16 €",
                        "en": "21 € / 16 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/maestro-bettina-louise-hoffsten-3494632",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/maestro-bettina-louise-hoffsten-3494632",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/maestro-bettina-louise-hoffsten-3494632"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5217,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:55.747758Z",
                    "last_modified_time": "2023-10-09T13:31:55.747777Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729629.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5217/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:55.610379Z",
            "last_modified_time": "2023-11-14T06:13:37.966508Z",
            "date_published": null,
            "start_time": "2023-11-11T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Maestro & Bettina: Louise Hoffsten – Klubb Ankdamm",
                "sv": "Maestro & Bettina: Louise Hoffsten – Klubb Ankdamm",
                "en": "Maestro & Bettina: Louise Hoffsten – Klubb Ankdamm"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/F9D5723476F67943B6708DC63BAD1FBC/Maestro_Bettina_Louise_Hoffsten",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/F9D5723476F67943B6708DC63BAD1FBC/Maestro_Bettina_Louise_Hoffsten",
                "en": "http://www.vuotalo.fi/en/events/event/F9D5723476F67943B6708DC63BAD1FBC/Maestro_Bettina_Louise_Hoffsten"
            },
            "description": {
                "fi": "<p>Harva artisti täyttää kuvaukset \"kansan suosikki\" ja \"Ruotsin blues-kuningatar\". Louise Hoffsten ansaitsee ja lunastaa molemmat.</p><p>Yli kolmikymmenvuotisella kunnioitusta herättävällä soolouralla, johon bluesin lisäksi kuuluu mm. rockia, kansanmusiikkia ja jazzia, <b>Louise Hoffsten</b> on soittanut tiensä yleisön sydämeen. Helmikuun 2022 hän julkaisi albumin \"Crossing the Border\" ja maaliskuussa oli kiertueen aika.<br> <br>Albumin nimen merkityksestä Louise kertoo näin: \"Tuo oli tapahtumarikasta aikaa koko maailmassa. Oli mahdotonta olla vaikuttumatta siitä. Kuka voisi sulkea silmänsä, kun maailmassa on kriisi? Pandemia, joka pysäyttää kaiken. Vaalit Yhdysvalloissa, ja klovnista tulee presidentti. Pahoja voimia kaikkialla maailmassa. Silloin tarvitaan musiikkia, josta saa voimaa. Silloin ihminen kaipaa Memphisiin. Kun ei voi olla ulkona soittamassa tai matkustamassa, voi lohduttaa itseään soittamalla huuliharppua jossain nurkassa. Koskaan ei tule olemaan enää samanlaista. Yhtä hyvin voi hyväksyä sen, mitä nyt on. Jos uskallat ylittää rajan!\"</p><p>Klubi-ilta, A-oikeudet, Kahvila Pokkari vastaa tarjoilusta. Ovet avataan klo 17.30<br>Kesto n. 2 tuntia, sis. väliajan. <br>Liput: 21/16 € Lippu.fi tai samana iltana ovelta klo 16.30 alkaen.<br>Järj. Ramasound yhteistyössö Vuotalon kanssa</p>",
                "sv": "<p>Att leva upp till beskrivningar som \"folkkär\" och \"Sveriges bluesdrottning\" är det få artister som kan bära. Louise Hoffsten förtjänar och lever upp till dem båda.</p><p>Med sin respektingivande mer än trettioåriga solokarriär som förutom bluesen även omfamnat genrer som rock, visa, folkmusik och jazz har hon successivt spelat sig in i publikens hjärta. Den 11 februari släpptes hennes nya album <i>\"Crossing the Border\"</i> och i mars är det dags för en turné<br> <br>Om albumtitels betydelse berättar Louise: </i>\"Det har varit en händelserik tid i hela världen. Omöjligt att inte ha påverkats av det. Vem kan blunda när det är kris i världen? En pandemi som ställer allt på ända. Val i USA där en clown blir president. Onda krafter överallt i världen. Det är då man behöver musik att hämta kraft ifrån. Det är då man längtar till Memphis. När man inte kan vara ute och spela eller resa får man trösta sig med munspelet i ett hörn någonstans. Det kommer aldrig bli som vanligt igen. Det är lika bra att acceptera det som är nu. Om du vågar crossing the border!\"</i><br> <br>När Louise Hoffsten medverkade i programmet Så mycket bättre 2018 så var det en i raden av de gånger hon synts i TV rutan. 2011 deltog hon i tv-programmet Stjärnorna på slottet. 2012 var hon med i Körslaget 2012 med en kör från sin hemstad Linköping. 2013 gick Hoffsten direkt till final i Melodifestivalenmed låten “Only the Dead Fish Follow the Stream” en låt som sedan låg sammanlagt tjugotre veckor på Svensktoppen.</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Dörrarna öppnas kl. 17.30.<br>Längd ca 2h inkl. paus. <br>Bilj. á 21/16 € via Lippu.fi eller vid dörren från kl. 16.30.<br>Arr.Ramasound i samarbete med Nordhuset.</p>",
                "en": "<p>Few artists can live up to descriptions such as \"folk favorite\" and \"Sweden's blues queen\". Louise Hoffsten deserves and lives up to both of them.</p><p>Club night, fully licensed bar, Café Pokkari. Doors open at 5.30 PM. <br>Duration approx. 2 hour, inc. intermission. <br>Tickets € 21/16 from lippu.fi or from the door 4.30 PM forwards.<br>Org. Ramasound in cooperation with Vuotalo</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Harva artisti täyttää kuvaukset \"kansan suosikki\" ja \"Ruotsin blues-kuningatar\". Louise Hoffsten ansaitsee ja lunastaa molemmat.",
                "sv": "Att leva upp till beskrivningar som \"folkkär\" och \"Sveriges bluesdrottning\" är det få artister som kan bära. Louise Hoffsten förtjänar och lever upp till dem båda.",
                "en": "Few artists can live up to descriptions such as \"folk favorite\" and \"Sweden's blues queen\". Louise Hoffsten deserves and lives up to both of them."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59975",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "47/15/10 €",
                        "sv": "47/15/10 €",
                        "en": "47/15/10 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3397854",
                        "sv": "https://www.lippu.fi/eventseries/name-3397854",
                        "en": "https://www.lippu.fi/eventseries/name-3397854"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4534,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:22.700849Z",
                    "last_modified_time": "2023-09-07T14:26:22.700879Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731624.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4534/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:22.562175Z",
            "last_modified_time": "2023-11-14T06:13:37.892009Z",
            "date_published": null,
            "start_time": "2023-11-11T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Gigli-2023 Gaalakonsertti",
                "sv": "Gigli-2023 Galakonsert",
                "en": "Gigli-2023 Gala concert"
            },
            "provider": {
                "fi": "Suomen Beniamino Gigli -seura ry",
                "sv": "Suomen Beniamino Gigli -seura ry",
                "en": "Suomen Beniamino Gigli -seura ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/057B7F2233DFBD0D68F2968C7306D40F/Gigli-2023_Gaalakonsertti",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/057B7F2233DFBD0D68F2968C7306D40F/Gigli-2023_Galakonsert",
                "en": "http://www.savoyteatteri.fi/en/events/event/057B7F2233DFBD0D68F2968C7306D40F/Gigli-2023_Gala_concert"
            },
            "description": {
                "fi": "<p>Ooppera-aarioita ja klassista musiikkia<br>Rakastettuja oopperan helmiä</p><p>Esiintyjät: Jyrki Anttila, Piia Rytkönen, Elena Salvatori, Alessandro Goldoni, Jari Hiekkapelto, piano, sekä juontaja Laura Pyrrö.</p><p>Kesto n. 2 h, sisältää väliajan</p>",
                "sv": "<p>Operaarior och klassisk musik<br>Älskade operapärlor</p><p>På scenen: Jyrki Anttila, Piia Rytkönen, Elena Salvatori, Alessandro Goldoni, Jari Hiekkapelto, piano, samt programledare Laura Pyrrö.</p><p>Längd ca 2 h med paus</p>",
                "en": "<p>Opera arias and classical music<br>Beloved gems of opera</p><p>Performers: Jyrki Anttila, Piia Rytkönen, Elena Salvatori, Alessandro Goldoni, Jari Hiekkapelto, piano, and host Laura Pyrrö.</p><p>Duration approx. 2 h, including intermission</p>"
            },
            "provider_contact_info": null,
            "short_description": null,
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59975/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60616",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "16,50 € / 22,50 €",
                        "sv": "16,50 € / 22,50 €",
                        "en": "16,50 € / 22,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "sv": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/",
                        "en": "https://www.lippu.fi/artist/malmitalo/latin-folk-night-6-3492332/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4535,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:23.245456Z",
                    "last_modified_time": "2023-09-07T14:26:23.245482Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728578.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4535/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:22.918543Z",
            "last_modified_time": "2023-11-14T06:13:37.816659Z",
            "date_published": null,
            "start_time": "2023-11-11T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Latin Folk Night",
                "sv": "Latin Folk Night",
                "en": "Latin Folk Night"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night",
                "en": "http://www.malmitalo.fi/en/events/event/E061265480EE405E1D6243D9652B0DCB/Latin_Folk_Night"
            },
            "description": {
                "fi": "<p>Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!</p><p>Helsingin latinalaisamerikkalainen yhteisö vie katsojan värikkään esityksensä kautta alueen kulttuurisille sydänmaille. Illan aikana lavalla nähdään kansantansseja, joissa yhdistyvät alkuperäiskansojen perinteet ja afrikkalaiset sekä eurooppalaiset vaikutteet.</p><p><b>Askelten Palo ry:n</b> tuottama esitys edistää kulttuurivaihtoa ja ymmärrystä latinalaisamerikkalaisen ja suomalaisen yhteisön välillä.</p><p>Tule mukaan rakentamaan siltoja ja juhlimaan moninaisuutta!</p><p><b>Kaksi esitystä:</b><br>Ensimmäinen esitys klo 16.00<br>Toinen esitys klo 19.00</p><p>Kesto n. 1 h 30 min, sis. 20 min väliaika</p><p>***</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b></p><p>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "sv": "<p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!</p><p>Längd cirka 1 t 30 min, med paus<br><b>Två föreställning</b>: 16.00 och 19.00</p><p><b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>",
                "en": "<p>We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!</p><p>Our event celebrates the unique fusion of Indigenous, African, and European influences that have shaped and contributed to the rich tapestry of rhythms and melodies in Latin American folk music.</p><p>Experience the heart of our culture through colorful performances by members of the Latin American community living in Helsinki. You’ll witness traditional dances from different countries and enjoy our delicious cuisine.</p><p><b>Askelten Palo ry</b> is proud to promote cultural exchanges and understanding between our community and Finland through this show.</p><p>Don’t miss this unique opportunity to celebrate diversity, build bridges and immerse yourself in the magic of Latin America.</p><p><b>Two shows:</b><br>First show at 4:00 p.m<br>Second show at 7:00 p.m</p><p>Duration approx. 1 h 30 min, incl. 20 min. interval</p><p>>b>¡Bienvenidos a la sexta edición de Latin Folk Night!</b><br>Los invitamos a unirse a nosotros en una velada vibrante llena de cultura, música y tradición. Nuestro evento celebra la fusión única de influencias indígenas, africanas y europeas que han dado forma y contribuido al variado tapiz de ritmos y melodías de la música folclórica latinoamericana.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tule viettämään sykähdyttävää iltaa latinalaisamerikkalaisen tanssin, musiikin ja perinteiden parissa järjestyksessään kuudenteen Latin Folk Night -esitykseen!",
                "sv": "Kom till den i ordningen sjätte Latin Folk Night-föreställningen för att tillbringa en bedårande kväll med latinamerikansk dans och musik samt latinamerikanska traditioner!",
                "en": "We invite you to join us for a vibrant evening full of culture, music, and tradition in the sixth edition of Latin Folk Night!"
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60616/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61122",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                },
                {
                    "@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": [],
                    "price": {
                        "fi": "8 €",
                        "sv": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5336,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:25.568155Z",
                    "last_modified_time": "2023-10-10T13:31:25.568180Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737940.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5336/?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-10T13:31:25.313744Z",
            "last_modified_time": "2023-11-14T06:13:37.743237Z",
            "date_published": null,
            "start_time": "2023-11-11T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kuka olet, Mimmi Lehmä? (S) – Kino Helios",
                "sv": "Vem är Mamma Mu? (T) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0B906F14932F635EFEF898AF7834D699/Kuka_olet_Mimmi_Lehma_S_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0B906F14932F635EFEF898AF7834D699/Vem_ar_Mamma_Mu_T_"
            },
            "description": {
                "fi": "<p>Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.</p><p>Pikkuveljen rakas nalle katoaa salaperäisissä olosuhteissa ja kaikki on Mimmi Lehmän syytä.</p><p>\"Etkö voi olla ihan tavallinen lehmä? Silloin mitään ei tapahdu!\" hänen ystävänsä Varis kysyy. Mutta juuri sitä Mimmi Lehmä haluaa välttää. Hän rakastaa sitä, kun kaikenlaisia asioita tapahtuu! Yhdessä Mimmi ja Varis alkavat seurata kadonneen nallen jälkiä.</p><p>Kesto 67 min<br>Ensi-ilta 10.11.2023<br>Ikäraja Sallittu</p>",
                "sv": "<p>När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält.</p><p>Lillebrors älskade nalle försvinner under mystiska omständigheter och det är Mamma Mus fel.</p><p>\"Kan du inte bara vara en vanlig ko?\" undrar hennes vän Kråkan. \"Då händer ingenting!\" Men det är ju precis det Mamma Mu vill undvika. Hon älskar när det händer saker! Inte bara så sorgliga saker. Tillsammans börjar Mamma Mu och Kråkan följa spåren efter den saknade nallen.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kun Mimmi Lehmä saa inspiraatiota lapsista ja haluaa tehdä oman MUUUsikaalinsa, menee asiat ihan pieleen.",
                "sv": "När Mamma Mu blir inspirerad av barnen och vill göra sin alldeles egna Mu-sikal, råkar hon ställa till det rejält."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61122/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60607",
            "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: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: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": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/company-kate-pasi/",
                        "sv": "https://www.lippu.fi/artist/company-kate-pasi/",
                        "en": "https://www.lippu.fi/artist/company-kate-pasi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4533,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:22.336117Z",
                    "last_modified_time": "2023-09-07T14:26:22.336138Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731131.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4533/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:22.186876Z",
            "last_modified_time": "2023-11-14T06:13:37.665470Z",
            "date_published": null,
            "start_time": "2023-11-11T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Company Kate & Pasi: SUHDE – taistelu tuolista",
                "sv": "Company Kate & Pasi: SUHDE – taistelu tuolista",
                "en": "Company Kate & Pasi: RELATIONSHIP – The Fight for a Chair"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/E696E05DBCB2409D3B49BBA00CFCD7C8/Company_Kate_Pasi_SUHDE_taistelu_tuolista",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/E696E05DBCB2409D3B49BBA00CFCD7C8/Company_Kate_Pasi_SUHDE_taistelu_tuolista",
                "en": "http://www.kanneltalo.fi/en/events/event/E696E05DBCB2409D3B49BBA00CFCD7C8/Company_Kate_Pasi_RELATIONSHIP_The_Fight_for_a_Chair"
            },
            "description": {
                "fi": "<p>SUHDE – taistelu tuolista on nykysirkusesitys, joka käsittelee luottamuksen merkitystä ihmissuhteissa.</p><p>Esitys tutkii kahden erikokoisen henkilön kohtaamisen vaikutusta suhteeseen ja haastaa pohtimaan johtajuutta, seuraamista ja yhteistyötä suhteessa.</p><p>Sirkuksen tekniikat, kuten pariakrobatia ja jongleeraus, auttavat ymmärtämään, miten luottamus rakentuu toiseen ihmiseen ja miten sooloilu voi vaikuttaa suhteeseen.</p><p>Esitys tarjoaa viihdyttävän ja ajatuksia herättävän tavan tarkastella luottamuksen merkitystä ja kannustaa pohtimaan omaa suhdetta luottamukseen ja yhteistyöhön.</p><p><b>Company Kate & Pasi</b> jongleeraa ihmissuhteen elementeillä kirjaimellisesti ja vastaa parien kehityskysymyksiin sydäntä pysäyttävällä akrobatialla, herkkyydellä ja paljolla itseironialla.<br> <br>Käsikirjoitus, ohjaus, esiintyminen: Pasi Nousiainen ja Katerina Repponen<br>Ohjauksellinen apu: Anu Niemi<br>Valosuunnittelu: Eero Auvinen<br>Puvustus: Riikka Heiskanen</p><p><i>“Pasi Nousiaisen ja Katerina Repposen pariakrobatia on tunnetusti hengästyttävän upeaa.”</i> - Helsingin Sanomat 18.11.2013, Jussi Tossavainen</p><p><i>“Company Kate & Pasi tekee parisuhteesta akrobatiaa, jonka huikeimmatkin temput on naamioitu miellyttävään vaivattomuuteen ja kodikkaaseen komiikkaan”</i> - Turun Sanomat 8.10.2022, Frida Maria Pessi</p><p>Kesto: 50 min, ei väliaikaa<br>Liput: 20 € / 15 €, lauantain esitykseen myös lastenlippu 6 €</p><p>Ikäsuositus 6+</p>",
                "sv": "<p>SUHDE – taistelu tuolista är en nycirkusföreställning som behandlar betydelsen av tillit i relationer.</p><p>Föreställningen undersöker hur mötet mellan två olika stora personer påverkar relationen och utmanar att reflektera över ledarskap, åtföljande och samarbete i en relation.</p><p>Cirkustekniker, liksom parakrobatik och jonglering, hjälper att förstå hur tilliten till en annan människa byggs upp och hur relationen kan påverkas av att den ena flyger solo.</p><p>Föreställningen bjuder på ett underhållande och tankeväckande sätt att granska betydelsen av tillit och utmanar att reflektera över sitt eget förhållande till tillit och samarbete.</p><p>Längd cirka 50 min, ingen paus</p><p>År från 6+</p>",
                "en": "<p>RELATIONSHIP – The Fight for a Chair is a contemporary circus show about the importance of trust in relationships.</p><p>The performance explores the impact of an encounter on a relationship between two people of different sizes and challenges the audience to reflect on leadership, followership and cooperation in a relationship.</p><p>Circus techniques, such as pair acrobatics and juggling, help people to understand how trust is built with another person and how going solo can affect a relationship.</p><p>The performance offers an entertaining and thought-provoking way to explore the meaning of trust and encourages the audience to reflect on their own relationship with trust and cooperation.</p><p>Duration approx. 50 min, no intermission</p><p>Age 6 and older</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "SUHDE – taistelu tuolista on nykysirkusesitys, joka käsittelee luottamuksen merkitystä ihmissuhteissa.",
                "sv": "SUHDE – taistelu tuolista är en nycirkusföreställning som behandlar betydelsen av tillit i relationer.",
                "en": "RELATIONSHIP – The Fight for a Chair is a contemporary circus show about the importance of trust in relationships."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60607/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60605",
            "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:33/?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:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 € / 12 €",
                        "sv": "15 € / 12 €",
                        "en": "15 € / 12 €"
                    },
                    "info_url": {
                        "fi": "https://holvi.com/shop/todellisuus/",
                        "sv": "https://holvi.com/shop/todellisuus/",
                        "en": "https://holvi.com/shop/todellisuus/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4532,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:21.934957Z",
                    "last_modified_time": "2023-09-07T14:26:21.934979Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731861.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4532/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:20.751613Z",
            "last_modified_time": "2023-11-14T06:13:37.587974Z",
            "date_published": null,
            "start_time": "2023-11-11T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Todellisuuden tutkimuskeskus: Camping",
                "sv": "Todellisuuden tutkimuskeskus: Camping",
                "en": "Reality Research Center: Camping"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D0B180FD1DA16A154059D49B0FD6E25D/Todellisuuden_tutkimuskeskus_Camping",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D0B180FD1DA16A154059D49B0FD6E25D/Todellisuuden_tutkimuskeskus_Camping",
                "en": "http://www.kanneltalo.fi/en/events/event/D0B180FD1DA16A154059D49B0FD6E25D/Reality_Research_Center_Camping"
            },
            "description": {
                "fi": "<p>Camping on kokemuksellinen esitys ja selviytymisopas rajusti muuttuvaan maailmaan, missä kaikki on liikkeessä, kaikki palaa, kompassit pyörivät ja tulivuoret purkautuvat.</p><p>Aurinko on aina eri värinen, ruoka on oudon makuista, fossiilit tuntuvat lämpimiltä ja jokin lähestyy.</p><p>Tässä maailmassa kaksi lasta leiriytyy tuntemattoman äärelle yhdessä katsojien kanssa ja antaa kysymysten, tunteiden ja olioiden tulla luo. Leiri kasvaa, karttoja laaditaan, pystytetään spa-hoitola.</p><p>Camping on syntynyt halusta valmistautua siihen mihin ei voi valmistautua. Siinä tapahtuu kaikki minkä voidaan kuvitella tapahtuvan ja samalla kaikesta selvitään. Teoksessa on jotain kamalaa ja jotain lohdullista, ja vaikka siinä on monta loppua, mikään ei kokonaan lopu kuitenkaan.</p><p>Esitys 11.11. kello 13 on englanninkielinen.<br>Ikäraja: Esitys ei sovi alle 11-vuotiaille.<br>Esityksessä käytetään välkkyviä valoja ja tekoverta.</p><p><b>TYÖRYHMÄ:</b><br>Ohjaus ja dramaturgia: Essi Rossi<br>Äänisuunnittelu: Pauli Riikonen<br>Pukusuunnittelu: Liisa Pesonen<br>Runot: Petra Vallila <br>Skenografia: Milla Martikainen<br>Näyttämöllä: Olga ja Ruut Neves <br> <br>Tuotanto: Todellisuuden tutkimuskeskus<br>Esitystä ovat tukeneet: Koneen säätiö, Taike, Huberin säätiö</p><p>= = =</p>",
                "sv": "<p>Camping är en föreställning som bygger på upplevelse och en överlevnadsguide till världen som förändras häftigt, där allting är i rörelse, där allting brinner, kompasserna snurrar och vulkanerna har utbrott.</p><p>Solens färg ändras ständigt, maten smakar konstigt, fossiler känns varma och någonting närmar sig.</p><p>I den här världen slår två barn läger vid det okända tillsammans med publiken och låter frågorna, känslorna och varelserna komma nära. Lägret växer, kartor ritas, en spasalong inrättas.</p><p>Camping har uppstått ur en önskan om att förbereda sig på det som man inte kan förbereda sig på. Här händer allt som kan tänkas hända och samtidigt klarar man av allt. Verket är både hemskt och tröstande och även om det innehåller många avslut, upphör ingenting helt ändå.</p><p>Lördags 11.11. föreställning är på engelska. <br>Åldersgränsen: inte för barn under 11 år<br>Föreställningen innehåller blinkande ljus och användning av fejkblod.</p>",
                "en": "<p>‘Camping’ is an experiential performance and a survival guide to a rapidly changing world where everything is on the move, everything is on fire, compasses are spinning and volcanoes are erupting.</p><p>The sun is always a different colour, food tastes strange, fossils feel warm and something is coming.</p><p>In this world, two children set up a camp, stopping together with the audience to face the unknown and let questions, feelings and creatures come to them. The camp grows, maps are drawn, a spa is set up.</p><p>‘Camping’ is born out of a desire to prepare for what cannot be prepared for. Everything that can be imagined will happen and yet everything will be overcome. There is something terrible and something comforting and, although it has many endings, it doesn’t end completely.</p><p>Performance on Saturday Nov 11th is in English.<br>Age limit: not for children under 11 yrs.<br>The performance contains flashing lights and the use of fake blood.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Camping on kokemuksellinen esitys ja selviytymisopas rajusti muuttuvaan maailmaan, missä kaikki on liikkeessä, kaikki palaa, kompassit pyörivät ja tulivuoret purkautuvat.",
                "sv": "Camping är en föreställning som bygger på upplevelse och en överlevnadsguide till världen som förändras häftigt, där allting är i rörelse, där allting brinner, kompasserna snurrar och vulkanerna har utbrott.",
                "en": "‘Camping’ is an experiential performance and a survival guide to a rapidly changing world where everything is on the move, everything is on fire, compasses are spinning and volcanoes are erupting."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60605/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60961",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/me-myoes-3326272/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/me-myoes-3326272/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5216,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:52.011582Z",
                    "last_modified_time": "2023-10-09T13:31:52.011603Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737223.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5216/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:51.876891Z",
            "last_modified_time": "2023-11-14T06:13:37.436286Z",
            "date_published": null,
            "start_time": "2023-11-10T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Bryana Fritz: Submission Submission",
                "en": "Moving in November – Bryana Fritz: Submission Submission"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/6484DCAA77B3D31F4080A0D0CEF7C10C/Liikkeella_marraskuussa_Bryana_Fritz_Submission_Submission",
                "en": "http://www.caisa.fi/en/events/event/6484DCAA77B3D31F4080A0D0CEF7C10C/Moving_in_November_Bryana_Fritz_Submission_Submission_"
            },
            "description": {
                "fi": "<p>Teoksessa Submission Submission Bryana Fritz ilmentää ”amatöörihagiografin” roolia tutkimalla strategioita, joilla naispyhimykset haastoivat elämänsä rajoitteita.</p><p>Neljän erillisen performatiivisen muotokuvan kautta Fritz uppoutuu pyhyyden kaikuihin ja herättää nämä narratiivit henkiin.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia Fritz käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 10.11. klo 12 Caisassa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/submission-submission-2</p><p>Kesto: 1h<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.<br> <br>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>",
                "en": "<p>In Submission Submission Bryana Fritz embodies the role of an ‘amateur hagiographer' exploring the strategies used by Medieval women saints to challenge their restricted lives.</p><p>Through four distinct performative portraits, Fritz immerses herself in the echoes of sanctity, utilizing the tools that bring these narratives to life.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with Fritz and local host called Soup Talk on the 10th of November at noon in Caisa.</p><p>Read more: https://movinginnovember.fi/submission-submission</p><p>Duration: 1 h<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Caisa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teoksessa Submission Submission Bryana Fritz ilmentää ”amatöörihagiografin” roolia tutkimalla strategioita, joilla naispyhimykset haastoivat elämänsä rajoitteita.",
                "en": "In Submission Submission Bryana Fritz embodies the role of an ‘amateur hagiographer' exploring the strategies used by Medieval women saints to challenge their restricted lives."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60961/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59732",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "37,50 €",
                        "sv": "37,50 €",
                        "en": "37,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/operart-kertokaa-se-haenelle-savoy-teatteri-16897105/",
                        "sv": "https://www.lippu.fi/event/operart-kertokaa-se-haenelle-savoy-teatteri-16897105/",
                        "en": "https://www.lippu.fi/event/operart-kertokaa-se-haenelle-savoy-teatteri-16897105/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4528,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:17.921114Z",
                    "last_modified_time": "2023-09-07T14:26:17.921166Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729770.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4528/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:17.760130Z",
            "last_modified_time": "2023-11-14T06:13:37.355521Z",
            "date_published": null,
            "start_time": "2023-11-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Kertokaa se hänelle – Jyrki Anttila ja Maija Anttila",
                "sv": "Kertokaa se hänelle – Jyrki Anttila och Maija Anttila",
                "en": "Kertokaa se hänelle – Jyrki Anttila and Maija Anttila"
            },
            "provider": {
                "fi": "OperArt Jyrki Anttila Oy",
                "sv": "OperArt Jyrki Anttila Oy",
                "en": "OperArt Jyrki Anttila Oy"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/73835B58E7187132F1540C76E8280A0D/Kertokaa_se_hanelle_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/73835B58E7187132F1540C76E8280A0D/Kertokaa_se_hanelle_",
                "en": "http://www.savoyteatteri.fi/en/events/event/73835B58E7187132F1540C76E8280A0D/Kertokaa_se_hanelle_"
            },
            "description": {
                "fi": "<p>Jyrki Anttila esittää pianisti vaimonsa Maija Anttilan kanssa upean kavalkadin lauluja, jotka suomalaisille on tuonut tunnetuksi Mauno Kuusisto, sekä miehekkään metallisen äänen omannut Tapio Rautavaara.</p><p>Nämä kaksi laulajaa kuuluvat Anttilan lapsuuden laulajaihanteisiin. Lisäksi konsertissa kuullaan Jyrki Anttilan bravuurinumeroita 35-vuotisen laulajauran varrelta.</p><p>Ohjelmistossa mm. Isoisän olkihattu, Juokse sinä humma, Rakovalkealla, Kulkuri ja joutsen, Kertokaa se hänelle, Mun kaunis kotimaani, Minä laulan sun iltasi tähtihin ja Lauluni aiheet. <br>Mukana myös Anttilan ohjelmistoa mm. Muistojen siivin, Oot kaunis niin ja Granada.</p><p>Tenori – Jyrki Anttila, Haitari – Petri Ikkelä, Piano – Maija Anttila</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>",
                "sv": "<p>Jyrki Anttila framför en fenomenal låtkavalkad med sin pianistfru Maija Anttila. För den finländska publiken har låtarna blivit kända i tolkningarna av Mauno Kuusisto och Tapio Rautavaara, sångaren med den manliga rösten med metallklang.</p><p>Dessa två sångare var Anttilas idoler under uppväxten. Under konserten får publiken dessutom höra Jyrki Anttilas bravurnummer från hans 35 år långa sångarkarriär.</p><p>På repertoaren står bland annat Isoisän olkihattu, Juokse sinä humma, Rakovalkealla, Kulkuri ja joutsen, Kertokaa se hänelle, Mun kaunis kotimaani, Minä laulan sun iltasi tähtihin och Lauluni aiheet.<br>Även Anttilas stycken såsom Muistojen siivin, Oot kaunis niin och Granada.</p><p>Tenor – Jyrki Anttila, dragspel – Petri Ikkelä, piano – Maija Anttila</p><p>Längd ca 2 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>Jyrki Anttila and her pianist wife Maija Anttila will perform an amazing cavalcade of songs that were made famous among Finns by Mauno Kuusisto and Tapio Rautavaara, the singer known for the masculine timbre of his voice.</p><p>These two singers were among Anttila’s idols as a child. The concert will also feature some staples from Jyrki Anttila’s 35-year career.</p><p>The performance will include songs like Isoisän olkihattu, Juokse sinä humma, Rakovalkealla, Kulkuri ja joutsen, Kertokaa se hänelle, Mun kaunis kotimaani, Minä laulan sun iltasi tähtihin and Lauluni aiheet.<br>From his own repertoire, Anttila will perform songs such as Muistojen siivin, Oot kaunis niin and Granada.</p><p>Tenori – Jyrki Anttila, accordion – Petri Ikkelä, piano – Maija Anttila</p><p>Duration approx. 2 h, including 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_contact_info": null,
            "short_description": {
                "fi": "Jyrki Anttila esittää pianisti vaimonsa Maija Anttilan kanssa upean kavalkadin lauluja, jotka suomalaisille on tuonut tunnetuksi Mauno Kuusisto, sekä miehekkään metallisen äänen omannut Tapio Rautavaara.",
                "sv": "Jyrki Anttila framför en fenomenal låtkavalkad med sin pianistfru Maija Anttila. För den finländska publiken har låtarna blivit kända i tolkningarna av Mauno Kuusisto och Tapio Rautavaara, sångaren med den manliga rösten med metallklang.",
                "en": "Jyrki Anttila and her pianist wife Maija Anttila will perform an amazing cavalcade of songs that were made famous among Finns by Mauno Kuusisto and Tapio Rautavaara, the singer known for the masculine timbre of his voice."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59732/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60606",
            "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: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: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": [],
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/company-kate-pasi/",
                        "sv": "https://www.lippu.fi/artist/company-kate-pasi/",
                        "en": "https://www.lippu.fi/artist/company-kate-pasi/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4529,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:18.336013Z",
                    "last_modified_time": "2023-09-07T14:26:18.336033Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731129.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4529/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:18.141974Z",
            "last_modified_time": "2023-11-14T06:13:37.279023Z",
            "date_published": null,
            "start_time": "2023-11-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Company Kate & Pasi: SUHDE – taistelu tuolista",
                "sv": "Company Kate & Pasi: SUHDE – taistelu tuolista",
                "en": "Company Kate & Pasi: RELATIONSHIP – The Fight for a Chair"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3B1F4104B3E0ED5A0CC849546FF9ADF8/Company_Kate_Pasi_SUHDE_taistelu_tuolista",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3B1F4104B3E0ED5A0CC849546FF9ADF8/Company_Kate_Pasi_SUHDE_taistelu_tuolista",
                "en": "http://www.kanneltalo.fi/en/events/event/3B1F4104B3E0ED5A0CC849546FF9ADF8/Company_Kate_Pasi_RELATIONSHIP_The_Fight_for_a_Chair"
            },
            "description": {
                "fi": "<p>SUHDE – taistelu tuolista on nykysirkusesitys, joka käsittelee luottamuksen merkitystä ihmissuhteissa.</p><p>Esitys tutkii kahden erikokoisen henkilön kohtaamisen vaikutusta suhteeseen ja haastaa pohtimaan johtajuutta, seuraamista ja yhteistyötä suhteessa.</p><p>Sirkuksen tekniikat, kuten pariakrobatia ja jongleeraus, auttavat ymmärtämään, miten luottamus rakentuu toiseen ihmiseen ja miten sooloilu voi vaikuttaa suhteeseen.</p><p>Esitys tarjoaa viihdyttävän ja ajatuksia herättävän tavan tarkastella luottamuksen merkitystä ja kannustaa pohtimaan omaa suhdetta luottamukseen ja yhteistyöhön.</p><p><b>Company Kate & Pasi</b> jongleeraa ihmissuhteen elementeillä kirjaimellisesti ja vastaa parien kehityskysymyksiin sydäntä pysäyttävällä akrobatialla, herkkyydellä ja paljolla itseironialla.<br> <br>Käsikirjoitus, ohjaus, esiintyminen: Pasi Nousiainen ja Katerina Repponen<br>Ohjauksellinen apu: Anu Niemi<br>Valosuunnittelu: Eero Auvinen<br>Puvustus: Riikka Heiskanen</p><p><i>“Pasi Nousiaisen ja Katerina Repposen pariakrobatia on tunnetusti hengästyttävän upeaa.”</i> - Helsingin Sanomat 18.11.2013, Jussi Tossavainen</p><p><i>“Company Kate & Pasi tekee parisuhteesta akrobatiaa, jonka huikeimmatkin temput on naamioitu miellyttävään vaivattomuuteen ja kodikkaaseen komiikkaan”</i> - Turun Sanomat 8.10.2022, Frida Maria Pessi</p><p>Kesto: 50 min, ei väliaikaa<br>Liput: 20 € / 15 €, lauantain esitykseen myös lastenlippu 6 €</p><p>Ikäsuositus 6+</p>",
                "sv": "<p>SUHDE – taistelu tuolista är en nycirkusföreställning som behandlar betydelsen av tillit i relationer.</p><p>Föreställningen undersöker hur mötet mellan två olika stora personer påverkar relationen och utmanar att reflektera över ledarskap, åtföljande och samarbete i en relation.</p><p>Cirkustekniker, liksom parakrobatik och jonglering, hjälper att förstå hur tilliten till en annan människa byggs upp och hur relationen kan påverkas av att den ena flyger solo.</p><p>Föreställningen bjuder på ett underhållande och tankeväckande sätt att granska betydelsen av tillit och utmanar att reflektera över sitt eget förhållande till tillit och samarbete.</p><p>Längd cirka 50 min, ingen paus</p><p>År från 6 plus</p>",
                "en": "<p>RELATIONSHIP – The Fight for a Chair is a contemporary circus show about the importance of trust in relationships.</p><p>The performance explores the impact of an encounter on a relationship between two people of different sizes and challenges the audience to reflect on leadership, followership and cooperation in a relationship.</p><p>Circus techniques, such as pair acrobatics and juggling, help people to understand how trust is built with another person and how going solo can affect a relationship.</p><p>The performance offers an entertaining and thought-provoking way to explore the meaning of trust and encourages the audience to reflect on their own relationship with trust and cooperation.</p><p>Duration approx. 50 min, no intermission</p><p>Age 6 and older</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "SUHDE – taistelu tuolista on nykysirkusesitys, joka käsittelee luottamuksen merkitystä ihmissuhteissa.",
                "sv": "SUHDE – taistelu tuolista är en nycirkusföreställning som behandlar betydelsen av tillit i relationer.",
                "en": "RELATIONSHIP – The Fight for a Chair is a contemporary circus show about the importance of trust in relationships."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60606/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60626",
            "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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17 €",
                        "sv": "17 €",
                        "en": "17 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-amis-album-50-ar-liv-pa-estraden-3471232/",
                        "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-amis-album-50-ar-liv-pa-estraden-3471232/",
                        "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-amis-album-50-ar-liv-pa-estraden-3471232/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4530,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:18.729802Z",
                    "last_modified_time": "2023-09-07T14:26:18.729823Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729628.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4530/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:18.575433Z",
            "last_modified_time": "2023-11-14T06:13:37.204782Z",
            "date_published": null,
            "start_time": "2023-11-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "AMIN ALBUMI – 50 vuotta elämää estradilla | Klubb Ankdamm – Ruotsalaisuuden viikko",
                "sv": "AMIS ALBUM – 50 år liv på estraden | Klubb Ankdamm – Svenska veckan",
                "en": "AMI’S ALBUM – 50 Years of Life on the Stage | Klubb Ankdamm – Swedish Week"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AB4DE01E93D066303D6A100FF2AB3E80/AMIN_ALBUMI_50_vuotta_elamaa_estradilla_Klubb_Ankdamm_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AB4DE01E93D066303D6A100FF2AB3E80/AMIS_ALBUM_50_ar_liv_pa_estraden_Klubb_Ankdamm",
                "en": "http://www.vuotalo.fi/en/events/event/AB4DE01E93D066303D6A100FF2AB3E80/AMI_S_ALBUM_50_Years_of_Life_on_the_Stage_Klubb_Ankdamm"
            },
            "description": {
                "fi": "<p>Siitä on todella 50 vuotta, kun nuori tyttönen Vaasasta lauloi ”Sinussa on roimaa alkumiehen voimaa”!</p><p>Sitten alkoi tapahtua: oli monta suosittua ravintolashow’ta 1970- ja 80-luvuilla, TV-taltiointeja, laulu-kilpailuja kansainvälisillä areenoilla ja euroviisuja.</p><p><i>”2000-luvulla teatterit ja musikaalit ovat olleet minun estradit ja ovat edelleen nyt 2020-luvulla! AMIN ALBUMI” viittaa osittain kuviin ja videoihin, jotka esityksessä projisoidaan kankaalle, ja osittain kappaleisiin, joita olen levyttänyt, sekä myös uusiin levyjulkaisuihin. Esitykseen ei tietenkään mahdu kaikkea, mutta ”Amin Albumi” on läpileikkaus siitä, mitä vuosien saatossa olen kerännyt reppuuni, sekä etenkin siitä, mitä teen tänä päivänä eri estradeilla. Siitä olen kiitollinen!”</i></p><p><b>Muusikot:</b><br>Jasse Varpama, piano<br>Hannu Rantanen, basso<br>Topi Kurki, rummut<br>Sampo Hiukkanen, viulu & foni<br>Tuotanto: Amisong oy<br>PR-konsultti: Wille Wilenius</p><p>Klubi-ilta, A-oikeudet, Kahvila Pokkari vastaa tarjoilusta. Ovet avataan klo 17.30</p><p>Kesto n. 2 tuntia, sis. väliajan.</p><p>Liput: 17/11 € Lippu.fi tai samana iltana ovelta klo 16.30 alkaen.</p><p>Järj. Amisong yhteistyössä Vuotalon kanssa.</p>",
                "sv": "<p>Det har faktiskt gått 50 år sedan flickan från Vasa sjöng ”Sinussa on roimaa alkumiehen voimaa”!</p><p>Sedan började saker och ting hända: Det blev många uppskattade restaurangshower på 70-och 80-talet, TV-bandningar, sångtävlingar på internationella arenor samt ESC, eurovisionen 1983.</p><p><i>”På 2000-talet har mina estrader varit teatrar och musikaler, som nu fortsätter på 2020-talet. ”AMIS ALBUM” syftar dels på foton och videosnuttar som i föreställningen projiceras på duken, dels på mina skivlåtar men också på helt nytt material som jag gett ut.  Allting kan ju inte få plats, men ”Amis Album” innehåller en blandning av det som jag samlat i min ryggsäck under årens lopp och i synnerhet av det, som jag idag framför på olika estrader. Det är jag tacksam över!”</i></p><p><b>Musiker:</b><br>Jasse Varpama, piano<br>Hannu Rantanen, bas<br>Topi Kurki, trummor<br>Sampo Hiukkanen, fiol & saxofon<br>Produktion: Amisong Ab<br>PR-konsult: Wille Wilenius</p><p>Klubb-kväll, A-rättigheter, Café Pokkari svarar för serveringen. Dörrarna öppnas kl. 17.30.</p><p>Längd ca 2h inkl. paus.</p><p>Bilj. á 17/11 € via Lippu.fi eller vid dörren från kl. 16.30.</p><p>Arr. Amisong i samarbete med Nordhuset.</p>",
                "en": "<p>Many popular restaurant shows in the 1970s and 80s, TV recordings, singing competitions in international arenas and Eurovision.</p><p>Ami Aspelund celebrates a 50-year career!</p><p>Club night, fully licensed bar, Café Pokkari. Doors open at 5.30 PM.</p><p>Duration approx. 2 hour, inc. intermission. <br>Tickets € 17/11 from lippu.fi or from the door 4.30 PM forwards.</p><p>Org. Amisong in cooperation with Vuotalo.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Siitä on todella 50 vuotta, kun nuori tyttönen Vaasasta lauloi ”Sinussa on roimaa alkumiehen voimaa”!",
                "sv": "Det har faktiskt gått 50 år sedan flickan från Vasa sjöng ”Sinussa on roimaa alkumiehen voimaa”!",
                "en": "Many popular restaurant shows in the 1970s and 80s, TV recordings, singing competitions in international arenas and Eurovision."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60626/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61236",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5871,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-11-06T13:13:58.154853Z",
                    "last_modified_time": "2023-11-06T13:13:58.154871Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739368.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5871/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-11-06T13:13:58.126865Z",
            "last_modified_time": "2023-11-14T06:13:37.125571Z",
            "date_published": null,
            "start_time": "2023-11-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Cinema Laika – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BE87FB5F8E4248A95DC019E3122669C/Cinema_Laika"
            },
            "description": {
                "fi": "<p>Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon.</p><p>Kierrätyspuuta, metallia ja käytettyjä huonekaluja hyödyntäen Kaurismäki ja Karkkilan asukkaat tekevät yhteistyössä Kino Laikan. Tapahtumapaikkaa ympäröivät Cadillacit, moottoripyörät, baarit ja kunnioitusta herättävä luonnon kauneus kiteyttäen elokuvan lumon.</p><p>Cinéma Laika on kaikkien aikojen ensimmäinen elokuvateatterilevitykseen tehty Aki Kaurismäki -dokumentti.</p><p>Pääosissa: Aki Kaurismäki, Mika Lätti, Karkkilan asukkaat, Herra Ylppö, Maustetytöt, Nuppu Koivu, Simon Al-Bazoon, Mikko Myllylahti, Juho Kuosmanen, Amy Taubin ja Jim Jarmusch.</p><p><i>\"The documentary offers an opportunity for the audience to delve into the realm of the Finnish master, engage with his peers, including Jim Jarmusch, and fully immerse themselves in the world of Kaurismäki’s cinema\"</i> -Variety</p><p>Ensi-ilta: 10.11.2023<br>Ikäraja: Ei tiedossa<br>Kesto: 81 min</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kroatialainen ohjaaja Veljko Vidak taltioi Karkkilassa, kuinka Aki Kaurismäki ja kirjailija Mika Lätti rakentavat omaa elokuvateatteria vanhaan valimoon."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61236/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61155",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "15 € / 24 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsinki-beatles-weekend-presents-the-seatbelts-live-malmitalo-17755467/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5641,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-25T11:14:37.088518Z",
                    "last_modified_time": "2023-10-25T11:14:37.088538Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738043.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5641/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-25T11:14:37.057720Z",
            "last_modified_time": "2023-11-14T06:13:37.051726Z",
            "date_published": null,
            "start_time": "2023-11-10T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Helsinki Beatles Weekend Presents: The Seatbelts Live"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C75B70FD05154F24798CEEB9D4FC73F8/Helsinki_Beatles_Weekend_Presents_The_Seatbelts_Live_"
            },
            "description": {
                "fi": "<p>The Seatbelts on yksi tämän hetken kuumimpia Beatles-tribuuttiyhtyeitä Suomessa.</p><p>Yhtye tuli tunnetuksi Helsinki Beatles Weekendin järjestämästä bändikisasta, jonka he voittivat ja pääsivät esiintymään Kulttuuritalolle Pohjoismaiden suurimpaan Beatles-tapahtumaan, Helsinki Beatles Weekendiin. Yleisö suorastaan hullaantui heihin, ja he saivat uskomattomat suosionosoitukset. Tämä onkin poikinut yhtyeelle keikkaa ympäri Suomen. Nyt järjestettävä konsertti on The Seatbeltsin ensimmäinen iso oma konserttisalikonsertti, joka koostuu kahdesta 60 minuutin puoliajasta, ja näiden väliin jäävästä 30 minuutin väliajasta.<br> <br>Ensimmäisellä puoliajalla kuulemme Abbey Road -levyn alusta loppuun. Kappaleet esitetään siinä järjestyksessä kuin ne levyllä ovat. Toisella puoliajalla kuulemme upean Beatles-kimaran aina yhtyeen alkuajoista myöhäisempään tuotantoon, tietenkin tuttuun The Seatbelts -tyyliin, energisesti ja yleisön vangiten.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "The Seatbelts on yksi tämän hetken kuumimpia Beatles-tribuuttiyhtyeitä Suomessa."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61155/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61121",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "8 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5335,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:20.229375Z",
                    "last_modified_time": "2023-10-10T13:31:20.229393Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737938.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5335/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T13:31:20.087673Z",
            "last_modified_time": "2023-11-14T06:13:36.971353Z",
            "date_published": null,
            "start_time": "2023-11-10T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Ihmeiden äärellä (S) – Kino Helios"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F68587B53D9DD80663655B7ACDEA799C/Ihmeiden_aarella_S_"
            },
            "description": {
                "fi": "<p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin.</p><p>Kuuluisassa ranskalaisessa pyhiinvaelluskohteesessa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta.</p><p>Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Kesto 90 min<br>Ensi-ilta 3.11.<br>Ikäraja Sallittu</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61121/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60960",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/me-myoes-3326272/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/me-myoes-3326272/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5215,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:49.878266Z",
                    "last_modified_time": "2023-10-09T13:31:49.878286Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737221.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5215/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:48.615594Z",
            "last_modified_time": "2023-11-14T06:13:36.897117Z",
            "date_published": null,
            "start_time": "2023-11-09T17:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Bryana Fritz: Submission Submission",
                "en": "Moving in November – Bryana Fritz: Submission Submission"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/F9E247A0DF945545A64B73DD9D0E4BD5/Liikkeella_marraskuussa_Bryana_Fritz_Submission_Submission",
                "en": "http://www.caisa.fi/en/events/event/F9E247A0DF945545A64B73DD9D0E4BD5/Moving_in_November_Bryana_Fritz_Submission_Submission_"
            },
            "description": {
                "fi": "<p>Teoksessa Submission Submission Bryana Fritz ilmentää ”amatöörihagiografin” roolia tutkimalla strategioita, joilla naispyhimykset haastoivat elämänsä rajoitteita.</p><p>Neljän erillisen performatiivisen muotokuvan kautta Fritz uppoutuu pyhyyden kaikuihin ja herättää nämä narratiivit henkiin.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia Fritz käy keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 10.11. klo 12 Caisassa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/submission-submission-2</p><p>Kesto: 1h<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.<br> <br>Caisa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>",
                "en": "<p>In Submission Submission Bryana Fritz embodies the role of an ‘amateur hagiographer' exploring the strategies used by Medieval women saints to challenge their restricted lives.</p><p>Through four distinct performative portraits, Fritz immerses herself in the echoes of sanctity, utilizing the tools that bring these narratives to life.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with Fritz and local host called Soup Talk on the 10th of November at noon in Caisa.</p><p>Read more: https://movinginnovember.fi/submission-submission</p><p>Duration: 1 h<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Caisa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teoksessa Submission Submission Bryana Fritz ilmentää ”amatöörihagiografin” roolia tutkimalla strategioita, joilla naispyhimykset haastoivat elämänsä rajoitteita.",
                "en": "In Submission Submission Bryana Fritz embodies the role of an ‘amateur hagiographer' exploring the strategies used by Medieval women saints to challenge their restricted lives."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60960/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60890",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    },
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/",
                        "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5214,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:48.285173Z",
                    "last_modified_time": "2023-10-09T13:31:48.285190Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735807.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5214/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:48.119120Z",
            "last_modified_time": "2023-11-14T06:13:36.817746Z",
            "date_published": null,
            "start_time": "2023-11-09T17:00:00Z",
            "end_time": "2023-11-09T18:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP",
                "en": "Moving in November – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP"
            },
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/71AB0EAA5E1609CDD7EF6C1C440E0C09/Liikkeella_marraskuussa_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP",
                "en": "http://www.stoa.fi/en/events/event/71AB0EAA5E1609CDD7EF6C1C440E0C09/Moving_in_November_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP"
            },
            "description": {
                "fi": "<p>Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.</p><p>Vuorovaikutuksessa Kim_Twiddlen live-musiikin kanssa esiintyjät maalaavat intiimin muotokuvan suhteestaan seitsemässä luvussa. Tämä persoonallisuuksien cocktail uhmaa stereotypioita ja normatiivisia käsityksiä tarjoamalla yleisölle välähdyksen utopiasta – näkemyksen ihmisten välisestä vuorovaikutuksesta, joka perustuu aidolle kohtaamiselle asettaen etusijalle hellyyden ja rehellisyyden.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia vierailevat taiteilijat käyvät keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 8.11. klo 12 Goethe instituutissa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/scores-that-shaped-our-friendship-2/</p><p>Kesto: 1 tunti<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>",
                "en": "<p>With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality.</p><p>Interacting with live music by Kim_Twiddle, the performers paint an intimate portrait in seven chapters. This cocktail of personalities defies stereotypes and normative perceptions and offers the audience a glimpse of utopia – a vision of human interactions that prioritize tenderness, honesty, and a dedication to authentically relate to one another.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with the invited artists and local host called Soup Talk on the 8th of November at noon in Goethe-Institut.</p><p>Read more: https://movinginnovember.fi/scores-that-shaped-our-friendship/</p><p>Duration: 1 hour<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>"
            },
            "provider_contact_info": null,
            "short_description": {
                "fi": "Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.",
                "en": "With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality."
            },
            "location_extra_info": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}