Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

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

{
    "meta": {
        "count": 27027,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1151",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1149"
    },
    "data": [
        {
            "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": [],
                    "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,
                    "price": {
                        "fi": "37,50 €",
                        "sv": "37,50 €",
                        "en": "37,50 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "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_"
            },
            "provider_contact_info": 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"
            },
            "@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": [],
                    "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,
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "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"
            },
            "provider_contact_info": 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"
            },
            "@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": [],
                    "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,
                    "price": {
                        "fi": "17 €",
                        "sv": "17 €",
                        "en": "17 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "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"
            },
            "provider_contact_info": 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"
            },
            "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/6BE87FB5F8E4248A95DC019E3122669C/Cinema_Laika"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Cinema Laika – Kino Helios"
            },
            "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/helsinki-beatles-weekend-presents-the-seatbelts-live-malmitalo-17755467/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 24 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "short_description": {
                "fi": "The Seatbelts on yksi tämän hetken kuumimpia Beatles-tribuuttiyhtyeitä Suomessa."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C75B70FD05154F24798CEEB9D4FC73F8/Helsinki_Beatles_Weekend_Presents_The_Seatbelts_Live_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Helsinki Beatles Weekend Presents: The Seatbelts Live"
            },
            "@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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F68587B53D9DD80663655B7ACDEA799C/Ihmeiden_aarella_S_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ihmeiden äärellä (S) – Kino Helios"
            },
            "@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": [],
                    "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,
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "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_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Liikkeellä marraskuussa – Bryana Fritz: Submission Submission",
                "en": "Moving in November – Bryana Fritz: Submission Submission"
            },
            "@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": [],
                    "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,
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    }
                }
            ],
            "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,
            "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>"
            },
            "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,
            "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"
            },
            "provider_contact_info": 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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60890/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59804",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3357710",
                        "sv": "https://www.lippu.fi/eventseries/name-3357710",
                        "en": "https://www.lippu.fi/eventseries/name-3357710"
                    },
                    "description": null,
                    "price": {
                        "fi": "47/37/15 €, Premium 67 €",
                        "sv": "47/37/15 €, Premium 67 €",
                        "en": "47/37/15 €, Premium 67 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4527,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:16.430292Z",
                    "last_modified_time": "2023-09-07T14:26:16.430346Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730255.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4527/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:15.459979Z",
            "last_modified_time": "2023-11-14T06:13:36.737335Z",
            "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,
            "description": {
                "fi": "<p>Bosnialaisyhtye Mostar Sevdah Reunionista on muodostunut Balkanilla suoranainen instituutio. Yhtyeen tulkinnat perinteisestä sevdah-musiikista yhdistävät kokonaisen musiikillisen maailman: kuultavissa on vaikutteita niin flamencosta, fadosta ja rebetikasta kuin salsasta, bluesista ja funkistakin.</p><p>Mostar Sevdah Reunionin peruskivi on sevdah. Sen lisäksi että sevdah on perinteinen slaavilaismusiikin genre, se tarkoittaa myös tapaa olla ja elää tunteiden kirjon värittämässä maailmassa. Melankolinen, tuskallinen ja voimakas sevdah-laulu tarjoaa kokemuksen joka saa rinnan läikkymään ja sydämen sykkimään. Musiikki on suurimmilta osin ikivanhaa, usein epätoivoisen surullista, mutta lempeällä myötätunnolla tulkittua.</p><p>Yhtye perustettiin Mostarin kaupungissa Bosnia & Hertsegovinassa. Ryhmä muusikoita tapasi ja soitti kellareissa kynttilänvalossa kaupungin piirityksen aikana 1990-luvun alussa - eräänlaisena protestina tai pikemminkin selviytymisstrategiana. Sodan jälkeen he kokoontuivat yhteen ja kasasivat perinteisen sevdahin ympärille yhtyeen, joka on sittemmin julkaissut yli kymmenen albumia ja esiintynyt ympäri maailmaa.</p><p>Vuosien varrella yhtyeen jäsenistössä on tapahtunut muutoksia, suuret nimet kuten Šaban Bajramović ja Esma Redžepova eivät ole enää elossa, mutta heidän perintönsä on säilynyt ja sitä vaalitaan arvokkuudella. Nykykokoonpanosta kitaristit Sandi Duraković ja Milić Petrović kuuluivat jo alkuperäiseen 90-luvun kokoonpanoon.</p><p>Mostar Sevdah Reunion on upea sekoitus ensiluokkaisia muusikoita ja valtavaa musiikillista monimuotoisuutta. Yhtyeen uusin albumi Lady Sings the Balkan Blues on viihtynyt maailmanmusiikkilista World Music Charts Europen kärkipaikoilla koko alkuvuoden 2023, pitäen myös ykkössijaa hallussaan. Yhtye tarjoaa konsertin aikana isosti soivan elämyksen, joka säilyy mielessä pitkään.</p><p>Konsertti on osa Etnosoi! 2023 -festivaalin ohjelmaa.</p><p>Kokoonpano:<br>Antonija Batinić – laulu<br>Ivan Radoja \"Vanja\" - viulu ja taustalaulu<br>Milić Petrović \"Mišo\" - kitara ja taustalaulu<br>Sandi Duraković - kitara ja taustalaulu<br>Gabrijel Prusina - piano ja koskettimet<br>Marko Jakovljević – basso ja taustalaulu<br>Senad Trnovac – rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>***<br>Savoy WORLD -sarjalipulla koet syksyn tähtihetket edullisemmin!</p><p>Savoy World on Savoy-teatterin tuottama konserttisarja, jossa esitellään monipuolisesti musiikkia eri puolilta maailmaa. Syksyllä 2023 sarjassa mukana ovat meksikolainen laulajatähti Lila Downs, bosnialainen perinnekokoonpano Mostar Sevdah Reunion sekä kevään aikana julkaistava kolmas huippukonsertti.</p><p>Osta nyt Savoy WORLD -sarjalippu hintaan 125 €.</p><p>Sarjalipun konsertit:<br>su 10.9. klo 18.00 Lila Downs (Meksiko) <br>pe 3.11. julkaistaan myöhemmin<br>to 9.11. klo 19.00 Mostar Sevdah Reunion (Bosnia ja Hertsegovina)</p>",
                "sv": "<p>Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.</p><p>Mostar Sevdah Reunions grundsten är sevdah. Sevdah är inte bara en traditionell genre inom slavisk musik, det är också ett sätt att vara och leva i en värld färgad av många känslor. Den melankoliska, lidelsefulla och kraftfulla sevdahsången är en upplevelse som känns i bröstet och får hjärtat att slå. Till största delen är musiken uråldrig, ofta förtvivlat sorglig, men tolkad med vänlig medkänsla.</p><p>Bandet grundades i staden Mostar i Bosnien och Hercegovina. En grupp musiker träffades och spelade i källare, i skenet av levande ljus, under stadens belägring i 1990-talets början – som ett slags protest eller snarare en överlevnadsstrategi. Efter kriget samlades gruppen igen och satte samman ett band kring traditionell sevdah. Sedermera har gruppen gett ut över tio album och uppträtt runtom i världen.</p><p>Under åren har bandmedlemmar bytts ut, de stora namnen som Šaban Bajramović och Esma Redžepova är inte längre vid liv, men deras arv lever kvar och värnas med vördnad. Av den nuvarande sammansättningen var gitarristerna Sandi Duraković och Milić Petrović med redan i originalgruppen från 90-talet.</p><p>Mostar Sevdah Reunion är en fantastisk blandning av förstklassiga musiker och enorm musikalisk mångformighet. Bandets senaste album, Lady Sings the Balkan Blues, har hållit sig högst uppe på världsmusiklistan World Music Charts Europe under hela första halvan av 2023, även på första platsen. På konserten bjuder bandet publiken på en stor musikupplevelse som sent kommer att glömmas.</p><p>Konserten ingår i programmet under festivalen Etnosoi! 2023.</p><p>Sammanställning:<br>Antonija Batinić – sång<br>Ivan Radoja ”Vanja” – fiol, bakgrundssångare<br>Milić Petrović ”Mišo” – gitarr, bakgrundssångare<br>Sandi Duraković – gitarr, bakgrundssångare<br>Gabrijel Prusina – piano, keyboard<br>Marko Jakovljević – bas, bakgrundssångare<br>Senad Trnovac – trummor</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><p>****</p><p>Med seriebiljetten Savoy WORLD upplever du höstens höjdpunkter förmånligare!</p><p>Savoy World är en konsertserie producerad av Savoyteatern som presenterar ett mångsidigt urval av musik från hela världen. Hösten 2023 presenterar serien den mexikanska sångaren Lila Downs, den bosniska traditionella ensemblen Mostar Sevdah Reunion och en tredje toppkonsert som publiceras under våren.</p><p>Köp nu seriebiljetten Savoy WORLD till Blind Bird-priset 125 €</p><p>Konserterna som ingår:</p><p>Lila Downs (Mexiko) sön. 10.9 kl. 18.00</p><p>Den otroligt populära Grammybelönade mexikanska artisten Lila Downs växte upp i två kultursfärer, Minnesota i USA och Oaxaca i Mexiko. Artistens mångkulturella bakgrund hörs i hennes musik som innehåller ekon från mexikanska rancheros, boleron, jazzstandarder, hip hop och nordamerikansk folkmusik. Downs sjunger förutom på spanska och engelska även på flera amerikanska urfolksspråk, såsom zapotekiska, mixtekiska och tarascospråket purépecha. Stjärnan som bland annat uppträtt i Vita huset och på Oscarsgalan ger nu för första gången en konsert i Finland.</p><p>Längd ca 1,5 h, ingen paus.</p><p>Mostar Sevdah Reunion (Bosnien och Hercegovina) tors. 9 november kl. 19.00</p><p>Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.<br>Mostar Sevdah Reunions grundsten är sevdah. Den melankoliska, lidelsefulla och kraftfulla sevdahsången är en upplevelse som känns i bröstet och får hjärtat att slå. Till största delen är musiken uråldrig, ofta förtvivlat sorglig, men tolkad med vänlig medkänsla.</p><p>Längd ca 2 h med paus</p><p>Fre. 3.11 publiceras senare</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>",
                "en": "<p>The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk.</p><p>Sevdah, however, forms the foundation of Mostar Sevdah Reunion’s music. In addition to being a traditional genre of Slavic music, Sevdah also refers to a way of being and living in a world that is rife with all manner of emotions. The painfully melancholy and powerful Sevdah singing provides an experience that is sure to make your heart swell. The music is mostly ancient and often despairingly sad but interpreted through gentle compassion.</p><p>The band was established in the city of Mostar in Bosnia and Herzegovina The group of musicians used to meet up and play in candle-lit basements during the city’s siege in the early 1990s as a form of protest or, more pressingly, a survival strategy. After the war the musicians assembled a band around traditional Sevdah and have since released more than ten albums, performing around the world.</p><p>Over the years, there have been some changes to the line-up as important contributors such as Šaban Bajramović and Esma Redžepova are no longer with us. Still, their legacy has survived and is being cherished with great appreciation.. Of the current members, Sandi Duraković and Milić Petrović were already with the original band in the 1990s.</p><p>Mostar Sevdah Reunion is a wonderful blend of first-rate musicianship and immense musical diversity. The group’s new album Lady Sings the Balkan Blues has been a staple high up on the World Music Charts Europe chart for the early 2023, also staking a claim to the top spot. During the concert, the band will serve up an expansive musical experience that will stay with you for years to come.</p><p>The concert is part of the Etnosoi! 2023 festival programme.</p><p>Ensemble:<br>Antonija Batinić – vocals<br>Ivan Radoja “Vanja” – violin and background vocals<br>Milić Petrović “Mišo” – guitar and background vocals<br>Sandi Duraković – guitar and background vocals<br>Gabrijel Prusina – piano and keyboards<br>Marko Jakovljević – bass and background vocals<br>Senad Trnovac – drums</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><p>****</p><p>The Savoy WORLD season ticket is the most affordable way to experience the highlights of the autumn season!</p><p>Savoy WORLD is a concert series produced by Savoy Theatre, which introduces audiences to a diverse range of music from all over the world. In the autumn of 2023, the concerts will feature the Mexican star songstress Lila Downs, the Bosnian traditional band Mostar Sevdah Reunion and a third incredible act, which will be announced during the spring.</p><p>Buy a Savoy WORLD season ticket now at a Blind Bird price of €125.</p><p>Season ticket concerts:</p><p>Lila Downs (Mexico) Sun 10 September at 6 pm.</p><p>The wildly popular, Grammy award-winning Mexican artist Lila Downs grew up influenced by two cultures in the U.S. state of Minnesota and in the Mexican state of Oaxaca. The multicultural background is clearly present in her music, which features echoes of Mexican rancheras, boleros, jazz standards, hip hop and North American folk. Downs sings her songs in Spanish and English, but also uses a variety of Native American languages, such as Zapotec, Mixtec and Tarascan. The incomparable star who has performed at the White House and the Oscar Gala can now be heard in Finland for the first time.</p><p>Duration approx. 1½ h, no intermission.</p><p>Mostar Sevdah Reunion (Bosnia and Hertsegovina) Thu 9 November, 7 pm</p><p>The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk.<br>Sevdah, however, forms the foundation of Mostar Sevdah Reunion’s music. The painfully melancholy and powerful Sevdah singing provides an experience that is sure to make your heart swell. The music is mostly ancient and often des</p>"
            },
            "short_description": {
                "fi": "Bosnialaisyhtye Mostar Sevdah Reunionista on muodostunut Balkanilla suoranainen instituutio. Yhtyeen tulkinnat perinteisestä sevdah-musiikista yhdistävät kokonaisen musiikillisen maailman: kuultavissa on vaikutteita niin flamencosta, fadosta ja rebetikasta kuin salsasta, bluesista ja funkistakin.",
                "sv": "Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.",
                "en": "The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk."
            },
            "location_extra_info": null,
            "provider": {
                "fi": "Savoy-teatteri",
                "sv": "Savoy-teatern",
                "en": "Savoy Theatre"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnia_ja_Hertsegovina_",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnien_och_Hercegovina_",
                "en": "http://www.savoyteatteri.fi/en/events/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnia_and_Hertsegovina_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Mostar Sevdah Reunion (Bosnia ja Hertsegovina) – Savoy WORLD",
                "sv": "Mostar Sevdah Reunion (Bosnien och Hercegovina) – Savoy WORLD",
                "en": "Mostar Sevdah Reunion (Bosnia and Hertsegovina) – Savoy WORLD"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59804/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59948",
            "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": [],
                    "info_url": {
                        "fi": "https://holvi.com/shop/todellisuus/",
                        "sv": "https://holvi.com/shop/todellisuus/",
                        "en": "https://holvi.com/shop/todellisuus/"
                    },
                    "description": null,
                    "price": {
                        "fi": "15 € / 12 €",
                        "sv": "15 € / 12 €",
                        "en": "15 € / 12 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4526,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:14.728677Z",
                    "last_modified_time": "2023-09-07T14:26:14.728701Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731860.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4526/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:14.383088Z",
            "last_modified_time": "2023-11-14T06:13:36.660664Z",
            "date_published": null,
            "start_time": "2023-11-09T16: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,
            "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>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>Å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>Age limit: not for children under 11 yrs.<br>The performance contains flashing lights and the use of fake blood.</p>"
            },
            "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,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9D428BB70F3697D025D708A812FA356E/Todellisuuden_tutkimuskeskus_Camping",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9D428BB70F3697D025D708A812FA356E/Todellisuuden_tutkimuskeskus_Camping",
                "en": "http://www.kanneltalo.fi/en/events/event/9D428BB70F3697D025D708A812FA356E/Reality_Research_Center_Camping"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Todellisuuden tutkimuskeskus: Camping",
                "sv": "Todellisuuden tutkimuskeskus: Camping",
                "en": "Reality Research Center: Camping"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59948/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59924",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4525,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:14.119583Z",
                    "last_modified_time": "2023-09-07T14:26:14.119605Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731300.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4525/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:26:13.972846Z",
            "last_modified_time": "2023-11-14T06:13:36.586461Z",
            "date_published": null,
            "start_time": "2023-11-09T11: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,
            "description": {
                "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>",
                "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>",
                "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix.  <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>"
            },
            "short_description": {
                "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.",
                "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales",
                "en": "http://www.annantalo.fi/en/events/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Unfinished Tales",
                "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse",
                "en": "Unfinished Tales"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59924/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:59921",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4523,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:13.235744Z",
                    "last_modified_time": "2023-09-07T14:26:13.235765Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731299.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4523/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:26:12.056281Z",
            "last_modified_time": "2023-11-14T06:13:36.507163Z",
            "date_published": null,
            "start_time": "2023-11-09T08: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,
            "description": {
                "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>",
                "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>",
                "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix.  <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>"
            },
            "short_description": {
                "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.",
                "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales",
                "en": "http://www.annantalo.fi/en/events/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Unfinished Tales",
                "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse",
                "en": "Unfinished Tales"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59921/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60474",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4524,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:13.730792Z",
                    "last_modified_time": "2023-09-07T14:26:13.730811Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725261.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4524/?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:13.572471Z",
            "last_modified_time": "2023-11-14T06:13:36.430610Z",
            "date_published": null,
            "start_time": "2023-11-09T08:00:00Z",
            "end_time": "2023-11-09T10: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,
            "description": {
                "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "short_description": {
                "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers",
                "sv": "http://www.caisa.fi/sv/evenemang/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_",
                "en": "http://www.caisa.fi/en/events/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Taidetta taaperoille – Open Art Studio for Toddlers",
                "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (",
                "en": "Taidetta taaperoille – Open Art Studio for Toddlers"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60474/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60163",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3412855"
                    },
                    "description": null,
                    "price": {
                        "fi": "29,50/22,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4522,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:10.834284Z",
                    "last_modified_time": "2023-09-07T14:26:10.834304Z",
                    "name": "",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730720.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4522/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:10.265786Z",
            "last_modified_time": "2023-11-14T06:13:36.360695Z",
            "date_published": null,
            "start_time": "2023-11-08T17: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,
            "description": {
                "fi": "<p>Marraskuinen ilta saa kimaltavan hunnun, kun Ladies First Big Band valtaa legendaarisen Savoy-teatterin paljetit säihkyen ja glitterit pölisten. Komeaa 30-vuotista taivaltaan juhlistava orkesteri tuo koko 22-henkisen kokoonpanonsa lisäksi lavalle kattauksen solistivieraita, jotka ovat myös vuosien varrella esiintyneet Ladies Firstin riveissä. Juhlakonsertissa koetaan nostalgisia hetkiä, kuullaan upeita sooloja sekä parhaita paloja vuosien varrelta ja juhlistetaan nykyhetkeä mehevän bilesetin tahtiin. Tervetuloa juhlimaan kanssamme!</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>"
            },
            "short_description": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Rytmihäiriköt ry"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F425F25BCDD33BBA81287536ED223B92/Ladies_First_Big_Band_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ladies First Big Band – 30 vuotta yhtä juhlaa!"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60163/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60889",
            "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": [],
                    "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,
                    "price": {
                        "fi": "17,50 € / 33,50 €",
                        "en": "17,50 € / 33,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5213,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-09T13:31:45.785632Z",
                    "last_modified_time": "2023-10-09T13:31:45.785653Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735806.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5213/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-09T13:31:44.501269Z",
            "last_modified_time": "2023-11-14T06:13:36.289263Z",
            "date_published": null,
            "start_time": "2023-11-08T17:00:00Z",
            "end_time": "2023-11-08T18: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,
            "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>"
            },
            "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,
            "provider": null,
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/6C9043D05A7AA17F0BB0D58E1A6F3B80/Liikkeella_marraskuussa_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP",
                "en": "http://www.stoa.fi/en/events/event/6C9043D05A7AA17F0BB0D58E1A6F3B80/Moving_in_November_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP"
            },
            "provider_contact_info": 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"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60889/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61120",
            "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": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "8 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5334,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-10T13:31:13.896003Z",
                    "last_modified_time": "2023-10-10T13:31:13.896022Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737936.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5334/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-10T13:31:12.597192Z",
            "last_modified_time": "2023-11-14T06:13:36.215649Z",
            "date_published": null,
            "start_time": "2023-11-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "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>"
            },
            "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,
            "provider": null,
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C2CAA044C7883F30F23736EF4D133101/Ihmeiden_aarella_S_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Ihmeiden äärellä (S) – Kino Helios"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61120/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:61138",
            "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:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 5451,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-10-12T13:58:28.350829Z",
                    "last_modified_time": "2023-10-12T13:58:28.350849Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733539.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5451/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-10-12T13:58:28.216592Z",
            "last_modified_time": "2023-11-14T06:13:36.141831Z",
            "date_published": null,
            "start_time": "2023-11-08T16:00:00Z",
            "end_time": "2023-11-08T18: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,
            "description": {
                "fi": "<p>Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.</p><p>Hän sai ainutlaatuisen tilaisuuden seurata tiiviisti kuningas Kaarle XVI Kustaata hänen elämässään ja työssään. Kuvaukset alkoivat viime keväänä ja sen jälkeen tapaamisia on ollut useita. Joskus etäältä virallisemmissa tilaisuuksissa, kuten virkaanastujaisissa ja valtiovierailuissa. Joskus kasvokkain Tukhoman linnassa tai Sollidenin puistossa kuninkaan kesäasunnossa Öölannissa. Keskustelut koskevat kaikkea lapsuudesta kuninkaallisen elämän ylä- ja alamäkiin.</p><p>Dokumentti on ensimmäinen Ruotsin kuninkaasta tämän elinaikana kuvattu dokumentti. Kuninkaan isoisä Kustaa VI Adolf ja isoisän isä Kustaa V eivät antaneet haastatteluja.</p><p>Maa: Ruotsi 2023<br>Ohjaaja: Karin af Klintberg<br>Kesto: 1 t 38 min.<br>Kieli: ruotsi<br>Tekstitys: suomi<br>Ikäraja: S</p><p>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>",
                "sv": "<p>Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.</p><p>En unik möjlighet att på nära håll få följa kung Carl XVI Gustaf i hans liv och arbete.</p><p>Det är första gången i historien som det pågår en dokumentärfilmsinspelning om och med en kung medan han fortfarande lever. Kungens farfar Gustaf VI Adolf och farfars far Gustaf V gav inte intervjuer.</p><p>Land: Sverige 2023<br>Regissör: Karin af Klintberg<br>Medverkande: Carl XVI Gustaf<br>Längd: 1 h 38 min.<br>Språk: svenska<br>Text: finska<br>Barntillåten<br>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>",
                "en": "<p>The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime.</p><p>Sweden 2023<br>Director: Karin af Klintberg<br>Duration: 1 h 38 min<br>Language: Swedish<br>Subtitles: Finnish</p><p>For all ages, free entry.</p>"
            },
            "short_description": {
                "fi": "Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.",
                "sv": "Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.",
                "en": "The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen",
                "en": "http://www.vuotalo.fi/en/events/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Onsdagsbio: Kungen",
                "sv": "Onsdagsbio: Kungen",
                "en": "Onsdagsbio: Kungen"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61138/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60650",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV",
                        "sv": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV",
                        "en": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV"
                    },
                    "description": null,
                    "price": {
                        "fi": "24,50 € / 17 €",
                        "sv": "24,50 € / 17 €",
                        "en": "24,50 € / 17 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4521,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:09.903902Z",
                    "last_modified_time": "2023-09-07T14:26:09.903923Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730532.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4521/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:09.757837Z",
            "last_modified_time": "2023-11-14T06:13:36.065519Z",
            "date_published": null,
            "start_time": "2023-11-08T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.</p><p>Lukuisten sooloalbumiensa lisäksi hän on vaikuttanut pitkän uransa aikana mm. Boycott-yhtyeessä ja tehnyt kappaleita myös muille artisteille. Läntisen suurimpiin hitteihin lukeutuvat esimerkiksi Via Dolorosa, Kevät ja minä, Rööperin kuu, Syvälle sydämeen sattuu, Satelliitti, Villi ja vapaa, Se on rock sekä monta muuta.</p><p>Läntinen osallistui vuonna 2022 Uuden Musiikin Kilpailuun kappaleellaan ”Elämä kantaa mua”, minkä lisäksi saman vuoden helmikuussa ilmestyi samanniminen albumi. Läntinen nähtiin mukana myös syksyn 2022 Vain Elämää -ohjelmassa.</p><p>Esityksen kesto n. 1 t 30 min. sisältäen väliajan.</p>",
                "sv": "<p>Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.</p>",
                "en": "<p>Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years.</p>"
            },
            "short_description": {
                "fi": "Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.",
                "sv": "Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.",
                "en": "Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years."
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio",
                "en": "http://www.kanneltalo.fi/en/events/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Tommi Läntinen Trio",
                "sv": "Tommi Läntinen Trio",
                "en": "Tommi Läntinen Trio"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60650/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60680",
            "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:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4520,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:09.527910Z",
                    "last_modified_time": "2023-09-07T14:26:09.527931Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735268.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4520/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api"
                }
            ],
            "created_time": "2023-09-07T14:26:09.380305Z",
            "last_modified_time": "2023-11-14T06:13:35.985796Z",
            "date_published": null,
            "start_time": "2023-11-08T15:00:00Z",
            "end_time": "2023-11-08T17: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,
            "description": {
                "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br>  <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii.  <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br>  <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi  <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>",
                "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig.  <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>",
                "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br>  <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>"
            },
            "short_description": {
                "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?",
                "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?",
                "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_",
                "en": "http://www.vuotalo.fi/en/events/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "Sanapaja / Wordshop",
                "sv": "Sanapaja / Wordshop",
                "en": "Sanapaja / Wordshop"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60680/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:60050",
            "has_user_editable_resources": false,
            "location": null,
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u4804001050",
            "sub_events": [],
            "images": [
                {
                    "id": 4519,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2023-09-07T14:26:09.158830Z",
                    "last_modified_time": "2023-09-07T14:26:09.158862Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732348.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u4804001050",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4519/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2023-09-07T14:26:08.950225Z",
            "last_modified_time": "2023-11-14T06:13:35.910967Z",
            "date_published": null,
            "start_time": "2023-11-08T13:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "description": {
                "fi": "<p>Tarinankerrontaa – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) on yhden hengen duo: aivan omanlaisensa lauluntekijä ja balladilaulaja, joka punoo yhteen ainutlaatuisen sekoituksen eeppistä runoutta, tarinankerrontaa, alkuperäistä musiikkia ja kansanlauluja eri puolilta maailmaa.</p><p>Kesto: 60 min</p>",
                "sv": "<p>Berättelser – Juniper and the Wolf</p><p><b>Juniper and the Wolf</b> (även <b>Genevieve Andersen</b>) är en duo i en person; en enastående låtskrivare och balladsångare, som väver samman en egen unik blandning av episk poesi, berättande, originalmusik och folksånger från hela världen.</p><p>Längd: 60 min</p>",
                "en": "<p>Storytelling – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) is a duo of one; a one-of-a-kind songwriter and ballad singer, weaving together her own unique blend of epic poetry, storytelling, original music, and folk songs from around the world.</p><p>Hailing from the USA, Genevieve has traveled extensively throughout Europe, the US, and Canada, collecting songs and stories from various countries and cultures.</p><p>With performances that encompass a multitude of eras and languages—and shows that are equally known for spellbound silences as they are for joyously singing crowds—Juniper & The Wolf will leave you quietly transformed; ready to escape unto the wilds, forge a new world empire, or delve into the heart of a fascinating story.</p><p>Duration: 60 min</p>"
            },
            "short_description": {
                "fi": "Tarinankerrontaa – Juniper and the Wolf",
                "sv": "Berättelser – Juniper and the Wolf",
                "en": "Storytelling – Juniper and the Wolf"
            },
            "location_extra_info": null,
            "provider": null,
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights",
                "sv": "http://www.caisa.fi/sv/evenemang/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights",
                "en": "http://www.caisa.fi/en/events/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights"
            },
            "provider_contact_info": null,
            "name": {
                "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves",
                "sv": "HOW-radio | Global Club Nights – Helsinki Open Waves",
                "en": "HOW-radio | Global Club Nights – Helsinki Open Waves"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60050/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}