Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

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

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

The search covers the following fields with weighted priorities:

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

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

Examples:

event/?full_text=musiikki

See the result

event/?full_text=music&full_text_language=en

See the result

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

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

For example:

event/?sort=-end_time

See the result

Enrolment start and enrolment end

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

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

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

GET /v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=698
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 32045,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=699",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?enrolment_open_on=2024-02-19T12%3A00%3A00&format=api&page=697"
    },
    "data": [
        {
            "id": "kulke:64315",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/",
                        "sv": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/",
                        "en": "https://www.lippu.fi/event/global-club-nights-kulttuurikeskus-caisa-18805296/"
                    },
                    "description": null,
                    "price": {
                        "fi": "6 €",
                        "sv": "6 €",
                        "en": "6 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151962,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T09:13:56.802408Z",
                    "last_modified_time": "2024-07-30T09:13:56.802421Z",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751577.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151962/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T09:13:56.787731Z",
            "last_modified_time": "2024-08-29T05:13:35.453217Z",
            "date_published": null,
            "start_time": "2024-10-19T10:00:00Z",
            "end_time": "2024-10-19T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.",
                "sv": "Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.",
                "en": "The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future",
                "sv": "http://www.caisa.fi/sv/evenemang/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future",
                "en": "http://www.caisa.fi/en/events/event/CDE9DBCF2EC1B05346795CF8D9FBED4C/Back_2_The_Future"
            },
            "description": {
                "fi": "<p>Back 2 The Future -konsertti käy läpi samplepohjaisen musiikin historian soul- ja funk-musiikin kultakaudesta hip hopin ja housen kautta elektroniseen rytmimusiikkiin.</p><p>Back 2 The Future -konsertissa matka alkaa 70-luvun New Yorkista ja päättyy 80-luvun Chicagon ja vuosituhannen vaihteen Pariisin kautta tulevaisuuteen! Tässä musiikin, tanssin, laulun, tarinankerronnan, rapin ja improvisoinnin (eli freestylen) hulluttelussa yleisö pääsee osallistumaan konsertin ja hyppimään rytmin tahtiin.</p><p>Konsertissa esiintyy ryhmä palkittuja, monissa liemissä keitettyjä esiintyjiä, tanssin ja musiikin huippunimiä Suomessa sekä pitkän linjan hiphop-pedagogeja, joten yleisö on varmasti turvallisissa ja osaavissa käsissä.</p><p>Simeoni Juoperi – tanssi, rap <br>Elias Niskanen – tanssi, esitystaide<br>Linda Ilves – laulu, tanssi, looper<br>Joose Kyyrö – saksofoni <br>Arttu Rintakumpu – sampleri, levysoittimet, tanssi, rap</p><p>Kesto: 45 min<br>Ikä: kaiken ikäisille<br>Kieli: englanti, suomi</p><p>Global Club Nights on tuotettu yhteistyössä Sibelius-Akatemian globaalin musiikin osaston ja kulttuurikeskus Caisan kanssa. Global Club Nights (GCN) on klubisarja, jossa musiikin parissa työskentelevät sekä sitä rakastavat ihmiset kokoontuvat juhlistamaan musiikkia yhdessä.</p><p>Klubien tavoitteena on turvallisen, osallistavan ja luovan ympäristön luominen. Elävän musiikin, radio-ohjelmien, seminaarien ja työpajojen avulla tapahtumat pyrkivät rakentamaan siltoja kaikkien musiikin ystävien ja heidän yhteisöjensä välille.</p>",
                "sv": "<p>Konserten Back 2 The Future skildrar den samplingsbaserade musikens historia från soul- och funkmusikens guldålder via hiphop och house till elektronisk rytmmusik.</p><p>Resan börjar i New York på 70-talet och går via 80-talets Chicago och millennieskiftets Paris och slutar i framtiden!</p><p>I denna galna blandning av musik, dans, sång, historieberättande, rap och improvisation (det vill säga freestyle) får publiken delta i konserten och hoppa i takt till rytmen.</p><p>På konserten framträder en grupp prisbelönta och mycket erfarna artister, toppnamn inom den finländska dansen och musiken och erfarna hiphop-pedagoger. Därmed är publiken är i trygga och skickliga händer.</p><p>Simeoni Juoperi – dans, rap <br>Elias Niskanen – dans, scenkonst<br>Linda Ilves – sång, dans, looper<br>Joose Kyyrö – saxofon <br>Arttu Rintakumpu – sampler, skivspelare, dans, rap</p><p>Längd: 45 min.<br>Ålder: alla åldrar<br>Språk: engelska, finska</p><p>Global Club Nights har producerats genom samarbete mellan Sibelius-Akademins avdelning för global musik och kulturcentret Caisa. Global Club Nights (GCN) är en klubbserie där människor som arbetar med och älskar musik samlas för att fira musiken tillsammans. Klubbarna strävar efter att skapa en trygg, inkluderande och kreativ miljö. Genom livemusik, radioprogram, seminarier och workshoppar har evenemangen som mål att bygga broar mellan alla musikälskare och deras gemenskaper.</p>",
                "en": "<p>The concert goes through the history of sample-based music from the golden age of soul and funk music through hip hop and house to electronic rhythm music.</p><p>The journey starts in New York of the 70s and ends in the future through Chicago of the 80s and Paris at the turn of the millennium!</p><p>In this madhouse of live music, dancing, singing, storytelling, rapping and improvisation (i.e. freestyle), the audience gets to participate in the course of the concert and jump to the beat.</p><p>The group consists of award-winning performers cooked in many broths, top names in dance and music in Finland and long-time hip-hop pedagogues, so the audience is certainly in safe and competent hands.</p><p>Simeoni Juoperi – dance, rap <br>Elias Niskanen – dance, performance art<br>Linda Ilves – song, dance, looper<br>Joose Kyyrö – saxophone <br>Arttu Rintakumpu – sampler, turntables, dance, rap</p><p>Duration: 45 min<br>Age: For all ages<br>Language: English, Finnish</p>"
            },
            "name": {
                "fi": "Back 2 The Future – Global Club lapsille",
                "sv": "Back 2 The Future – Global Club för barn",
                "en": "Back 2 The Future – Global Club for kids – Family Concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64315/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64375",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?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: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: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:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152078,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-12T13:14:43.128498Z",
                    "last_modified_time": "2024-08-12T13:14:43.128517Z",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756002.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152078/?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": "2024-08-12T13:14:43.105728Z",
            "last_modified_time": "2024-08-29T05:13:35.253138Z",
            "date_published": null,
            "start_time": "2024-10-18T14:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/86044483E0E2393847198555165DEA27/Kipina_x_Stoa"
            },
            "description": {
                "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa syksyllä 2024!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilta https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>"
            },
            "name": {
                "fi": "Kipinä x Stoa"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64375/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64331",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151996,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:56.223911Z",
                    "last_modified_time": "2024-07-30T16:15:56.223932Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751771.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151996/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:56.196369Z",
            "last_modified_time": "2024-08-29T05:13:35.145057Z",
            "date_published": null,
            "start_time": "2024-10-18T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).",
                "sv": "Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.",
                "en": "Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Kaunotar_ja_Kulkuri_S_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5BE8C127A68FFB88C13C205CE32EF6D7/Satukino_Lady_och_Lufsen_S_",
                "en": "http://www.annantalo.fi/en/events/event/5BE8C127A68FFB88C13C205CE32EF6D7/Fairy_tale_theatre_Satukino_Beauty_and_the_Tramp_S_"
            },
            "description": {
                "fi": "<p>Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan perjantaina elokuva Kaunotar ja Kulkuri (1955).</p><p>Kaunotar ja Kulkuri on Disney-animaatioelokuva, joka kertoo rakastetun tarinan ylhäisestä Belle-koirasta ja Kulkurista, hurmaavasta, vapaasta kulkukoirasta. Eräänä päivänä itsensä ulkopuoliseksi tunteva Belle tapaa Kulkurin, joka auttaa häntä pakenemaan kaupungin kurjuutta ja tylsyyttä.</p><p>Kaunotar ja Kulkuri on klassikkoelokuva, joka on lumonnut katsojiaan vuosikymmenten ajan tarinallaan rakkaudesta, seikkailuista ja elämän pienistä iloista. Elokuvassa korostetaan ennakkoluulojen voittamista ja erilaisten maailmojen yhdistämistä. Se jättää katsojan miettimään, miten pienet hetket voivat muuttaa elämän suunnan.</p><p>Hahmot puhuvat suomea. Tekstitys englanniksi. Kaikenikäisille</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu noin 50 katsojaa.</p><p>Elokuvan kesto: 76 min<br>Ikäsuositus: S<br>Kieli: Suomi, englanti</p>",
                "sv": "<p>Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där filmen Lady och Lufsen (1955) visas på fredag.</p><p>Lady och Lufsen är en animerad Disney-film som berättar den älskade historien om den ädla hunden Lady och den charmiga herrelösa hunden Lufsen. Lady, som ofta känner sig utanför, träffar en dag Lufsen som hjälper henne att fly stadens elände och tristess.</p><p>Lady och Lufsen är en filmklassiker som har fängslat publiken i årtionden med sin berättelse om kärlek, äventyr och livets små nöjen. Filmen betonar vikten av att övervinna fördomar och föra samman olika världar. Åskådarna får begrunda hur livets riktning kan förändras av små ögonblick.</p><p>Karaktärerna talar finska. Textning på engelska. För alla åldrar</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för cirka 70 personer att se filmerna.</p><p>Filmens längd: 76 minuter<br>Åldersrekommendation: S<br>Språk: Finska, engelska</p>",
                "en": "<p>Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Beauty and the Tramp (1955) will be screened on Friday.</p><p>Beauty and the Tramp is a Disney animated film that tells the beloved story of the noble dog, Belle, and the Tramp, a charming, free-spirited stray. One day, feeling like an outsider, Belle meets Tramp, who helps her escape the misery and boredom of the city.</p><p>Beauty and the Tramp is a classic film that has enchanted its viewers for decades with its story about love, adventure and the little joys of life. The film focuses on overcoming prejudices and connecting different worlds. It leaves the viewer wondering how small moments can change the direction your life.</p><p>The characters speak Finnish. English subtitles. For all ages</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 70 spectators.</p><p>Movie duration: 76min<br>Age recommendation: All ages<br>Language: Finnish, English</p>"
            },
            "name": {
                "fi": "Satukino | Kaunotar ja Kulkuri (S) – Satumainen syysloma",
                "sv": "Satukino | Lady och Lufsen (S) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Beauty and the Tramp (S) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64331/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64252",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/",
                        "sv": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/",
                        "en": "https://www.lippu.fi/event/klubi-ilta-the-mystery-wires-markku-veijalainen-vuotalo-18901386/"
                    },
                    "description": null,
                    "price": {
                        "fi": "28,90 €",
                        "sv": "28,90 €",
                        "en": "28,90 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151821,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.810653Z",
                    "last_modified_time": "2024-07-24T14:14:55.810667Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749380.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151821/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T14:14:55.784114Z",
            "last_modified_time": "2024-08-29T05:13:34.918906Z",
            "date_published": null,
            "start_time": "2024-10-17T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.",
                "sv": "Kvällens konferencier Mape tar med publiken till 1960-talets ungdomsmusikscen tillsammans med Back To The Sixties-legender.",
                "en": "Mape, the host of the evening, takes audiences into the mood of 1960s youth music along with Back To The Sixties legends."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires_-konsertti",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires-konsert",
                "en": "http://www.vuotalo.fi/en/events/event/9B2C4620289C189FF001019915EC4BC2/Mystery_Wires_Concert"
            },
            "description": {
                "fi": "<p>Illan juontaja Mape vie yleisön 1960-luvun nuorisomusiikin tunnelmiin yhdessä Back To The Sixties -legendojen kanssa.</p><p>Luvassa rautalankaklassikoita ja nuorisoelokuvamusiikkia Cliff & The Shadows -tyyliin.</p><p>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. <br>Alle 18 v. aikuisen seurassa.<br>Sali avautuu klo 17.30.<br>Kesto: 2 t</p>",
                "sv": "<p>Kvällens konferencier Mape tar med publiken till 1960-talets ungdomsmusikscen tillsammans med Back To The Sixties-legender.</p><p>Ståltrådsklassiker och musik från ungdomsfilmer i Cliff & The Shadows-stil utlovas.</p><p>Klubbkväll: Café Pokkari svarar för serveringen, A-rättigheter. <br>Under 18-åringar i sällskap av en vuxen.<br>Salen öppnar kl. 17.30.<br>Längd: 2 h</p>",
                "en": "<p>Mape, the host of the evening, takes audiences into the mood of 1960s youth music along with Back To The Sixties legends.</p><p>Rautalanka classics and youth movie music in the style of Cliff & The Shadows.</p><p>Club night: Café Pokkari with full alcohol service. <br>Minors must be accompanied by an adult.<br>The hall opens at 5:30 pm.<br>Duration: 2 hours</p>"
            },
            "name": {
                "fi": "Mystery Wires -konsertti",
                "sv": "Mystery Wires-konsert",
                "en": "Mystery Wires Concert"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64252/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64330",
            "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:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151995,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T16:15:55.679342Z",
                    "last_modified_time": "2024-07-30T16:15:55.679361Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751769.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151995/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-30T16:15:55.651565Z",
            "last_modified_time": "2024-08-29T05:13:34.789979Z",
            "date_published": null,
            "start_time": "2024-10-17T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan torstaina Disney-elokuva Robin Hood (1973).",
                "sv": "Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där Disney-filmen Robin Hood (1973) visas på torsdag.",
                "en": "Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Robin Hood (1973) will be screened on Thursday."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/63D1455C84F568DB3061E96DC3951D3F/Satukino_Robin_Hood_S_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/63D1455C84F568DB3061E96DC3951D3F/Satukino_Robin_Hood_S_",
                "en": "http://www.annantalo.fi/en/events/event/63D1455C84F568DB3061E96DC3951D3F/Fairy_tale_theatre_Satukino_Robin_Hood_S_"
            },
            "description": {
                "fi": "<p>Klassikkoelokuvia kahvilatilassa! Syyslomaviikon elokuvateatteri Satukino siirtyy loppuviikosta Annantalon kahvilatilaan, jossa katsotaan torstaina Disney-elokuva Robin Hood (1973).</p><p>Robin Hood on oikeudenmukaisuuden puolestapuhuja ja kansan sankari, joka ottaa rikkailta ja antaa köyhille. Tässä rakastetussa klassikossa Robin Hoodin legendaariset seikkailut heräävät henkiin, kun Robin, Pikku-John ja Munkki Tuck aiheuttavat päänvaivaa ahneelle prinssi Juhanalle ja Nottinghamin sheriffille. Kyseessä on riemastuttava ja jännittävä koko perheen elokuvaelämys!</p><p>Hahmot puhuvat suomea. Tekstitys englanniksi. Kaikenikäisille.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuvaan mahtuu noin 50 katsojaa.</p><p>Elokuvan kesto: 79 min<br>Ikäsuositus: S<br>Kieli: Suomi, englanti</p>",
                "sv": "<p>Filmklassiker i caféutrymmet! I slutet av höstlovsveckan flyttar Satukino till Annegårdens caféutrymme, där Disney-filmen Robin Hood (1973) visas på torsdag.</p><p>Robin Hood är en rättvisans förkämpe och folkhjälte som tar från de rika och ger till de fattiga. I denna älskade klassiker vaknar Robin Hoods legendariska äventyr till liv när Robin, Lille John och Broder Tuck orsakar den girige prins John och sheriffen av Nottingham huvudbry. Det är en sprittande rolig och spännande filmupplevelse för hela familjen!</p><p>Karaktärerna talar finska. Textning på engelska. För alla åldrar.</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för cirka 70 personer att se filmerna.</p><p>Filmens längd: 79 minuter<br>Åldersrekommendation: S<br>Språk: Finska, engelska</p>",
                "en": "<p>Classic movies at the café! Later in during the autumn holiday week, Satukino will move to the café area at Annantalo, where the Disney film Robin Hood (1973) will be screened on Thursday.</p><p>Robin Hood is an advocate of justice and a hero of the people, who takes from the rich and gives to the poor. In this beloved classic, Robin Hood's legendary adventures come to life as Robin, Little John and Friar Tuck inflict headaches on the greedy Prince John and the Sheriff of Nottingham. It's an exhilarating and exciting movie experience for the whole family!</p><p>The characters speak Finnish. English subtitles. For all ages.</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 70 spectators.</p><p>Movie duration: 79min<br>Age recommendation: All ages<br>Language: Finnish, English</p>"
            },
            "name": {
                "fi": "Satukino | Robin Hood (S) – Satumainen syysloma",
                "sv": "Satukino | Robin Hood (S) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Robin Hood (S) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64330/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64290",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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/kulke:752/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151874,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.690653Z",
                    "last_modified_time": "2024-07-25T15:15:01.690668Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751041.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151874/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.661484Z",
            "last_modified_time": "2024-08-29T05:13:34.629813Z",
            "date_published": null,
            "start_time": "2024-10-17T08:00:00Z",
            "end_time": "2024-10-17T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.",
                "sv": "Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.",
                "en": "Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C37DB1768A1FCAC19E90D9B44497EA30/Sienia_sateella_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/C37DB1768A1FCAC19E90D9B44497EA30/Workshop_svampar_i_regn_",
                "en": "http://www.malmitalo.fi/en/events/event/C37DB1768A1FCAC19E90D9B44497EA30/Mushrooms_in_the_Rain_workshop_"
            },
            "description": {
                "fi": "<p>Plop plop plop - putkahtelee kuin sieniä sateella! Askartele työpajassa oma pieni sieni.</p><p>Värikkäässä sienimetsässä kasvavat mielikuvitukselliset hattupäät ja ihan tavalliset tatit. Asuuko sienessä joku? Mahdatko tunnistaa kaikki mielikuvitukselliset sienilajit? Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.<br> <br>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Plopp plopp plopp – de ploppar upp som svampar i regn! Pyssla en egen liten svamp i workshoppen.</p><p>I den färgglada svampskogen växer fantasifulla hatthuvuden och helt vanliga soppar. Bor det någon i svampen? Känner du igen alla de fantasifulla svamparterna? Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.<br> <br>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>Plop plop plop - pops up like mushrooms in the rain! Craft your own small shroom in the workshop.</p><p>Imaginary hat heads and simple boletes grow in a colourful mushroom forest. Does anyone live in the mushroom? Can you identify all the imaginative mushrooms? Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.<br> <br>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Sieniä sateella -työpaja – Nonstop",
                "sv": "Workshop – svampar i regn – Nonstop",
                "en": "Mushrooms in the Rain workshop – Nonstop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64290/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64251",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151819,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.500961Z",
                    "last_modified_time": "2024-07-24T14:14:55.500981Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755070.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151819/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-24T14:14:55.474135Z",
            "last_modified_time": "2024-08-29T05:13:34.521129Z",
            "date_published": null,
            "start_time": "2024-10-16T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.",
                "sv": "En ung Mahito-pojke saknar sin mamma och ger sig av för att leta efter henne i en gränsvärld mellan levande och döda.",
                "en": "Mahito, a young boy misses his mother and ends up looking for her in a world between the living and the dead."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CD3E52AB66F4A9172317EEC9B72D33B5/Poika_ja_Haikara_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CD3E52AB66F4A9172317EEC9B72D33B5/Pojken_och_hagern_12_",
                "en": "http://www.vuotalo.fi/en/events/event/CD3E52AB66F4A9172317EEC9B72D33B5/The_Boy_and_the_Heron_12_"
            },
            "description": {
                "fi": "<p>Nuori Mahito-poika kaipaa äitiään ja päätyy etsimään tätä elävien sekä kuolleiden jakamasta rajamaailmasta.</p><p>Siellä kuolema päättyy ja uusi elämä voi alkaa. Poika ja haikara on Hayao Miyazakin osin omaelämäkerrallinen fantasia elämästä ja kuolemasta, tarina luomisesta sekä ystävyyden merkityksestä. Elokuva on myös Miyazakin ensimmäinen pitkä elokuva kymmeneen vuoteen. Sen on tuottanut Studio Ghiblin alkuperäinen perustajajäsen Toshio Suzuki. Käsin piirretyn elokuvan musiikin on luonut Miyazakin pitkäaikainen vakiosäveltäjä Joe Hisaishi. Tunnusmelodian esittää J-Pop -supertähti Kenshi Yonezu.</p><p>Kesto: 124 min<br>Ikäraja: 12<br>Kieli: japani, tekstitys suomeksi<br>Hayao Miyazaki, 2023</p><p>Vapaa sisäänpääsy!</p>",
                "sv": "<p>En ung Mahito-pojke saknar sin mamma och ger sig av för att leta efter henne i en gränsvärld mellan levande och döda.</p><p>Där tar döden slut och ett nytt liv kan börja. Pojken och hägern är Hayao Miyazakis delvis självbiografiska fantasi om liv och död, en berättelse om skapande och betydelsen av vänskap. Filmen är också Miyazakis första långfilm på tio år. Den har producerats av Toshio Suzuki, en av Studio Ghiblis ursprungliga grundande medlemmar. Musiken till den handritade filmen har komponerats av Miyazakis långvariga kompositör, Joe Hisaishi. Signaturmelodin framförs av J-Pop-superstjärnan Kenshi Yonezu.</p>",
                "en": "<p>Mahito, a young boy misses his mother and ends up looking for her in a world between the living and the dead.</p><p>That is where death ends and a new life can begin. The Boy and the Heron is Hayao Miyazaki's autobiographical fantasy about life and death, a story about creation and the meaning of friendship. The film is also Miyazaki's first feature film in ten years. It was produced by Toshio Suzuki, one of the founding members of Studio Ghibli. The music for the hand-drawn film was created by longtime Miyazaki composer Joe Hisaishi. The theme song is performed by J-Pop superstar Kenshi Yonezu.</p>"
            },
            "name": {
                "fi": "Poika ja Haikara (12) – Syysloman Miyazaki-elokuvia",
                "sv": "Pojken och hägern (12) – Miyazaki-filmer på höstlovet",
                "en": "The Boy and the Heron (12) – Miyazaki movies for the autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64251/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64250",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151817,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T14:14:55.155472Z",
                    "last_modified_time": "2024-07-24T14:14:55.155496Z",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751195.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151817/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-24T14:14:55.125673Z",
            "last_modified_time": "2024-08-29T05:13:34.443384Z",
            "date_published": null,
            "start_time": "2024-10-16T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Hattukaupan tyttö kohtaa sattumalta kaunottaria viettelevän turhamaisen velhon nimeltä Hauru. Nuori neito joutuu kateellisen Turhamaisuuden noidan loihtimana kokemaan, millaista on elää 90-vuotiaana.",
                "sv": "Av en slump träffar hattaffärens flicka en fåfäng trollkarl vid namn Hauru, som förför skönheter. Förtrollad av den svartsjuka Ödeshäxan tvingas den unga kvinnan uppleva hur det är att leva som 90-åring.",
                "en": "A hat shop girl accidentally encounters a vain wizard named Howl, who seduces beautiful women. A young lady, enchanted by the envious Witch of Vanity, is forced to experience what it is like to live to the age of 90."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EEC679F9A9BE04D2E6C963E538CC7F78/Liikkuva_linna_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EEC679F9A9BE04D2E6C963E538CC7F78/Det_levande_slottet_7_",
                "en": "http://www.vuotalo.fi/en/events/event/EEC679F9A9BE04D2E6C963E538CC7F78/Howl_s_Moving_Castle_7_"
            },
            "description": {
                "fi": "<p>Hattukaupan tyttö kohtaa sattumalta kaunottaria viettelevän turhamaisen velhon nimeltä Hauru. Nuori neito joutuu kateellisen Turhamaisuuden noidan loihtimana kokemaan, millaista on elää 90-vuotiaana.</p><p>Sophie jättää entisen elämänsä ja päätyy taloudenhoitajaksi Haurun Liikkuvaan linnaan. Sophie salaa oikean henkilöllisyytensä Haurulta ja ystävystyy linnan muiden asukkaiden kanssa. Tunteiden noustessa pintaan Sophien todellinen ikä kurkistaa esiin vaikka kesken lauseen.</p><p>Hayao Miyazakin maailmassa päähenkilön ikä voi muuttua jopa saman kohtauksen aikana. Tämä upea elokuva viettää jo 20-vuotisjuhlaansa!</p><p>Kesto: 119 min<br>Ikäraja: 7<br>Kieli: japani, tekstitys suomeksi<br>Hayao Miyazaki, 2004</p><p>Vapaa sisäänpääsy</p>",
                "sv": "<p>Av en slump träffar hattaffärens flicka en fåfäng trollkarl vid namn Hauru, som förför skönheter. Förtrollad av den svartsjuka Ödeshäxan tvingas den unga kvinnan uppleva hur det är att leva som 90-åring.</p><p>Sophie lämnar sitt gamla liv och blir hushållerska i Haurus Levande slott. Sophie döljer sin verkliga identitet för Hauru och blir vän med de övriga invånarna i slottet. När känslorna svallar avslöjas stundvis Sophies verkliga ålder, till och med mitt under en mening.</p><p>I Hayao Miyazakis värld kan huvudpersonens ålder till och med ändras under en och samma scen. Denna fantastiska film firar redan sitt 20-årsjubileum!</p><p>Fri inträde!</p>",
                "en": "<p>A hat shop girl accidentally encounters a vain wizard named Howl, who seduces beautiful women. A young lady, enchanted by the envious Witch of Vanity, is forced to experience what it is like to live to the age of 90.</p><p>Sophie leaves her old life and ends up as a housekeeper in Howl’s Moving Castle. Sophie conceals her true identity from Howl and befriends the castle's other residents. As emotions rise, Sophie's real age starts to come out, even in the middle of a sentence.</p><p>In Hayao Miyazaki's world, the protagonist's age can change, even within a scene. This fantastic film is already celebrating its 20th anniversary!</p><p>Free entrance!</p>"
            },
            "name": {
                "fi": "Liikkuva linna (7) – Syysloman Miyazaki-elokuvia",
                "sv": "Det levande slottet (7) – Miyazaki-filmer på höstlovet",
                "en": "Howl’s Moving Castle (7) – Miyazaki movies for the autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64250/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64165",
            "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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151644,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-03T14:13:21.276352Z",
                    "last_modified_time": "2024-07-03T14:13:21.276367Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751992.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151644/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-03T14:13:21.260186Z",
            "last_modified_time": "2024-08-29T05:13:34.328202Z",
            "date_published": null,
            "start_time": "2024-10-16T10:30:00Z",
            "end_time": "2024-10-16T11:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.",
                "sv": "Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.",
                "en": "Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FD6172A3349049C6DA7C24CE12631432/Hyvan_tuulen_hetket",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FD6172A3349049C6DA7C24CE12631432/Stunder_med_god_stamning",
                "en": "http://www.kanneltalo.fi/en/events/event/FD6172A3349049C6DA7C24CE12631432/Moments_of_happiness"
            },
            "description": {
                "fi": "<p>Muusikko Mari Kätkä laulattaa ja kuvittaja Sari Airola kuvittaa rakastetuimpia yhteislauluja tarinallisiksi kuviksi.</p><p>Rakkaimpien yhteislaulujen soidessa kaikki saavat laulamisen lomassa piirtää omia kuviaan tai kirjoittaa vaikka omia musiikkimuistojaan. Kokonaisuudesta syntyy monitaiteellinen elämys, johon saa osallistua laulaen, piirtäen, kuunnellen ja katsellen. Hetket rakennetaan joka kerta eri teeman ympärille lauluvalikoiman ja piirrosten aiheiden avulla.</p><p>Esitystä voi seurata maksutta kulttuuripalvelu Lämpiön kanavalla https://lampio.fi/</p><p>Tallenne esityksestä on katsottavissa kaksi viikkoa esityksen jälkeen.</p><p><b>Syyskauden lauluteemat:</b></p><p>18.9. Kerro se kukkasin!<br>16.10. Se hetki!<br>13.11. Juhlatunnelmaa<br>11.12. Meidän joulu</p><p>Kesto n. 30 min</p><p>Vapaa pääsy</p>",
                "sv": "<p>Musikern Mari Kätkä lockar till sång medan illustratören Sari Airola gör bildberättelser av våra mest älskade allsångslåtar.</p><p>Medan de mest älskade allsångslåtarna spelas kan även deltagarna rita sina egna bilder eller kanske skriva ner sina egna musikminnen. Av helheten uppstår en mångkonstnärlig upplevelse som man kan delta i genom att sjunga, rita eller lyssna och titta. Med hjälp av sångurvalet och bilderna byggs stunderna varje gång upp runt ett visst tema.</p><p>Du kan följa uppträdandet kostnadsfritt via kulturtjänsten Lämpiös kanal https://lampio.fi/ och en inspelning av uppträdandet finns att se i två veckor därefter.</p>",
                "en": "<p>Musician Mari Kätkä leads the most beloved sing-along songs while illustrator Sari Airola illustrates them into narrative images.</p><p>While the most beloved sing-along songs are playing, even the singers can draw or write down their own pictures and musical memories. The performance creates a multi-artistic experience which you can take part in by singing, drawing, or listening and watching. Each moment is built around a different theme with the help of a selection of songs and drawing themes.</p><p>The performance can be followed free of charge on cultural service Lämpiö’s channel at https://lampio.fi/, and a recording of the performance will be available two weeks after the performance.</p>"
            },
            "name": {
                "fi": "Hyvän tuulen hetket – iltapäiväohjelmaa ikäihmisille",
                "sv": "Stunder med god stämning",
                "en": "Moments of happiness"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64165/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64288",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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/kulke:752/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151872,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T15:15:01.089511Z",
                    "last_modified_time": "2024-07-25T15:15:01.089539Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751040.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151872/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T15:15:01.054039Z",
            "last_modified_time": "2024-08-29T05:13:34.144060Z",
            "date_published": null,
            "start_time": "2024-10-16T08:00:00Z",
            "end_time": "2024-10-16T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?",
                "sv": "En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?",
                "en": "A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/78CE1F6FF7912B4BB7A3E72CF646D257/Ihme_planeetta_-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/78CE1F6FF7912B4BB7A3E72CF646D257/Workshop_en_forunderlig_planet_",
                "en": "http://www.malmitalo.fi/en/events/event/78CE1F6FF7912B4BB7A3E72CF646D257/Planet_of_Wonders_workshop_"
            },
            "description": {
                "fi": "<p>Ripaus tulipunaista, sipaus jäänsinistä, hiukkasen tähtien tuiketta. Millainen on sinun ikioma ihmeplaneettasi?</p><p>Työpajassa ihmetellään ja kuvitellaan planeettoja sekä askarrellaan mobileen yksi tai useampi ihmeellinen taivaankappale. Askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>En gnutta scharlakansrött, lite isblått, en aning stjärnglimmer. Hur ser din egna förunderliga planet ut?</p><p>I workshoppen förundras vi över och fantiserar om planeter, och pysslar en eller flera förunderliga himlakroppar till en mobil. Pysslet passar för alla åldrar, men barn under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala<br>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>A dash of scarlet, a splash of ice blue, a little star twinkle. What is your very own planet of wonders like?</p><p>In the workshop, think about and imagine planets, and create one or more wondrous body for a mobile. Crafting is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija<br>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Ihme planeetta -työpaja",
                "sv": "Workshop – en förunderlig planet",
                "en": "Planet of Wonders workshop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64288/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64327",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151992,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T15:13:57.676644Z",
                    "last_modified_time": "2024-07-30T15:13:57.676660Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751765.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151992/?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": "2024-07-30T15:13:57.663104Z",
            "last_modified_time": "2024-08-29T05:13:33.846511Z",
            "date_published": null,
            "start_time": "2024-10-15T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistai-iltapäivänä hypätään seikkailun pyörteisiin elokuvan Aladdin (2019) parissa.",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. På tisdag eftermiddag hoppar vi in i äventyrets virvelvind med Aladdin (2019).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. On Tuesday afternoon, we jump into the whirlwind of adventure with Aladdin (2019)."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3DBA79CC6E0453D8AECAF43119373386/Satukino_Aladdin_Live_Action_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/3DBA79CC6E0453D8AECAF43119373386/Satukino_Aladdin_Live_Action_7_",
                "en": "http://www.annantalo.fi/en/events/event/3DBA79CC6E0453D8AECAF43119373386/Fairy_tale_theatre_Satukino_Aladdin_Live_Action_7_"
            },
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistai-iltapäivänä hypätään seikkailun pyörteisiin elokuvan Aladdin (2019) parissa.</p><p>Disneyn animaatioklassikko Aladdin on loihdittu uudelleen valkokankaalle energisenä ja jännittävänä live action -versiona, jonka pääosissa nähdään karismaattinen katurotta Aladdin, urhea ja määrätietoinen prinsessa Jasmine ja Henki, joka voi avata heille ovet tulevaisuuteen. Ohjauksesta vastaa Guy Ritchie, joka tuo elokuvilleen tyypillistä vauhdikasta toimintaa satumaisen Agraban satamakaupungin kujille.</p><p>Juhlasalin iltapäivän elokuvanäytöksissä hahmot puhuvat englantia. Tekstitys suomeksi.<br>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 128min<br>Ikäsuositus 7+</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. På tisdag eftermiddag hoppar vi in i äventyrets virvelvind med Aladdin (2019).</p><p>Disneys animerade klassiker Aladdin har återskapats för den vita duken i en energisk och spännande live-action-version med den karismatiske gatpojken Aladdin, den modiga och beslutsamma prinsessan Jasmine och Anden som kan öppna dörrarna till deras framtid i huvudrollerna. Filmen är regisserad av Guy Ritchie, som hämtar sin kännspaka snabba action till den sagolika hamnstaden Agrabas gränder.</p><p>På eftermiddagens filmvisningar i festsalen talar rollfigurerna engelska. Textning på finska.<br>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 128 minuter<br>Åldersrekommendation: 7+</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. On Tuesday afternoon, we jump into the whirlwind of adventure with Aladdin (2019).</p><p>Disney's animated classic Aladdin has been remade on the big screen in an energetic and exciting live action version starring charismatic street rat Aladdin, brave and determined Princess Jasmine and the Genie, who can open the doors into the future for them. Directed by Guy Ritchie, introducing the typical action of his films to the alleys of the fairytale city of Agrabah.</p><p>At the afternoon screenings in the ballroom, the characters speak English. Subtitles in Finnish.<br>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 128min<br>Age recommendation: +7</p>"
            },
            "name": {
                "fi": "Satukino | Aladdin (Live Action) (7) – Satumainen syysloma",
                "sv": "Satukino | Aladdin (Live Action) (7) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Aladdin (Live Action) (7) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64327/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64286",
            "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:104/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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/kulke:752/?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:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?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:p40387/?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:p5088/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "sv": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan",
                        "en": "https://www.lippu.fi/search/?affiliate=ADV&searchterm=mama+events+dhorpatan"
                    },
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151870,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T14:14:07.465509Z",
                    "last_modified_time": "2024-07-25T14:14:07.465525Z",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751039.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151870/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "created_time": "2024-07-25T14:14:07.437605Z",
            "last_modified_time": "2024-08-29T05:13:33.679632Z",
            "date_published": null,
            "start_time": "2024-10-15T08:00:00Z",
            "end_time": "2024-10-15T10:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.",
                "sv": "Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.",
                "en": "The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/99FD239CE75E0092FF8C5FE9A93A13A9/Koirankorvilla-tyopaja_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/99FD239CE75E0092FF8C5FE9A93A13A9/Hundoron-workshop_",
                "en": "http://www.malmitalo.fi/en/events/event/99FD239CE75E0092FF8C5FE9A93A13A9/Dog_Ear_Workshop_"
            },
            "description": {
                "fi": "<p>Nyt on vauhti päällä ja hommat hoituvat! Tepsuttele askartelemaan syysloman hupsuin ja haukuttavin pääkoriste.</p><p>Luppakorva, pystykorva, jättikorva! Minkälaisilla korvilla kutsuhuudot kuuluvat parhaiten? Koirankorva-askartelu sopii kaiken ikäisille, mutta alle kouluikäiset taiteilijat tarvitsevat aikuisen mukaan.</p><p>Työpajan suunnittelu ja toteutus Runoropinoita/Ulla-Maija Vanhala<br>Malmitalon aula, vapaa pääsy!</p>",
                "sv": "<p>Nu är det fart och fläkt och vi får saker gjorda! Kom och pyssla höstlovets skojigaste och gläfsigaste huvudbonad.</p><p>Hängöron, upprättstående öron, jätteöron! Vilken typ av öron är bäst för att höra lockrop? Hundöronpysslet passar för alla åldrar, men konstnärer under skolåldern ska ha sällskap av en vuxen.</p><p>Workshoppens planering och genomförande: Runoropinoita/Ulla-Maija Vanhala</p><p>Foajén i Malms kulturhus, fritt inträde</p>",
                "en": "<p>The pace is high and things are getting done! Craft the funniest and most borky headpiece of the fall holiday.</p><p>Droopy ears, upright ears, giant ears! With which kind of ears hear the call best? The Dog Ear Workshop is suitable for all ages, but artists under school age need to be accompanied by an adult.</p><p>Design and implementation of the workshop by Runoropinoita/Ulla-Maija</p><p>Malmitalo lobby, free of charge!</p>"
            },
            "name": {
                "fi": "Koirankorvilla-työpaja – Nonstop",
                "sv": "Hundöron-workshop – Nonstop",
                "en": "Dog Ear Workshop – Nonstop"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64286/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64326",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151991,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T15:13:57.516570Z",
                    "last_modified_time": "2024-07-30T15:13:57.516585Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751756.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151991/?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": "2024-07-30T15:13:57.493802Z",
            "last_modified_time": "2024-08-29T05:13:33.622109Z",
            "date_published": null,
            "start_time": "2024-10-15T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistaiaamuna heittäydytään seikkailun pyörteisiin elokuvassa Saapasjalkakissa: Viimeinen toivomus (2022).",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. På måndag eftermiddag kastas vi in i äventyrets virvelvind i filmen Mästerkatten: Sista önskan (2022).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. On Monday afternoon we throw ourselves into a whirlwind of adventure with Puss in Boots: Last Wish (2022)."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/04356929ADBF93DC4F965B4652BCAF7B/Satukino_Saapasjalkakissa_Viimeinen_toivomus_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/04356929ADBF93DC4F965B4652BCAF7B/Satukino_Masterkatten_Sista_onskan_7_",
                "en": "http://www.annantalo.fi/en/events/event/04356929ADBF93DC4F965B4652BCAF7B/Fairy_tale_theatre_Satukino_Puss_in_Boots_Last_Wish_7_"
            },
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Tiistaiaamuna heittäydytään seikkailun pyörteisiin elokuvassa Saapasjalkakissa: Viimeinen toivomus (2022).</p><p>Peloton lainsuojaton Saapasjalkakissa huomaa, että hänen hullunrohkeutensa ja yltiöpäisyytensä ovat vaatineet veronsa. Katti on käyttänyt jo kahdeksan yhdeksästä elämästään, tosin hän sekosi jo laskuissakin. Saapasjalkakissa lähtee eeppiselle matkalle Mustaan Metsään, etsimään myyttistä Toivomustähteä ja hakemaan menetettyjä elämiään takaisin.</p><p>Saapasjalkakissa: Viimeinen toivomus on kauan odotettu jatko-osa Oscar-ehdokkuuden saaneelle vuoden 2011 menestyselokuvalle Saapasjalkakissa.</p><p>Juhlasalin aamupäivän elokuvanäytöksissä hahmot puhuvat suomea. Tekstitys englanniksi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 103min<br>Ikäsuositus 7+<br>Kieli: Suomi, englanti</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. På måndag eftermiddag kastas vi in i äventyrets virvelvind i filmen Mästerkatten: Sista önskan (2022).</p><p>Den orädde och laglöse Mästerkatten upptäcker att hans dumdristighet och övermod har krävt sin tribut. Katten har redan använt åtta av sina nio liv, och har faktiskt också hunnit tappa räkningen. Mästerkatten ger sig av på en episk resa till den svarta skogen på jakt efter den mytomspunna önskestjärnan och för att återfå sitt förlorade liv.</p><p>Mästerkatten: Sista önskan är den efterlängtade uppföljaren till den Oscarsnominerade succéfilmen Mästerkatten från 2011.</p><p>På eftermiddagens filmvisningar i festsalen talar rollfigurerna engelska. Textning på finska. Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 103 minuter<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska<br>Fritt inträde</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. On Monday afternoon we throw ourselves into a whirlwind of adventure with Puss in Boots: Last Wish (2022).</p><p>A fearless outlaw, Puss in Boots discovers that his madcap, stubborn nature has taken its toll. Puss has already spent eight of its nine lives, having already lost count. Puss in Boots embarks on an epic journey to the Black Forest, in search of the mythical Wish-Granting Star to reclaim its lost lives.</p><p>Puss in Boots: Last Wish is the long-awaited sequel to the Oscar-nominated 2011 hit Puss in Boots.</p><p>At the afternoon screenings in the ballroom, the characters speak English. Subtitles in Finnish. Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 103min<br>Age recommendation: +7<br>Language: Finnish, English<br>Free of charge</p>"
            },
            "name": {
                "fi": "Satukino | Saapasjalkakissa – Viimeinen toivomus (7) – Satumainen syysloma",
                "sv": "Satukino | Mästerkatten – Sista önskan (7) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Puss in Boots – Last Wish (7) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64326/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64325",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151990,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T15:13:57.374014Z",
                    "last_modified_time": "2024-07-30T15:13:57.374029Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751753.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151990/?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": "2024-07-30T15:13:57.353071Z",
            "last_modified_time": "2024-08-29T05:13:33.445942Z",
            "date_published": null,
            "start_time": "2024-10-14T10:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Maanantai-iltapäivänä heittäydytään seikkailun pyörteisiin elokuvassa Saapasjalkakissa: Viimeinen toivomus (2022).",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. På måndag eftermiddag kastas vi in i äventyrets virvelvind i filmen Mästerkatten: Sista önskan (2022).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. On Monday afternoon we throw ourselves into a whirlwind of adventure with Puss in Boots: Last Wish (2022)."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/846EF6EA625C02271C2F6B3F788F79E1/Satukino_Saapasjalkakissa_Viimeinen_toivomus_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/846EF6EA625C02271C2F6B3F788F79E1/Satukino_Masterkatten_Sista_onskan_7_",
                "en": "http://www.annantalo.fi/en/events/event/846EF6EA625C02271C2F6B3F788F79E1/Fairy_tale_theatre_Satukino_Puss_in_Boots_Last_Wish_7_"
            },
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Maanantai-iltapäivänä heittäydytään seikkailun pyörteisiin elokuvassa Saapasjalkakissa: Viimeinen toivomus (2022).</p><p>Peloton lainsuojaton Saapasjalkakissa huomaa, että hänen hullunrohkeutensa ja yltiöpäisyytensä ovat vaatineet veronsa. Katti on käyttänyt jo kahdeksan yhdeksästä elämästään, tosin hän sekosi jo laskuissakin. Saapasjalkakissa lähtee eeppiselle matkalle Mustaan Metsään, etsimään myyttistä Toivomustähteä ja hakemaan menetettyjä elämiään takaisin.</p><p>Saapasjalkakissa: Viimeinen toivomus on kauan odotettu jatko-osa Oscar-ehdokkuuden saaneelle vuoden 2011 menestyselokuvalle Saapasjalkakissa.</p><p>Juhlasalin iltapäivän elokuvanäytöksissä hahmot puhuvat englantia. Tekstitys suomeksi. Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 103min<br>Ikäsuositus 7+<br>Kieli: Suomi, englanti<br>Maksuton</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. På måndag eftermiddag kastas vi in i äventyrets virvelvind i filmen Mästerkatten: Sista önskan (2022).</p><p>Den orädde och laglöse Mästerkatten upptäcker att hans dumdristighet och övermod har krävt sin tribut. Katten har redan använt åtta av sina nio liv, och har faktiskt också hunnit tappa räkningen. Mästerkatten ger sig av på en episk resa till den svarta skogen på jakt efter den mytomspunna önskestjärnan och för att återfå sitt förlorade liv.</p><p>Mästerkatten: Sista önskan är den efterlängtade uppföljaren till den Oscarsnominerade succéfilmen Mästerkatten från 2011.</p><p>På eftermiddagens filmvisningar i festsalen talar rollfigurerna engelska. Textning på finska. Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 103 minuter<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska<br>Fritt inträde</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. On Monday afternoon we throw ourselves into a whirlwind of adventure with Puss in Boots: Last Wish (2022).</p><p>A fearless outlaw, Puss in Boots discovers that his madcap, stubborn nature has taken its toll. Puss has already spent eight of its nine lives, having already lost count. Puss in Boots embarks on an epic journey to the Black Forest, in search of the mythical Wish-Granting Star to reclaim its lost lives.</p><p>Puss in Boots: Last Wish is the long-awaited sequel to the Oscar-nominated 2011 hit Puss in Boots.</p><p>At the afternoon screenings in the ballroom, the characters speak English. Subtitles in Finnish. Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 103min<br>Age recommendation: +7<br>Language: Finnish, English<br>Free of charge</p>"
            },
            "name": {
                "fi": "Satukino| Saapasjalkakissa – Viimeinen toivomus (7) – Satumainen syysloma",
                "sv": "Satukino | Mästerkatten – Sista önskan (7) – Ett sagolikt höstlov",
                "en": "Fairy tale theatre Satukino | Puss in Boots – Last Wish (7) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64325/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64324",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151989,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-30T15:13:57.254434Z",
                    "last_modified_time": "2024-07-30T15:13:57.254449Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751749.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151989/?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": "2024-07-30T15:13:57.236919Z",
            "last_modified_time": "2024-08-29T05:13:33.323008Z",
            "date_published": null,
            "start_time": "2024-10-14T08:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko käynnistetään Disneyn live-action seikkailulla DUMBO (2019)!",
                "sv": "Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan inleds med Disneys live-action-äventyr DUMBO (2019).",
                "en": "During the autumn holiday, Satukino will feature fairytale-themed films. The week begins with Disney's live-action adventure DUMBO (2019)."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_",
                "en": "http://www.annantalo.fi/en/events/event/5606E24C61B0ADC12C1B3347FAC349E4/Satukino_Dumbo_Live_Action_7_"
            },
            "description": {
                "fi": "<p>Syyslomalla katsotaan satuteemaisia elokuvia Satukinossa. Viikko käynnistetään Disneyn live-action seikkailulla DUMBO (2019)!</p><p>Mielikuvituksen mestari Tim Burton tuo valkokankaille uuden Dumbon. Elokuva laajentaa rakastetun klassikkoelokuvan tarinaa juhlistaen erilaisuutta, vaalien perhettä ja antaen unelmille siivet. <br>Sirkuksen omistaja Max Medici antaa entiselle tähdelle Holt Ferrierille ja hänen lapsilleen, Millylle ja Joelle, tehtäväksi hoitaa vastasyntynyttä elefanttia, jonka valtavat korvat saavat sen kuitenkin pilkan kohteeksi. Sirkus kärsii taloushuolista, mutta kun selviää, että Dumbo osaa lentää, tekee sirkus häikäisevän paluun.</p><p>Juhlasalin aamupäivän elokuvanäytöksissä hahmot puhuvat suomea. Tekstitys englanniksi.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Tulethan kuitenkin hyvissä ajoin paikalle, sillä otamme yleisön sisään saapumisjärjestyksessä. Elokuviin mahtuu 74 katsojaa.</p><p>Elokuvan kesto: 112min<br>Ikäsuositus 7+</p>",
                "sv": "<p>Under höstlovet tittar vi på filmer med sagotema på Satukino. Veckan inleds med Disneys live-action-äventyr DUMBO (2019).</p><p>Fantasins mästare Tim Burton hämtar en ny version av Dumbo till den vita duken. Filmen bygger på den älskade filmklassikerns berättelse, som hyllar mångfald, värnar om familjen och ger drömmarna vingar. <br>Cirkusägaren Max Medici ger den tidigare stjärnan Holt Ferrier och hans barn Milly och Joe i uppdrag att ta hand om en nyfödd elefant, vars enorma öron gör den till föremål för åtlöje. Cirkusen kämpar med ekonomin, men när man upptäcker att Dumbo kan flyga gör cirkusen en fantastisk comeback.</p><p>På förmiddagens filmvisningar i festsalen talar rollfigurerna finska. Textning på engelska.</p><p>Fritt inträde, ingen förhandsanmälan. Kom på plats i god tid, vi tar in publiken i ankomstordning. Det finns plats för 74 personer att se filmerna.</p><p>Filmens längd: 112 min.<br>Åldersrekommendation: 7+<br>Språk: Finska, engelska</p>",
                "en": "<p>During the autumn holiday, Satukino will feature fairytale-themed films. The week begins with Disney's live-action adventure DUMBO (2019).</p><p>The master of imagination, Tim Burton, has re-imagined Dumbo for the big screen. The film expands on the story of the beloved classic film, celebrating diversity, nurturing family and giving dreams wings. <br>Circus ringleader Max Medici entrusts former star Holt Ferrier and his children, Milly and Joe, with the task of caring for a newborn elephant whose huge ears, however, make it a laughing stock. The circus suffers financially, but when it turns out that Dumbo can fly, the circus makes a dazzling return.</p><p>In the ballroom’s morning screenings, the characters will speak Finnish. English subtitles.</p><p>Free admission, no advance registration. Please arrive on time as entry is on a first-come, first-served basis. The cinema can accommodate 74 spectators.</p><p>Movie duration: 112min<br>Age recommendation: +7<br>Language: Finnish, English</p>"
            },
            "name": {
                "fi": "Satukino | Dumbo (Live Action) (7) – Satumainen syysloma",
                "sv": "Satukino | Dumbo (Live Action) (7) – Ett sagolikt höstlov",
                "en": "Satukino | Dumbo (Live Action) (7) – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64324/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63425",
            "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: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151562,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T14:13:41.134978Z",
                    "last_modified_time": "2024-06-27T14:13:41.134990Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749881.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151562/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T14:13:41.102446Z",
            "last_modified_time": "2024-08-29T05:13:33.117653Z",
            "date_published": null,
            "start_time": "2024-10-14T06:00:00Z",
            "end_time": "2024-10-14T06:45:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.",
                "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.",
                "en": "We explore and interpret the world through imagination, music and other arts."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5A46A6313D52DDD3AA20AE864A4144E/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B5A46A6313D52DDD3AA20AE864A4144E/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/B5A46A6313D52DDD3AA20AE864A4144E/Musical_Art_Adventure"
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo  9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>",
                "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>",
                "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>"
            },
            "name": {
                "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 3–5-åringar",
                "en": "Musical Art Adventure – for 3–5-year-olds"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63425/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63556",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152084,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-12T15:13:28.559094Z",
                    "last_modified_time": "2024-08-12T15:13:28.559106Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751312.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152084/?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": "2024-08-12T15:13:28.548161Z",
            "last_modified_time": "2024-08-29T05:13:32.927148Z",
            "date_published": null,
            "start_time": "2024-10-13T11:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.",
                "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.",
                "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/011B687685E200A5DFF8F4735C428DBD/Paistikka-duo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo",
                "en": "http://www.annantalo.fi/en/events/event/011B687685E200A5DFF8F4735C428DBD/Paistikka_duo"
            },
            "description": {
                "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>",
                "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "name": {
                "fi": "Päistikka-duo – Satumainen syysloma",
                "sv": "Päistikka duo – Ett sagolikt höstlov",
                "en": "Päistikka duo – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63556/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63555",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "description": null,
                    "price": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152083,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-12T15:13:28.483061Z",
                    "last_modified_time": "2024-08-12T15:13:28.483075Z",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751311.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152083/?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": "2024-08-12T15:13:28.470262Z",
            "last_modified_time": "2024-08-29T05:13:32.871340Z",
            "date_published": null,
            "start_time": "2024-10-13T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.",
                "sv": "I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.",
                "en": "The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka-duo",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo",
                "en": "http://www.annantalo.fi/en/events/event/C3F9BA22070F725844D221D8D44E73B1/Paistikka_duo"
            },
            "description": {
                "fi": "<p>Päistikka-duon riemukkaassa konsertissa syöksytään seikkailuun ja mielikuvitusmaailmaan.</p><p>On aika tanssia robottidiskossa tai ryhtyä vaikka hirviöhippaan! Musiikin ja tarinoiden täyttämässä show’ssa tarvitaan välillä myös yleisön apua.</p><p>Tuukka Martiskainen – laulu, ukulele, samplet<br>Elina Vehkaoja – laulu, koskettimet</p><p>Kesto: 30 min<br>Ikäsuositus: 1+ ja koko perhe<br>Kieli: suomi</p><p>Vapaa pääsy</p>",
                "sv": "<p>I denna glädjefyllda konsert kastar vi oss in i äventyr och fantasi tillsammans med duon Päistikka.</p><p>Det är dags att dansa på robotdisco eller leka monstertafatt! I showen som är fylld av musik och berättelser behövs ibland även publikens hjälp.</p><p>Tuukka Martiskainen – sång, ukulele, samplingar<br>Elina Vehkaoja – sång, keyboard</p><p>Längd: 30 min.<br>Åldersrekommendation: 1+ och hela familjen<br>Språk: finska<br>Fritt inträde</p>",
                "en": "<p>The joyful concert of the Päistikka duo takes the plunge into adventure and the world of imagination.</p><p>Dance in the robot disco or play tag with monsters! In a show filled with music and stories, you sometimes need the help of the audience.</p><p>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards</p><p>Duration: 30 mins.<br>Age recommendation: 1+ and the whole family<br>Language: Finnish</p><p>Free of charge</p>"
            },
            "name": {
                "fi": "Päistikka-duo – Satumainen syysloma",
                "sv": "Päistikka duo – Ett sagolikt höstlov",
                "en": "Päistikka duo – Fabulous autumn holiday"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63555/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63627",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/eventseries/name-3650116",
                        "sv": "https://www.lippu.fi/eventseries/name-3650116",
                        "en": "https://www.lippu.fi/eventseries/name-3650116"
                    },
                    "description": null,
                    "price": {
                        "fi": "33,50-43,50 €",
                        "sv": "33,50-43,50 €",
                        "en": "33,50-43,50 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151063,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-05-10T08:12:48.909506Z",
                    "last_modified_time": "2024-05-10T08:12:48.909526Z",
                    "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751848.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151063/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-05-10T08:12:48.874684Z",
            "last_modified_time": "2024-08-29T05:13:32.755398Z",
            "date_published": null,
            "start_time": "2024-10-12T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Together again for the first time in 10 years!",
                "sv": "Together again for the first time in 10 years!",
                "en": "Together again for the first time in 10 years!"
            },
            "info_url": {
                "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion",
                "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion",
                "en": "http://www.savoyteatteri.fi/en/events/event/5BB6221DD3549B52D36B915C124523FA/Imelda_May_Darrel_Higham_The_Reunion"
            },
            "description": {
                "fi": "<p>Together again for the first time in 10 years!</p><p>Olemme ylpeitä saadessamme esittää tämän ainutlaatuisen konsertin: kahden rock & roll -jättiläisen jälleennäkemisen, <b>Imelda May</b> ja <b>Darrel Higham</b>. Kyseessä on heidän ensimmäinen yhteiskonserttinsa 10 vuoteen ja tämä huomattava show tulee tapahtumaan Savoy-teatterissa.</p><p>Kun irlantilaissyntyinen laulaja ja lauluntekijä Imelda May ja brittiläinen rokkari Darrel Higham esiintyivät ensimmäisen kerran yhdessä 30 vuotta sitten, he aiheuttavat aikamoisen kohun ainulaatuisella soundillaan ja rockabilly-asenteellaan. Vertaansa vailla olevalla intohimolla ja intensiivisyydellä merkityt albumit, kuten ”Love Tattoo”, ”Mayhem” ja ”Tribal”, määrittivät uudelleen ihmisten näkemyksen genrestä. Ne eivät ainoastaan saaneet huomattavan määrän kriittistä tunnusta ja kaupallista menestystä, mutta keräsivät myös monen rock-tähden huomion. Tämä johti mielenkiintoisiin yhteisprojekteihin Jeff Beckin ja Jimmy Pagen kaltaisten artistien kanssa.</p><p>Kun unelma romahti 10 vuotta sitten, se yllätti kaikki. Mutta nyt Imelda ja Darrel ovat valmiita sytyttämään liekin uudelleen, joten varaudu aivan erityislaatuiseen iltaan Savoy-teatterissa. Tämä tulee olemaan erityislaatuinen ja ainutlaatuinen tapahtuma, joten älä missaa sitä. He tulevat esittämään yhteistyöaikojensa tunnuskappaleita kuin myös joitakin yllätyksiä.</p><p>Kesto n. 2 h 15 min, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua.</p>",
                "sv": "<p>Together again for the first time in 10 years!</p><p>Vi är stolta över att presentera denna unika konsert: återföreningen mellan två rock & roll-jättar, Imelda May och Darrel Higham. Det är fråga om deras första gemensamma konsert på 10 år, och denna anmärkningsvärda show kommer att gå av stapeln på Savoy-teatern.</p><p>När den irländska sångerskan och låtskrivaren Imelda May och den brittiska rockaren Darrel Higham för första gången uppträdde tillsammans för 30 år sedan väckte de stor uppståndelse med sitt unika sound och sin rockabilly-attityd. De oöverträffat passionerade och intensiva albumen “Love Tattoo”, “Mayhem” och “Tribal” omdefinierade människors uppfattning om genren. Utöver omfattande kritiskt erkännande och kommersiell framgång väckte de även uppmärksamhet bland många rockstjärnor. Detta ledde till intressanta samarbetsprojekt med artister såsom Jeff Beck och Jimmy Page.</p><p>När drömmen krossades för 10 år sedan kom det som en överraskning för alla. Men nu är Imelda och Darrel redo att tända lågan på nytt, så var beredda på en mycket unik kväll på Savoy-teatern. Detta kommer att bli något alldeles speciellt, ett unikt evenemang som bara kommer en gång, så missa det inte. Artisterna kommer att framföra välbekanta låtar från tiden för deras samarbete, och även några överraskningar.</p><p>Längd ca 2 h 15 min., inklusive paus</p><p>Parkett F18 servering av alkoholdrycker. Balkong T, ingen servering av alkoholdrycker.</p>",
                "en": "<p>Together again for the first time in 10 years!</p><p>We’re proud to present this unique concert: the reunion of two rock & roll giants, Imelda May and Darrel Higham. This will be their first joint concert in 10 years, and this remarkable show will take place at the Savoy Theatre.</p><p>When Irish-born singer and songwriter Imelda May and British rocker Darrel Higham first performed together 30 years ago, they caused quite a stir with their unique sound and rockabilly attitude. Their albums, marked with unparalleled passion and intensity, such as ‘Love Tattoo’, ‘Mayhem’, and ‘Tribal’, redefined the way people perceived the genre. Not only did they receive considerable critical acclaim and commercial success, but they also attracted the attention of many rock stars. This led to interesting collaborations with artists like Jeff Beck and Jimmy Page.</p><p>When the dream collapsed ten years ago, it surprised everyone. But now, Imelda and Darrel are ready to rekindle the spark, so be prepared for a truly special evening at the Savoy Theatre. This is sure to be something special, a once-in-a-lifetime event you won’t want to miss. They will perform the signature songs from their years of collaboration, as well as some surprises.</p><p>Duration approx. 2 h 15 min, including intermission</p><p>Stalls 18+, a licensed (alcohol-serving) area. The balcony is a non-licensed area without an age limit.</p>"
            },
            "name": {
                "fi": "Imelda May & Darrel Higham: The Reunion – Loppuunmyyty",
                "sv": "Imelda May & Darrel Higham: The Reunion – Utsåld",
                "en": "Imelda May & Darrel Higham: The Reunion – Sold out"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": {
                "fi": "Deelen Consultancies",
                "sv": "Deelen Consultancies",
                "en": "Deelen Consultancies"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63627/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64299",
            "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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/name-18533777",
                        "sv": "https://www.lippu.fi/event/name-18533777",
                        "en": "https://www.lippu.fi/event/name-18533777"
                    },
                    "description": null,
                    "price": {
                        "fi": "30 € / 25 €",
                        "sv": "30 € / 25 €",
                        "en": "30 € / 25 €"
                    }
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151908,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T07:14:25.994526Z",
                    "last_modified_time": "2024-07-26T07:14:25.994542Z",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749161.jpg",
                    "name": "",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151908/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T07:14:25.960822Z",
            "last_modified_time": "2024-08-29T05:13:32.696703Z",
            "date_published": null,
            "start_time": "2024-10-12T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "short_description": {
                "fi": "Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Nyt Arppa tuo konserttisalikiertueensa Kanneltaloon!",
                "sv": "Arppa och hans band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. Nu kommer Arppa med sin konsertturné till Gamlasgården!",
                "en": "Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the current Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. Now, Arppa is bringing his concert tour to Kanneltalo!"
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_LOPPUUNMYYTY",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_SLUTSALD",
                "en": "http://www.kanneltalo.fi/en/events/event/D729D9886BF5AEAEFF1A799398AF660D/Arppa_SOLD_OUT"
            },
            "description": {
                "fi": "<p>Energisistä, improvisaatioon perustuvista keikoistaan tunnettu Arppa yhtyeineen on yksi tämänhetkisen Suomi-indien kärkinimistä. Arpan ihastuttava musiikki on ajatonta ja tekstit kuin liikkuvaa kuvaa. Nyt Arppa tuo konserttisalikiertueensa Kanneltaloon!</p><p>Arpan musiikissa oivaltavat, vilpittömät ja tarkkanäköisesti kuvatut tunnelmat liikkuvat Kokkolan Ykspihlajasta aina öisen Helsingin kautta Laila Kinnusen kanssa salakapakkaan heinäkuuhun ’58. Luontevan vaivaton olemus ja yhtyeen esiintymisistä huokuva vilpitön riemu ei voi olla tempaamatta mukaansa.</p><p>Arppa on saanut ympärilleen taitavat ja valovoimaiset muusikot, minkä ansiosta hänen tunnelmallisten tekstiensä ympärille on rakentunut kaunis ja eheä äänimaailma. Hänen yhtyeessään vaikuttavat muusikot Ville-Veikko Airaniemi, Eero Seppä ja Okko Saastamoinen.</p><p>Omakustanteisen debyyttialbuminsa <i>Laavalamppuja</i> elokuussa 2020 julkaissut artisti on kiivennyt vauhdikkaasti artistilupauksen maineesta maamme ajankohtaisimpien ja suosituimpien nimien joukkoon. Arppa julkaisi toisen albuminsa <i>Kinovalon alla</i> syyskuussa 2021. Albumin ensimmäisen painoksen LP:t myytiin loppuun kolmessa viikossa. Albumi vetosi niin yleisöön kuin kriitikoihinkin, ja singlet nousivat kaikki valtakunnalliseen radiosoittoon. Levynjulkaisua seurasi kiertue, jonka keikat olivat pitkälti loppuunmyytyjä useilla paikkakunnilla. Sama vuosi toi artistille neljä Emma-ehdokkuutta (Vuoden tulokas, Vuoden rock, Kriitikoiden valinta, Vuoden artisti -yleisöäänestys) sekä kolmannen sijan Soundin Vuoden 2021 Parhaat albumit -yleisöäänestyksessä. Kolmannen albuminsa <i>Valeria</b> Arppa yhtyeineen julkaisi maaliskuussa 2023.</p><p>Keikka on osa Arpan syksyn konserttisalikiertuetta.</p><p>Keikka on väliajallinen ja ikärajaton.</p>",
                "sv": "<p>Arppa och hans band är kända för sina energiska gigs som baserar sig på inspiration. Arppa är ett av toppnamnen i dagens indie i Finland. Arppas förtjusande musik är tidlös och texterna är som levande bilder. Nu kommer Arppa med sin konsertturné till Gamlasgården!</p><p>De insiktsfulla, uppriktiga och skarpsynt beskrivna stämningarna varierar mellan Yxpila i Karleby, det nattliga Helsingfors i Laila Kinnunens sällskap och en hemlig krog i juli 1958. Det naturligt lediga väsendet och bandets uppträdande som utstrålar uppriktig glädje rycker oemotståndligt med sig de närvarande.</p><p>Arppa har omgivit sig med skickliga och ljusstarka musiker, och därigenom byggt upp en vacker och sammanhängande ljudbild kring sina stämningsfulla texter. I bandet medverkar musikerna Ville-Veikko Airaniemi, Eero Seppä och Okko Saastamoinen.</p><p>Efter att ha släppt sitt egenutgivna debutalbum <i>Laavalamppuja</i> i augusti 2020 har artisten snabbt klättrat från ett artistlöfte till ett av de mest aktuella och populära namnen i landet. Arppa släppte sitt andra album <i>Kinovalon alla</i> i september 2021. LP-skivorna i den första utgåvan av albumet sålde slut på tre veckor. Albumet tilltalade både publiken och kritikerna, och alla singlarna uppnådde riksomfattande radiospelning. Albumsläppet följdes av en turné som var så gott som utsåld på flera orter. Samma år fick artisten fyra Emma-nomineringar (Årets nykomling, Årets rock, Kritikernas val, publikomröstningen Årets artist) och en tredjeplats i Soundis publikomröstning om årets bästa album 2021. Arppa och hans band släppte sitt tredje album <i>Valeria</b> i mars 2023.</p><p>Konserten är en del av Arppas höstkonsertturné.</p><p>Föreställningen har paus, och ingen åldersgräns.</p>",
                "en": "<p>Arppa and his band are known for their high-energy concerts that are heavy on improvisation, and have become one of the top names of the current Finnish indie scene. Arppa’s enchanting music is timeless and his lyrics evoke the cinema. Now, Arppa is bringing his concert tour to Kanneltalo!</p><p>Arppa’s insightful, sincere and laser-sharp depictions of atmospheres go from Ykspihlaja in Kokkola to night-time Helsinki and onward to a July ‘58 speakeasy with Laila Kinnunen. It is impossible to not get swept away by Arppa’s natural presence and the band’s palpable, sincere joy of performing.</p><p>Arppa has gathered a group of skilled, expressive musicians, who has allowed his atmospheric texts to be surrounded by a beautiful and harmonious soundscape. His band includes musicians Ville-Veikko Airaniemi, Eero Seppä and Okko Saastamoinen.</p><p>The artist, who released his self-published debut album Laavalamppuja in August 2020, has quickly cashed in the promise of new artist and become one of Finland’s most popular names. Arppa’s second album, Kinovalon alla, was released in September 2021. The LPs of the first edition of the album sold out in three weeks. The album was liked by both audiences and critics, and all of its singles all received airtime on national radio. The album was followed by a tour, the gigs of which were largely sold out in several locations. The same year saw the artist be nominated for four Emma awards (Rookie of the Year, Rock of the Year, Critics' Choice, Artist of the Year Audience Vote) as well as a third place in Soundi magazine’s Best Albums Audience Vote for 2021. Arppa and his band released their third album, Valeria, in March 2023.</p><p>The gig is part of Arppa's autumn concert tour.</p><p>There will be an intermission; no age limit.</p>"
            },
            "name": {
                "fi": "Arppa LOPPUUNMYYTY",
                "sv": "Arppa SLUTSÅLD",
                "en": "Arppa SOLD OUT"
            },
            "provider_contact_info": null,
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64299/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}