Filtering retrieved events

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

Ongoing local events

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

Examples:

event/?local_ongoing_OR=lapsi,musiikki

See the result

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

See the result

Ongoing internet events

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

Example:

event/?internet_ongoing_AND=lapsi,musiikki

See the result

All ongoing events

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

Example:

event/?all_ongoing_AND=lapsi,musiikki

See the result

Internet based

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

Example:

event/?internet_based=true

See the result

Event time

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

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

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

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

Example:

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

See the result

event/?start=now&end=today

See the result

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

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

Example:

event/?days=7

See the result

Event start/end time

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

The parameters can be given as:

  • Hours only
  • Hours and minutes separated by a colon

Example:

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

See the result

Event weekday

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

The parameter can include:

  • One weekday
  • Multiple weekdays separated by a comma

Example (Saturdays and Sundays):

event/?weekday=6,7

See the result

Event duration

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

The parameters are expressed in format:

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

Example:

event/?max_duration=3d

See the result

Event location

Bounding box

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

bbox=west,south,east,north

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

Example:

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

See the result

Specific location

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

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

Example:

event/?location=tprek:28473

See the result

District

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

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

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

Example:

event/?division=malmi

See the result

Within a distance (or "circle filter")

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

dwithin_origin=lon,lat&dwithin_metres=distance

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

Example:

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

See the result

Event category

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

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

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

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

Example:

event/?keyword=yso:p4354

See the result

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

See the result

Keyword set search

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

Event last modification time

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

Example:

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

See the result

Specific ids

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

Example:

event/?ids=helsinki:1

See the result

Event status

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

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

Example:

event/?event_status=EventCancelled

See the result

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

Example:

event/?event_status=EventCancelled,EventPostponed

Event type

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

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

Example:

event/?event_type=General,Course

See the result

Event text

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

Example:

event/?text=shostakovich

See the result

Combined text

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

Example:

event/?combined_text=lapppset

See the result

Event price

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

Example:

event/?is_free=true

See the result

Event language

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

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

Example:

event/?language=ru

See the result

Event audience age boundaries.

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

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

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

Example:

event/?audience_min_age_gt=10

See the result

Select events suitable for certain age.

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

Examples:

event/?suitable_for=12

See the result

event/?suitable_for=12,14

See the result

Event publisher

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

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

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

Example:

event/?publisher=ytj:0586977-6

See the result

event/?publisher_ancestor=ahjo:00001

See the result

Event data source

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

Example:

event/?data_source=helsinki

See the result

Event hierarchy

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

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

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

Super event type

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

Example:

event/?super_event_type=umbrella,none

See the result

Super event

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

Example:

event/?super_event=linkedevents:agg-103

See the result

Hide super event

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

Example:

event/?hide_super_event=true

See the result

Hide recurring children

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

Example:

event/?hide_recurring_children=true

See the result

Sub events

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

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

Example:

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

See the result

Event with registration

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

Example:

event/?registration=true

See the result

Open enrolment

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

For example:

event/?enrolment_open_waitlist=true

See the result

Enrolment open on a given date

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

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

For example:

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

See the result

Attendee capacity

Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:

Filtering for maximum_attendee_capacity

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

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

Example:

event/?maximum_attendee_capacity_gte=10

See the result

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

Example:

event/?maximum_attendee_capacity_lte=10

See the result

Filtering for minimum_attendee_capacity

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

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

Example:

event/?minimum_attendee_capacity_gte=10

See the result

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

Example:

event/?minimum_attendee_capacity_lte=10

See the result

Remaining registration attendee or waiting list capacity

Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:

Filtering for registration remaining_attendee_capacity

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

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

Example:

event/?registration__remaining_attendee_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_attendee_capacity__isnull=true

See the result

Filtering for registration remaining_waiting_list_capacity

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

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

Example:

event/?registration__remaining_waiting_list_capacity__gte=10

See the result

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

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

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

Example:

event/?registration__remaining_waiting_list_capacity__isnull=true

See the result

Filtering for authenticated users

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

Show all events

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

Example:

event/?show_all=true

See the result

Publication status

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

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

Example:

event/?publication_status=draft

See the result

Only editable events

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

Example:

event/?admin_user=true

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

Getting detailed data

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

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

Example:

event/?include=location,keywords

See the result

Ordering

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

{
    "meta": {
        "count": 24656,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=246",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=244"
    },
    "data": [
        {
            "id": "kulke:64301",
            "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/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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151915,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T08:14:32.913327Z",
                    "last_modified_time": "2024-07-26T08:14:32.913342Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753202.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151915/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T08:14:32.876671Z",
            "last_modified_time": "2024-12-20T01:14:00.042026Z",
            "date_published": null,
            "start_time": "2024-11-04T16:00:00Z",
            "end_time": "2024-11-04T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Suuren yleisön tietoisuuteen Idols-voittajana noussut Pakarinen on tehnyt komean uran popmusiikin parissa.",
                "sv": "Pakarinen som blev känd för allmänheten som Idols-vinnare har haft en lysande karriär inom popmusiken.",
                "en": "Pakarinen, who rose to the attention of the general public as an Idols contest winner, has forged an impressive career in pop music."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/38919E166EC5A5F8D795C3C92B4360D6/Juurilla_Hanna_Pakarinen",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/38919E166EC5A5F8D795C3C92B4360D6/Vid_rotterna_Hanna_Pakarinen",
                "en": "http://www.kanneltalo.fi/en/events/event/38919E166EC5A5F8D795C3C92B4360D6/At_the_Roots_Club_Hanna_Pakarinen"
            },
            "name": {
                "fi": "Juurilla: Hanna Pakarinen – Maksuttomat maanantait",
                "sv": "Vid rötterna: Hanna Pakarinen – Kostnadsfria måndagar",
                "en": "At the Roots Club: Hanna Pakarinen – Free Mondays"
            },
            "description": {
                "fi": "<p>Suuren yleisön tietoisuuteen Idols-voittajana noussut Pakarinen on tehnyt komean uran popmusiikin parissa.</p><p>Ahkerasti keikkaileva Pakarinen on julkaissut musiikkia englanniksi ja suomeksi. Ajankohtainen artisti nähdään Vain Elämää -ohjelman 15. kaudella syyskuussa, joten Juurilla-klubillakin luvassa on monipuolinen kattaus Pakarisen tuotantoa.</p><p>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan Juki Välipakka ja The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band: <br>Juki Välipakka – laulu & kitara<br>Lasse Sirkko – basso <br>Tommi Lievemaa – kitara <br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saksofoni <br>Kepa Kettunen – rummut</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>",
                "sv": "<p>Pakarinen som blev känd för allmänheten som Idols-vinnare har haft en lysande karriär inom popmusiken.</p><p>Den flitigt turnerande Pakarinen har gett ut musik på engelska och finska. I september medverkar den aktuella artisten i den 15:e säsongen av TV-programmet Vain Elämää, och därmed erbjuder även Juurilla-klubben en mångsidig dukning av Pakarinens produktion.</p><p>Den pulserande kärnan i måndagskvällens favoritklubb är jazz, blues, country, folk, rhythm and blues, bluegrass och americana-rootsmusik. Som förut är Juki Välipakka och The Rooty Toot Toot Band värdar för Juurilla-klubben.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – sång & gitarr<br>Lasse Sirkko – bas<br>Tommi Lievemaa – gitarr<br>Olli Haavisto – pedalstål<br>Sirpa Suomalainen – saxofon<br>Kepa Kettunen – trummor</p><p>Börja veckan i en slående stämning! <br>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>",
                "en": "<p>Pakarinen, who rose to the attention of the general public as an Idols contest winner, has forged an impressive career in pop music.</p><p>Hard-working Pakarinen has released music in both English and Finnish. She will be featured in the 15th season of The Best Singers in September, which means that At the Roots Club will also feature a varied selection of Pakarinen's music.</p><p>The pulsating heart of everyone’s favourite Monday night club is made of jazz, blues, country, folk, rhythm and blues, bluegrass and Americana roots music. As usual, the club hosts are Juki Välipakka and The Rooty Toot Toot Band.</p><p>The Rooty Toot Toot Band:<br>Juki Välipakka – vocals & guitar<br>Lasse Sirkko – bass<br>Tommi Lievemaa – guitar<br>Olli Haavisto – pedal steel guitar<br>Sirpa Suomalainen – saxophone<br>Kepa Kettunen – drums</p><p>Free Mondays<br>Start your week with some catchy tunes! <br>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64301/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64574",
            "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: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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152692,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T08:13:41.915356Z",
                    "last_modified_time": "2024-10-02T08:13:41.915371Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758145.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152692/?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-10-02T08:13:41.890598Z",
            "last_modified_time": "2024-12-20T01:13:59.426014Z",
            "date_published": null,
            "start_time": "2024-11-02T14:00:00Z",
            "end_time": "2024-11-02T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Maaginen ja juuri sopivan jännittävä pimeän ja valon juhla saapuu taas Stoaan!",
                "sv": "Den magiska och precis lagom spännande mörker- och ljusfesten återvänder till Stoa!",
                "en": "The magical and perfectly thrilling celebration of dark and light is coming back to Stoa!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DCE3BED2BD9EC52A8F47B832F760CADE/Kauhua_kakaroille",
                "sv": "http://www.stoa.fi/sv/evenemang/event/DCE3BED2BD9EC52A8F47B832F760CADE/Kauhua_kakaroille",
                "en": "http://www.stoa.fi/en/events/event/DCE3BED2BD9EC52A8F47B832F760CADE/Kauhua_kakaroille_kids_Halloween_event"
            },
            "name": {
                "fi": "Kauhua kakaroille – Stoa 40!",
                "sv": "Kauhua kakaroille – Stoa 40!",
                "en": "Kauhua kakaroille kids’ Halloween event – Stoa 40!"
            },
            "description": {
                "fi": "<p>Maaginen ja juuri sopivan jännittävä pimeän ja valon juhla saapuu taas Stoaan!</p><p>Värikkäät ja suuret valopallot kutsuvat kaikenikäiset jännittävien ihmeiden pariin jo Stoan aukiolla. Ehkä törmäät samalla lyhyt- ja pitkäjalkaisiin sirkushahmoihin ja uskallat vierailla Kammokujalla.</p><p>Kello 16.30 ja 18 Mutaveijarit ja Töölö Brass Band yhdistävät voimansa ja huolehtivat siitä, että tapahtumassa todellakin soitto soi!</p><p>Talo täyttyy myös monenlaisesta tekemisestä: voit vierailla Kammokujalla, tanssia discossa, rakennella Hämärän hiipijöitä tai koristautua glittertatuoinnein. Tule pyhäinpäivän hengen mukaisesti pukeutuneena tai ihan omana itsenäsi – tänä iltana mukaan mahtuvat kaikenlaiset kummajaiset!</p><p><b>Ohjelma</b></p><p><b>klo 16–19 Opus Company: Lightsphere –valoteos Stoan aukiolla</b><br>Suurista palloista koostuva teos täyttää Stoan aukion valolla ja liikkeellä. Kosketus ja ihmisten liike herättävät valopallot eloon. Lightsphere-teos kutsuu kaikenikäiset katsojat uppoutumaan leikkisään ja mielikuvitukselliseen tilaan, jossa taide ja teknologia yhdistyvät. Koko perheelle suunnatun interaktiivisen valotaideinstallaation on luonut Opus Company.</p><p><b>klo 16.30 ja 18 Mutaveijarit ja Töölö Brass Band</b><br>Lastenmusiikkiyhtye Mutaveijarit ja Töölö Brass-orkesteri tempaavat mukaansa jännittävälle seikkailuille ympäri maailman ja läpi merten sekä järvien. Matkalla kohdataan monenmoista hurjaa ja hauskaa tuttua. Konsertissa lauletaan ja leikitään yhdessä sekä keitetään huikeimmat kuravellit ja leivotaan valtavimmat mutakakut. . Kesto 30 min. HUOM! Lippuja konsertteihin jaetaan Stoan aulassa maksutta klo 16 alkaen.</p><p><b>klo 16.30–17.30 ja klo 18–18.45<br>DJ Academy: Kauhua kakaroille –disko</b><br>Stoan aula muuntuu tanssilattiaksi, kun DJ Academy saapuu paikalle! DJ Blurred Boy ja DJ Pyry Aalto soittavat pyhäinpäivän tunnelmat kohdilleen koko perheelle sopivalla otteella.</p><p><b>klo 16–19 Tip Top Walkers</b><br>Stoassa ja Stoan aukiolla voit kohdata ystävällisiä Dia de los Muertos-hahmoja.</p><p><b>klo 16–18.30 Kammokuja</b><br>Kirjastosta pääset kammokujalle etsimään mörköjä ja kummituksia. Kammokuja toteutetaan yhteistyössä Nuorten toimintatalo Kipinän kanssa.</p><p><b>klo 16–19 Kauhua kiireestä kynnenpäähän!</b> <br>Tule kokeilemaan kauhean ihanaa kynsitaidetta ja anna nuorten taikoa itsellesi lakkaus, jossa pääosassa ovat kummitukset, lepakot ja hämähäkit! Kynsileimoilla voit kauhistuttaa kavereita, olivat kyntesi lyhyet tai pitkät ja olet tottunut tai tottumaton kynsilakan käyttäjä.</p><p><b>klo 16–18.30 Hämärän hiipijät</b> <br>Pimeässä tapahtuu paljon kummallista, ihmeellistä ja ihanaa. Millaisen otuksen sinä näet hämärässä? Onko hiipijälläsi häntä, huisin pitkät korvat tai sittenkin pomppivat saparot?<br>Ohjaaja: Jenni Vilander<br> <br><b>klo 16–18.30 Kimaltavaa kauhua: glittertatuoinnit</b><br>Kimaltavaa kauhua ja karmeita kuvioita: hae itsellesi hurjan hieno glittertatuointi!<br>Ohjaaja: Greta Salonen<br> <br><b>klo 16–18.30 Kosmista hiekkaa</b><br>Pimeään maisemaan piirtyy valkeita hahmoja, kun taiteillaan valkoisella hiekalla mustalle taustalle hetkellisiä kuvia. Ohjaaja: Chloé Mahy-Hulkko</p><p><b>klo 16–19 Espanjaa hauskasti</b><br>Pelataan oppien espanjaa helposti Halloweenin hengessä!<br>Alle kouluikäiset vain vanhemman seurassa.<br> <br><b>klo 16–19 Hurjan hauskat naamiot-työpaja</b><br>Taiteillaan mielikuvituksellinen ja hurjan hauska naamari halloweenin hengessä!<br>Alle kouluikäiset vain vanhemman seurassa.<br> <br><b>klo 16–19 Tupsumonsteri-työpaja</b><br>Tee langoista tupsu ja lisää siihen silmät ja muita yksityiskohtia oman ideasi mukaan. Onko sinun monsterisi lempeä vai kauhistuttava? Alle kouluikäiset vain vanhemman seurassa.</p><p><b>klo 16.30–18.30 Kauhujen valokabinetti</b><br>Valomaalaa itsesi valohahmoksi! Saat vierellesi haluamasi kauhukuvan. Voit ottaa lopullisesta valomaalauksesta kuvan omalla kamerallasi. Ohjaaja: valotaiteilija Jukka Laine<br> <br>Lisäksi kirjastossa klo 16–19 Karmaisevaa luettavaa ja hurjia tarinatuokioita!</p><p>Stoan galleriassa on esillä Tulevien kuolleiden päiväkirja -näyttely, jossa on esillä ohikiitävien elämien varjokuv</p>",
                "sv": "<p>Den magiska och precis lagom spännande mörker- och ljusfesten återvänder till Stoa!</p><p>Färgglada och stora ljussfärer inbjuder alla åldrar att uppleva spännande underverk redan på Stoaplatsen. Kanske stöter du även på kort- och långbenta cirkusfigurer och vågar dig på ett besök på Skräckgränden.</p><p>Klockan 16.30 och 18 slår Mutaveijarit och Tölö Brass Band ihop sina krafter och ser till att evenemanget verkligen ljuder av musik!</p><p>Huset är också fullt av saker att göra: du kan besöka Skräckgränden, dansa på disko, bygga Skymningssmygare eller pynta dig med glittertatueringar. Kom klädd i helgens anda eller som du är – denna kväll ryms alla slags märkvärdigheter med!</p><p><b>Program</b></p><p>kl. 16–19 Opus Company: Ljusverket Lightsphere på Stoaplatsen<br>Verket består av flera stora sfärer och fyller Stoaplatsen med ljus och rörelse. Beröring och människors rörelser väcker ljussfärerna till liv. Verket Lightsphere bjuder in åskådare i alla åldrar att fördjupa sig i ett lekfullt och fantasifullt rum, där konst och teknik möts. Den interaktiva ljuskonstinstallationen för hela familjen har skapats av Opus Company.</p><p>kl. 16.30 och 18 Mutaveijarit och Töölö Brass Band<br>Barnmusikbandet Mutaveijarit och Tölö Brass-orkestern tar dig med på spännande äventyr runt om i världen och över hav och sjöar. Längs vägen möter vi många vilda och skojiga bekanta. På konserten sjunger och leker vi tillsammans, kokar de fantastiska lervällingar och bakar enorma lerkakor. Längd 30 min. OBS! Biljetter till konserterna delas ut avgiftsfritt i Stoas lobby från kl. 16.</p><p>kl. 16.30–17.30 och 18–18.45<br>DJ Academy: Skräck för rackarungar-disko<br>När DJ Academy anländer förvandlas Stoas lobby till ett dansgolv! DJ Blurred Boy och DJ Pyry Aalto fixar helgstämning med en familjevänlig twist.</p><p>kl. 16–19 Tip Top Walkers<br>I Stoa och på Stoaplatsen får du träffa vänliga Dia de los Muertos-figurer.</p><p>kl. 16–18.30 Skräckgränden<br>Från biblioteket kommer du till Skräckgränden för att leta efter monster och spöken. Skräckgränden genomförs i samarbete med de ungas aktivitetshus Kipinä.</p><p>kl. 16–19 Skräck från topp till tå!<br>Kom och pröva på skräckinjagande underbar nagelkonst och låt de unga trolla fram nagellack med spöken, fladdermöss och spindlar! Med nagelstämplar kan du skrämma dina vänner, oavsett om dina naglar är korta eller långa, eller du är van vid nagellack eller inte. Kom och välj ditt eget läskiga mönster och delta i den skräckinjagande stämningen ända ut i fingerspetsarna!</p><p>kl. 16–18.30 Skymningssmygare<br>Många märkliga, underliga och underbara saker händer i mörkret. Vilken slags varelse ser du i skymningen? Har din smygare en svans, jättelånga öron eller studsande flätor?<br>Handledare: Jenni Vilander</p><p>kl. 16–18.30 Glittrande skräck: glittertatueringar<br>Glittrande skräck och läskiga mönster: skaffa dig en snygg glittertatuering!<br>Handledare: Greta Salonen</p><p>kl. 16–18.30 Kosmisk sand<br>Vita figurer framträder i det mörka landskapet när du målar ögonblicksbilder av vit sand mot en svart bakgrund. Handledare: Chloé Mahy-Hulkko</p><p>kl. 16–19 Skojig spanska<br>Vi spelar och lär oss enkelt spanska i Halloween-anda!<br>Barn under skolåldern endast i sällskap av en vuxen.</p><p>kl. 16–19 Vilt roliga masker-workshop<br>Vi skapar en fantasifull och vilt rolig mask i Halloween-anda!<br>Barn under skolåldern endast i sällskap av en vuxen.</p><p>kl. 16–19 Tofsmonster-workshop<br>Gör en tofs av garn och lägg till ögon och andra detaljer efter egen fantasi. Är ditt monster snällt eller skräckinjagande? Barn under skolåldern endast i sällskap av en vuxen.</p><p>kl. 16–18.30 Ljus och skuggor<br>Skugginstallationer ger liv till alla möjliga fantastiska varelser!</p><p>På biblioteket även Spöklik läsning och vilda sagostunder kl. 16–19!</p>",
                "en": "<p>The magical and perfectly thrilling celebration of dark and light is coming back to Stoa!</p><p>The colourful and large spheres of light in Stoa square invite people of all ages to experience the exciting wonders. Maybe you’ll also bump into short- and long-legged circus characters and dare to visit the Kammokuja Fright Alley.</p><p>At 16:30 and 18:00 Mutaveijarit and Töölö Brass Band will join forces and make sure that the event will be lively!</p><p>The house will also be full of all sorts of activities: you can visit the Kammokuja Fright Alley, dance at the disco, create Twilight Creepers or decorate yourself with glitter tattoos. Come dressed in the spirit of All Saints’ Day or just as you are – everyone will fit in tonight!</p><p><b>Programme</b></p><p>16:00–19:00 Opus Company: Lightsphere light artwork in Stoa Square<br>This artwork consisting of large spheres will fill Stoa square with light and movement. Touch and human movement bring the light spheres to life. Lightsphere invites viewers of all ages to immerse themselves in a playful and imaginative space where art and technology come together. This interactive light art installation for the whole family was created by Opus Company.</p><p>16:30 and 18:00 Mutaveijarit and Töölö Brass Band<br>The children’s music group Mutaveijarit and Töölö Brass Orchestra will take you on an exciting adventure around the world and across the seas and lakes. You’ll encounter a variety of wild and fun acquaintances along the way. The concert will include singing and playing together, cooking the most amazing mud porridge and making the biggest mud cakes. Duration: 30 min. PLEASE NOTE! Tickets to the concerts are distributed free of charge in the Stoa lobby starting at 16:00.</p><p>16:30–17:30 and 18:00–18:45<br>DJ Academy: Kauhua kakaroille disco (Kids’ Halloween event)<br>Stoa’s lobby will transform into a dance floor when DJ Academy arrives! DJ Blurred Boy and DJ Pyry Aalto will play music to set the All Saints’ Day mood in a way that’s suitable for the whole family.</p><p>16:00–19:00 Tip Top Walkers<br>At Stoa and Stoa square, you can meet friendly Dia de los Muertos characters.</p><p>16:00–18:30 Kammokuja Fright Alley<br>You can access Fright Alley from the library to search for monsters and ghosts. Kammokuja Fright Alley will be created in cooperation with the Kipinä Youth Activity House.</p><p>16:00–19:00 Horror from head to fingernail!<br>Come and try out some awesome spooky nail art, and let our young artists conjure up a polish for you that stars ghosts, bats, and spiders! You can give your friends a fright with nail stamps, whether your nails are short or long and whether you're used to nail polish or not. Come choose your own scary pattern and get into the spooky spirit all the way to your fingertips!</p><p>16:00–18:30 Twilight Creepers<br>Many strange, wonderful and delightful things happen in the dark. What kind of creature do you see in the twilight? Does your creeper have a tail, super-long ears, or even bouncy pigtails?<br>Instructor: Jenni Vilander</p><p>16:00–18:30 Spooky Sparkles: glitter tattoos<br>Spooky sparkles and creepy patterns: get yourself a fabulous glitter tattoo!<br>Instructor: Greta Salonen</p><p>16:00–18:30 Cosmic Sand<br>White figures appear in the dark landscape, as we use white sand to paint fleeting images on a black background. Instructor: Chloé Mahy-Hulkko</p><p>16:00–19:00 Have Fun Learning Spanish<br>Play games and learn Spanish with ease in the spirit of Halloween!<br>Children under school age are only allowed accompanied by a parent.</p><p>16:00–19:00 Frightfully Fun Masks Workshop<br>We’ll create imaginative and wildly funny masks in the spirit of Halloween!<br>Children under school age are only allowed accompanied by a parent.</p><p>16:00–19:00 Tassel Monster Workshop<br>Make a tassel out of yarn and add eyes and other details however you like. Is your monster gentle or terrifying? Children under school age are only allowed accompanied by a parent.</p><p>16:00–18:30 Light and Shadows<br>Various wondrous creatures come to life in shadow compositions!</p><p>In addition, there will be scary books and exciting storytimes at t</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64574/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64647",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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/yso:p21812/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152693,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-02T08:18:15.824351Z",
                    "last_modified_time": "2024-10-02T08:18:15.824363Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758842.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152693/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-02T08:18:15.796722Z",
            "last_modified_time": "2024-12-20T01:13:59.330522Z",
            "date_published": null,
            "start_time": "2024-11-02T14:00:00Z",
            "end_time": "2024-11-02T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Useista suurista palloista koostuva teos täyttää Stoan aukion valolla ja liikkeellä.",
                "en": "Lightsphere is an interactive light art installation for the enjoyment of the whole family created by Opus Company."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/DD2593A2C11C69645D6984322FC5EEB5/Lightsphere_Stoan_aukiolla",
                "en": "http://www.stoa.fi/en/events/event/DD2593A2C11C69645D6984322FC5EEB5/Opus_Company_Lightsphere"
            },
            "name": {
                "fi": "Lightsphere Stoan aukiolla – Stoa 40!",
                "en": "Opus Company: Lightsphere – Stoa 40!"
            },
            "description": {
                "fi": "<p>Useista suurista palloista koostuva teos täyttää Stoan aukion valolla ja liikkeellä.</p><p>Pallot on suunniteltu reagoimaan vuorovaikutukseen yleisön kanssa. Kosketus ja ihmisten liike herättävät valopallot hauskalla tavalla eloon. Lightsphere-teos kutsuu kaikenikäiset katsojat uppoutumaan kokemukseen, joka täyttää Stoan aukion ihmetyksen ja jännityksen tunteella.</p><p>Lightsphere tarjoaa leikkisän ja mielikuvituksellisen tilan, jossa taide ja teknologia yhdistyvät. Koko perheelle suunnatun interaktiivisen valotaideinstallaation on luonut Opus Company.</p><p>Vapaa pääsy</p>",
                "en": "<p>Lightsphere is an interactive light art installation for the enjoyment of the whole family created by Opus Company.</p><p>This captivating exhibit features large, luminescent spheres that fill the space with a sense of wonder and excitement. Not merely decorative; the spheres are designed to respond to interaction, coming to life through play.</p><p>The environment encourages exploration and creativity, inviting spectators of all ages to immerse themselves in the experience. Whether gently nudging a sphere to see it glow or collaborating with others to create patterns of light, every interaction brings a unique element to the exhibit.</p><p>Lightsphere offers a playful and imaginative space where art and technology converge, fostering a sense of community and shared experience.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64647/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64442",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-115/?format=api"
            },
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152204,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-23T12:13:31.432017Z",
                    "last_modified_time": "2024-08-23T12:13:31.432033Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757175.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152204/?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-23T12:13:31.423110Z",
            "last_modified_time": "2024-12-20T01:13:59.077885Z",
            "date_published": null,
            "start_time": "2024-11-02T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.",
                "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.",
                "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DB56294CF930965FDFAD7F9B396ED461/Lasten_inklusiivinen_tanssitunti",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/DB56294CF930965FDFAD7F9B396ED461/Inkluderande_danslektion_for_barn",
                "en": "http://www.annantalo.fi/en/events/event/DB56294CF930965FDFAD7F9B396ED461/Children_s_Inclusive_Dance_Class_"
            },
            "name": {
                "fi": "Lasten inklusiivinen tanssitunti",
                "sv": "Inkluderande danslektion för barn",
                "en": "Children’s Inclusive Dance Class"
            },
            "description": {
                "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>",
                "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.  Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>",
                "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64442/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64758",
            "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: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:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?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"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152864,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-23T13:14:06.438272Z",
                    "last_modified_time": "2024-10-23T13:14:06.438287Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759960.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152864/?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-10-23T13:14:06.419460Z",
            "last_modified_time": "2024-12-20T01:13:58.527076Z",
            "date_published": null,
            "start_time": "2024-11-01",
            "end_time": "2024-11-30",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Kanneltalon aulaan sisustettu pieni runo-olohuone on soppi, jossa voit uppoutua tarinoihin.",
                "sv": "Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! I Gamlasgårdens entréhall har inretts ett litet diktvardagsrum som är en hörna där du kan dyka in i berättelser.",
                "en": "Take a seat on a sofa, grab a book and let Haitula whisk you away! Created in the lobby of Kanneltalo, the small Poetry Lounge is a cosy place where you can immerse yourself in stories."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3DE038BDA4EDBC6919D86F6B41D49B8E/Runo-olohuone_Kirsi_Kunnas_100_v",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3DE038BDA4EDBC6919D86F6B41D49B8E/Kirsi_Kunnas_100_Diktvardagsrum_",
                "en": "http://www.kanneltalo.fi/en/events/event/3DE038BDA4EDBC6919D86F6B41D49B8E/Kirsi_Kunnas_100_years_Poetry_Lounge_"
            },
            "name": {
                "fi": "Runo-olohuone – Kirsi Kunnas 100 v",
                "sv": "Kirsi Kunnas 100 – Diktvardagsrum",
                "en": "Kirsi Kunnas 100 years – Poetry Lounge"
            },
            "description": {
                "fi": "<p>Istu sohvalle, ota kirja ja anna Haitulan viedä mukanaan! Kanneltalon aulaan sisustettu pieni runo-olohuone on soppi, jossa voit uppoutua tarinoihin.</p><p>Kirjailija <b>Kirsi Kunnaksen</b> (1924–2021) 100-vuotisjuhlaa vietetään vuonna 2024. Valtakunnallisen juhlavuoden keskiössä ovat suomalainen lastenrunous, leikki, lukuilo ja lasten kulttuurinen toimijuus. Runo-olohuone pohjautuu Kunnaksen lastenrunoihin ja kuvittaja <b>Jani Ikosen</b> kuviin.</p><p>Ensimmäinen Runo-olohuone avautui Kulttuurikeskus PiiPoossa helmikuussa 2024. Runojen ja kuvitusten lisäksi näyttelyn perustana ovat lasten ja taiteilijoiden yhdessä suunnittelemat runotehtävät. Näyttelykonsepti kiertää eri kokoisilla toteutuksilla lastenkulttuurikeskuksissa, kirjastoissa ja muissa kulttuuritiloissa vuosina 2024–2025.</p><p>Yhteistyössä Annantalon ja Kannelmäen kirjaston kanssa.</p>",
                "sv": "<p>Sätt dig på soffan, ta en bok och låt Haitula föra dig till sin värld! I Gamlasgårdens entréhall har inretts ett litet diktvardagsrum som är en hörna där du kan dyka in i berättelser.</p><p>Författaren <b>Kirsi Kunnas</b> (1924–2021) 100-årsjubileum firas 2024. I hjärtat av det riksomfattande jubileumsåret ligger den finländska barnpoesin, leken, läsglädjen och barnens kulturella handlingskraft. Diktvardagsrummet är baserat på Kunnas barndikter och bilder av illustratören <b>Jani Ikonen.</b></p><p>Det första Diktvardagsrummet öppnades i Kulturcentret PiiPoo i februari 2024. Förutom dikterna och illustrationerna bygger utställningen på diktuppgifter som barn och konstnärer har utarbetat tillsammans. Utställningskonceptet turnerar i varierande storlek i barnkulturcenter, bibliotek och andra kulturlokaler 2024–2025.</p><p>I samarbete med Annegården och Gamlas bibliotek.</p>",
                "en": "<p>Take a seat on a sofa, grab a book and let Haitula whisk you away! Created in the lobby of Kanneltalo, the small Poetry Lounge is a cosy place where you can immerse yourself in stories.</p><p>2024 marks the 100th anniversary of the birth of author <b>Kirsi Kunnas</b> (1924–2021). At the heart of the national centenary year are Finnish children’s poetry, play, the joy of reading and children’s cultural agency. The Poetry Lounge is based on Kunnas’ children’s poems and illustrations by <b>Jani Ikonen.</b></p><p>The first Poetry Lounge was opened at Cultural Centre PiiPoo in February 2024. In addition to poems and illustrations, the exhibition is based on poetry tasks created by children and artists together. The exhibition concept will tour children’s culture centres, libraries and other cultural venues in 2024 and 2025, with the size of the lounge changing each time.</p><p>Arranged in cooperation with Annantalo and Kannelmäki library.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64758/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64757",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152863,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-23T13:14:06.291729Z",
                    "last_modified_time": "2024-10-23T13:14:06.291746Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759934.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152863/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-23T13:14:06.241994Z",
            "last_modified_time": "2024-12-20T01:13:58.444643Z",
            "date_published": null,
            "start_time": "2024-11-01",
            "end_time": "2024-11-30",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Viidakko-teoskokonaisuuden innoittajana on elämä.",
                "sv": "Konstverkshelheten Viidakko har fått inspiration av livet.",
                "en": "The Jungle exhibition is inspired by life."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/F0B243884A0E7172DCCEB4C6E683AE17/Viidakko_Leena_Salmion_teoksia",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/F0B243884A0E7172DCCEB4C6E683AE17/Djungel_verk_av_Leena_Salmio",
                "en": "http://www.kanneltalo.fi/en/events/event/F0B243884A0E7172DCCEB4C6E683AE17/Viidakko_Jungle_works_by_Leena_Salmio"
            },
            "name": {
                "fi": "Viidakko – Leena Salmion teoksia – Haagan Taideseura",
                "sv": "Djungel – verk av Leena Salmio – Haagan Taideseura",
                "en": "Viidakko (Jungle) – works by Leena Salmio – Haagan Taideseura"
            },
            "description": {
                "fi": "<p>Viidakko-teoskokonaisuuden innoittajana on elämä.</p><p>Jollekin se voi olla iloa viherkasviharrastamisen muodossa, toisille elämän viidakko on kaikkea selviytymisen ja tasapainon väliltä. Joku hyppää avoimin kortein joukkoon tuntemattomaan ja antaa kaikkien värien viedä mennessään.</p><p>Ota tämä kasvimaailman innoittama värikkyys vastaan ja anna sen ilahduttaa marraskuista menoasi. Nauti kupponen kuumaa luomani Viidakon katveessa Kanneltalon kahvilassa.</p><p><b>Leena Salmio</b> on muotoilija amk, kulttuurituotannon yamk, jonka kuvataiteen maailma on vienyt mukanaan. Kuvallisen ilmaisun kautta hän haluaa herätellä katsojia ajattelemaan maailmanmenoa. Työskentelytapana ovat akryylimaalaus, hiilipiirtäminen, pastelli- ja sekatekniikka.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p>",
                "sv": "<p>Konstverkshelheten Viidakko har fått inspiration av livet.</p><p>För vissa kan det innebära glädje som grönväxthobbyn medför, för andra är livets djungel allt mellan att klara sig och att balansera. Någon hoppar in i det okända med öppna kort och låter alla färger svepa en med sig.</p><p>Ta emot färgrikedomen inspirerad av växtvärlden och låt den skapa glädje i ditt liv i november. Njut av en kopp varm dryck i skuggan av Djungeln jag skapat i Gamlasgårdens kafé.</p><p><b>Leena Salmio</b> är designer YH och kulturproducent högre YH, som har svepts med i bildkonstens värld. Via visuellt uttryck önskar hon få åskådarna att reflektera över världens gång. Hon arbetar med akrylmålningar, kolteckningar, pastellarbeten och blandteknik.</p>",
                "en": "<p>The Jungle exhibition is inspired by life.</p><p>For some, the jungle of life can mean the joy of growing plants, while others can see it as anything between survival and balance. Someone will willingly jump into the unknown and let all the colours take over.</p><p>Embrace the plant-inspired colourfulness and let it make your November a little better. Enjoy a hot beverage in the shadow of the jungle I created at the Kanneltalo café.</p><p><b>Leena Salmio</b> is a designer and master of culture production, who has been absorbed by the world of visual art. Through visual expression, she wants to encourage her viewers to think about what’s going on in the world. Her working methods include acrylic painting, charcoal drawing, pastels and mixed techniques.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64757/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64263",
            "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": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152235,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-28T13:15:12.009453Z",
                    "last_modified_time": "2024-08-28T13:15:12.009474Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750053.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152235/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-28T13:15:11.983687Z",
            "last_modified_time": "2024-12-20T01:13:58.306543Z",
            "date_published": null,
            "start_time": "2024-10-31T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Pianotaiteilija Niklas Pokin konsertti tarjoaa matkan musiikillisten kuvien maailmaan.",
                "sv": "Pianisten Niklas Pokkis konsert bjuder på en resa in i de musikaliska bildernas värld.",
                "en": "The concert by pianist Niklas Pokki is a journey into the world of musical images."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7CBE046D93458C1851398135BF053D96/Flyygelikuu_Niklas_Pokki",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/7CBE046D93458C1851398135BF053D96/Flyygelikuu_Niklas_Pokki",
                "en": "http://www.vuotalo.fi/en/events/event/7CBE046D93458C1851398135BF053D96/Flyygelikuu_Niklas_Pokki"
            },
            "name": {
                "fi": "Flyygelikuu: Niklas Pokki",
                "sv": "Flyygelikuu: Niklas Pokki",
                "en": "Flyygelikuu: Niklas Pokki"
            },
            "description": {
                "fi": "<p>Pianotaiteilija Niklas Pokin konsertti tarjoaa matkan musiikillisten kuvien maailmaan.</p><p>Konsertissa kuullaan Damströmin, Melartinin ja Mussorgskyn musiikkia. Aluksi Pokki esittelee konsertin teokset.</p><p>Ohjelma:<br>Cecilia Damström: Unda (2024)<br>Erkki Melartin: Katedralen, sarjasta Per Speculum in Aenigmate Op 93 (1912–14)<br>Modest Musosrgsky: Näyttelykuvia (1874)</p><p>Kesto: 45 min<br>Vapaa sisäänpääsy</p>",
                "sv": "<p>Pianisten Niklas Pokkis konsert bjuder på en resa in i de musikaliska bildernas värld.</p><p>På konserten får vi höra musik av Damström, Melartin och Mussorgsky. Pokki inleder med att presentera konsertens verk.</p><p>Program:<br>Cecilia Damström: Unda (2024)<br>Erkki Melartin: Katedralen, ur serien Per Speculum in Aenigmate Op 93 (1912–14)<br>Modest Mussorgsky: Tavlor på en utställning (1874)</p><p>Längd: 45 min.<br>Fri entré</p>",
                "en": "<p>The concert by pianist Niklas Pokki is a journey into the world of musical images.</p><p>The concert will feature music by Damström, Melartin and Mussorgsky. Initially, Pokki will present the works featured in the concert.</p><p>Programme:<br>Cecilia Damström: Unda (2024)<br>Erkki Melartin: Katedralen, from Per Speculum in Aenigmate Op 93 (1912–14)<br>Modest Mussorgsky: Pictures at an Exhibition (1874)</p><p>Duration: 45 mins.<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64263/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64735",
            "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: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/yso:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152838,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-21T09:16:07.247530Z",
                    "last_modified_time": "2024-10-21T09:16:07.247548Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759433.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152838/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-21T09:16:07.208562Z",
            "last_modified_time": "2024-12-20T01:13:57.748255Z",
            "date_published": null,
            "start_time": "2024-10-30T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ruotsalaiset lähiölapset, siskokset Laura, Mira ja Steffi näyttävät tulevan toimeen omillaan, elämästä puuttuvat vanhemmat.",
                "sv": "De svenska förortsbarnen, systrarna Laura, Mira och Steffi, verkar klara sig på egen hand, utan föräldrar.",
                "en": "In a working-class area of Sweden, sisters Laura (16), Mira (12), and Steffi (7), get by on their own, left to their own devices by an absent mother."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CA021FC1ABF31A16A3FF39DEE107816D/Siskoni_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/CA021FC1ABF31A16A3FF39DEE107816D/Paradiset_brinner_12_",
                "en": "http://www.vuotalo.fi/en/events/event/CA021FC1ABF31A16A3FF39DEE107816D/Paradise_is_Burning_12_"
            },
            "name": {
                "fi": "Siskoni (12) – Onsdagsbio",
                "sv": "Paradiset brinner (12) – Onsdagsbio",
                "en": "Paradise is Burning (12) – Onsdagsbio"
            },
            "description": {
                "fi": "<p>Ruotsalaiset lähiölapset, siskokset Laura, Mira ja Steffi näyttävät tulevan toimeen omillaan, elämästä puuttuvat vanhemmat.</p><p>Nykypäivän peppipitkätossujen arki on rajatonta ja anarkistista, raukeita kesäpäiviä pilkkovat vain erilaiset isoksi kasvamisen rituaalit.<br>Kun sosiaaliviranomaiset ilmoittavat tulevansa tarkistuskäynnille, Lauran on löydettävä joku esittämään heidän äitiään – muuten tytöt viedään kotoa ja erotetaan toisistaan.</p><p>Mika Gustafsonin villi, herkkä ja elinvoimainen esikoiselokuva SISKONI on oodi kaiken voittavalle sisaruudelle. Pääosissa nähdään räjähtävän karismaattinen kolmikko Bianca Delbravo, Dilvin Asaad ja Safira Mossberg.</p><p>Elokuva on palkittu Venetsian elokuvajuhlien Horizons-sarjassa parhaasta ohjauksesta ja Lontoon elokuvajuhlilla parhaana esikoisohjauksena. Ruotsissa elokuva sai kaksi Guldbaggea; paras <br>elokuva ja paras lavastus.</p><p>Kesto: 1h 50 min. <br>Kieli: ruotsi. <br>Tekstitys: suomeksi.<br>K12. <br>Vapaa pääsy.</p>",
                "sv": "<p>De svenska förortsbarnen, systrarna Laura, Mira och Steffi, verkar klara sig på egen hand, utan föräldrar.</p><p>Vardagen för dessa nutidens Pippi Långstrumpar är gränslös och anarkistisk, och det är bara uppväxtens olika ritualer som punkterar de långa sommardagarna. När socialtjänsten anar oråd och vill göra ett hembesök måste Laura hitta någon som kan låtsas vara deras mamma - annars kommer flickorna att tas från sitt hem och skiljas åt.<br> <br>Mika Gustafsons vilda, känsliga och livskraftiga debutfilm PARADISET BRINNER är ett ode till systerskapet som övervinner allt. I huvudrollerna ser vi den karismatiska trion Bianca Delbravo, Dilvin Asaad och Safira Mossberg. <br> <br>Filmen har belönats för bästa regi i Horizons-serien på Filmfestivalen i Venedig och för bästa regidebut på Londons Filmfestival. I Sverige fick filmen två guldbaggar; för bästa film och bästa scenografi. <br> <br>Längd: 1h 50 min. <br>Språk: svenska.<br>Text: finska. <br>F12. <br>Fri entré.</p>",
                "en": "<p>In a working-class area of Sweden, sisters Laura (16), Mira (12), and Steffi (7), get by on their own, left to their own devices by an absent mother.</p><p>With summer on the way and no parents around, life is wild and carefree, vivacious and anarchic. But when social services call a meeting, Laura has to find someone to impersonate their mom, or the girls will be taken into foster care and separated. Laura keeps the threat a secret, so as not to worry her younger sisters. But as the moment of truth draws closer, new tensions arise, forcing the three sisters to negotiate the fine line between the euphoria of total freedom and the harsh realities of growing up.<br> <br>Duration: 1 h 50 min.<br>Language: Swedish.<br>Subtitles: Finnish.<br>Age limit: 12.<br>Free entry.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64735/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64199",
            "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: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:p39492/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151704,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-12T13:13:34.357256Z",
                    "last_modified_time": "2024-07-12T13:13:34.357268Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751732.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151704/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-12T13:13:34.341512Z",
            "last_modified_time": "2024-12-20T01:13:57.608609Z",
            "date_published": null,
            "start_time": "2024-10-30T16:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?",
                "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?",
                "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/75986A58B75F1453F3697EF69E6507A9/Stoan_kuoro",
                "sv": "http://www.stoa.fi/sv/evenemang/event/75986A58B75F1453F3697EF69E6507A9/Stoas_kor_",
                "en": "http://www.stoa.fi/en/events/event/75986A58B75F1453F3697EF69E6507A9/Stoa_Choir_"
            },
            "name": {
                "fi": "Stoan kuoro – Stoa 40!",
                "sv": "Stoas kör – Stoa 40!",
                "en": "Stoa Choir – Stoa 40!"
            },
            "description": {
                "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>",
                "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>",
                "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64199/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64059",
            "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:288/?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:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151793,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-22T15:13:30.700415Z",
                    "last_modified_time": "2024-07-22T15:13:30.700433Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755410.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151793/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-22T15:13:30.683080Z",
            "last_modified_time": "2024-12-20T01:13:57.523776Z",
            "date_published": null,
            "start_time": "2024-10-30T15:00:00Z",
            "end_time": "2024-10-30T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!",
                "sv": "Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!",
                "en": "Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E4E0E7A2B14E03D1FFB1261BD9FD0261/Iltateella_Stoassa",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E4E0E7A2B14E03D1FFB1261BD9FD0261/Evening_Tea_at_Stoa",
                "en": "http://www.stoa.fi/en/events/event/E4E0E7A2B14E03D1FFB1261BD9FD0261/Kvallste_pa_Stoa"
            },
            "name": {
                "fi": "Iltateellä Stoassa – Stoa 40! Taidetauko-työpajat",
                "sv": "Evening Tea at Stoa – Stoa 40! Konstpaus-workshoppar",
                "en": "Kvällste på Stoa – Stoa 40! Art break workshops"
            },
            "description": {
                "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Taidetauko-pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Syksyn teemat:<br>Ke 25.9. – Huovutettu saippua <br>Ke 30.10. – Juhlivat värit <br>Ke 27.11. – Talven liekki</p><p>Ke 25.9. klo 17–19 Huovutettu saippua<br>Villan huovuttamisessa käytössä ovat kaikki aistit. Huovutettu saippua toimii pehmeänä pesusienenä.<br> <br>Ke 30.10. klo 17–19 Juhlivat värit <br>Stoan synttäreiden kunniaksi koristellaan kangaskasseja ja pieniä t-paitoja ruiskuemulsiolla. Tekniikka on värikäs ja hauska! Halutessasi voit tuoda oman paidan tai kankaan koristeltavaksesi.</p><p>Ke 27.11. klo 17–19.30 Talven liekki<br>Sydäntalvella tarvitaan valoa ja lämpöä. Työpajassa valetaan oma kynttilä. Pajaan mahtuu kerrallaan noin 15 henkilöä. Alle 10-vuotiaat aikuisten kanssa. Yksi kynttilä per osallistuja.<br> <br>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta, 27.11. 150 min<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. <br>Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p>Höstens teman:<br>Ons 25.9. – Filtad tvål <br>Ons 30.10. – Festliga färger <br>Ons 27.11. – Vinterns flamma</p><p>Ons 25.9. kl. 17–19 Filtad tvål<br>Att tova ull involverar alla sinnen. Den tovade tvålen fungerar som en mjuk tvättsvamp.<br> <br>Ons 30.10. kl. 17–19 Festliga färger <br>För att fira Stoas födelsedag dekorerar vi tygkassar och små t-skjortor med sprayemulsioner. Tekniken är färgglad och rolig! Om du vill kan du ta med dig en egen skjorta eller ett eget tyg att dekorera.</p><p>Ons 27.11. kl. 17–19.30 Vinterns flamma<br>Under midvintern behöver vi ljus och värme. I workshoppen stöper vi ett eget ljus. Cirka 15 personer kan delta samtidigt i workshoppen. Under 10-åringar i sällskap av en vuxen. Ett ljus per deltagare.<br> <br>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa<br>Längd: 120 min per gång, 27.11. 150 min.<br>Workshopparna handleds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice.</p><p>Autumn themes:<br>Wed 25 Sept – Felted Soap <br>Wed 30 Oct – Celebratory Colours <br>Wed 27 Nov – Winter Flame</p><p>Wed 25 Sept 5–7 pm Felted Soap<br>All the senses are used when creating wool felt. Felted soap works as a soft sponge.<br> <br>Wed 30 Oct 5–9 pm Celebratory Colours <br>We decorate fabric bags and small t-shirts with spray emulsion to celebrate Stoa’s birthday. It’s a colourful and fun technique! Bring your own shirt or fabric that you want to decorate.</p><p>Wed 27 Nov 5–7:30 pm Winter Flame<br>In midwinter, you need light and warmth. This workshop is for moulding your own candles. The workshop can accommodate about 15 participants at a time. Children under 10 years old must be accompanied by an adult. One candle per participant.<br> <br>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session, 27 November session is 150 min<br>Workshop instruction language: Finnish, French and English <br>Admission is free. No advance registration. <br>Stoa provides evening tea for participants.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64059/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64519",
            "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/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:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152302,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-05T11:13:57.881761Z",
                    "last_modified_time": "2024-09-05T11:13:57.881775Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749837.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152302/?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-09-05T11:13:57.866744Z",
            "last_modified_time": "2024-12-20T01:13:57.295201Z",
            "date_published": null,
            "start_time": "2024-10-30T08:00:00Z",
            "end_time": "2024-10-30T10: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.",
                "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.",
                "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/17C1936D88E6809FD58F61F0C766F947/Naperokino",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/17C1936D88E6809FD58F61F0C766F947/Knattebion_",
                "en": "http://www.annantalo.fi/en/events/event/17C1936D88E6809FD58F61F0C766F947/Toddler_cinema"
            },
            "name": {
                "fi": "Naperokino",
                "sv": "Knattebion",
                "en": "Toddler cinema"
            },
            "description": {
                "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>",
                "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>",
                "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64519/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64262",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api"
                },
                {
                    "@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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152113,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-08-14T13:15:25.972401Z",
                    "last_modified_time": "2024-08-14T13:15:25.972419Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_739355.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152113/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-08-14T13:15:25.930429Z",
            "last_modified_time": "2024-12-20T01:13:56.780656Z",
            "date_published": null,
            "start_time": "2024-10-29T12:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kotikaupunkikiertueelle Helsingin kaupunginorkesteri pakkaa mukaan Jean Sibeliuksen teatterimusiikkia sekä nuoren Mozartin säveltämä makupalan, jonka taivaallisen kauniissa hitaassa osassa soolopuhaltajat pääsevät hurmaamaan.",
                "sv": "För hemstadsturnén packas i kappsäcken teatermusik av Jean Sibelius och en ung Mozarts godbit med en himmelskt vacker långsam sats i vilken soloblåsarna ges chansen att charma.",
                "en": "The Helsinki Philharmonic Orchestra’s hometown tour features theatre music of Jean Sibelius, as well as a piece composed by the young Mozart, whose heavenly, beautiful slow movement allows the wind instruments soloists to charm their audiences."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/DFA14EBB60091E57084996B23A49B7C7/HKO_Koko_kaupungin_orkesteri_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/DFA14EBB60091E57084996B23A49B7C7/Hela_stadens_orkester_Helsingfors_stadsorkester_",
                "en": "http://www.vuotalo.fi/en/events/event/DFA14EBB60091E57084996B23A49B7C7/Hometown_Orchestra_Helsinki_Philharmonic_Orchestra_"
            },
            "name": {
                "fi": "HKO – Koko kaupungin orkesteri – Tiistaimatineakonsertti",
                "sv": "Hela stadens orkester: Helsingfors stadsorkester – Tisdagsmatinékonsert",
                "en": "Hometown Orchestra: Helsinki Philharmonic Orchestra – Tuesday Matinee"
            },
            "description": {
                "fi": "<p>Kotikaupunkikiertueelle Helsingin kaupunginorkesteri pakkaa mukaan Jean Sibeliuksen teatterimusiikkia sekä nuoren Mozartin säveltämä makupalan, jonka taivaallisen kauniissa hitaassa osassa soolopuhaltajat pääsevät hurmaamaan.</p><p>Konsertin ohjelma: <br>Jean Sibelius: Pelléas ja Mélisande, sarja <br>Wolfgang Amadeus Mozart: Sinfonia concertante neljälle puhaltajalle</p><p>Solistit: <br>Nils Rõõmussaar, oboe <br>Harri Mäki, klarinetti<br>Markus Tuukkanen, fagotti <br>Ville Hiilivirta, käyrätorvi</p><p>Kesto: 1 t<br>Vapaa pääsy</p>",
                "sv": "<p>För hemstadsturnén packas i kappsäcken teatermusik av Jean Sibelius och en ung Mozarts godbit med en himmelskt vacker långsam sats i vilken soloblåsarna ges chansen att charma.</p><p>Fritt inträde!</p>",
                "en": "<p>The Helsinki Philharmonic Orchestra’s hometown tour features theatre music of Jean Sibelius, as well as a piece composed by the young Mozart, whose heavenly, beautiful slow movement allows the wind instruments soloists to charm their audiences.</p><p>Free entrance!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64262/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63680",
            "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: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: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:733/?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:p1235/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151912,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-26T07:14:28.683517Z",
                    "last_modified_time": "2024-07-26T07:14:28.683533Z",
                    "name": "",
                    "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752001.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151912/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-26T07:14:28.657272Z",
            "last_modified_time": "2024-12-20T01:13:56.428722Z",
            "date_published": null,
            "start_time": "2024-10-28T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Cannesin festivaalin pääpalkinnon voittanut, sydäntäsärkevä elokuva kertoo pikkurikollisten perheestä, joka ottaa hylätyn pikkutytön huostaansa.",
                "sv": "Denna hjärtskärande film som vann huvudpriset i Cannes berättar historien om en familj av småbrottslingar som tar hand om en övergiven liten flicka.",
                "en": "The heartbreaking film, which won the Grand Prize at the Cannes Festival, tells the story of a family of petty criminals who adopt an abandoned little girl."
            },
            "info_url": {
                "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/766593B4471E0021067717008EC566DF/Kino_Kuutamo_Shoplifters_Perhesalaisuuksia",
                "sv": "http://www.kanneltalo.fi/sv/evenemang/event/766593B4471E0021067717008EC566DF/Kino_Kuutamo_Shoplifters_Familjehemligheter",
                "en": "http://www.kanneltalo.fi/en/events/event/766593B4471E0021067717008EC566DF/Kino_Kuutamo_Shoplifters"
            },
            "name": {
                "fi": "Kino Kuutamo: Shoplifters – Perhesalaisuuksia – Maksuttomat maanantait",
                "sv": "Kino Kuutamo: Shoplifters – Familjehemligheter – Kostnadsfria måndagar",
                "en": "Kino Kuutamo: Shoplifters – Free Mondays"
            },
            "description": {
                "fi": "<p>Cannesin festivaalin pääpalkinnon voittanut, sydäntäsärkevä elokuva kertoo pikkurikollisten perheestä, joka ottaa hylätyn pikkutytön huostaansa.</p><p>Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa illan elokuvaan klo 17–17.45. Luennon jälkeen klo 18 alkaa elokuvan ilmaisnäytös. Syksyn 2024 Kino Kuutamon elokuvasarja tutkii perhedynamiikkaa.</p><p>Osamu on poikansa kanssa tavanomaisella näpistelyreissulla, kun he sattumalta kohtaavat kylmässä värisevän, hylätyn tytön. He huolehtivat tästä ja ottavat tytön osaksi perhettään. Vaikka he ovat köyhiä ja elävät kädestä suuhun, on heillä kuitenkin asiat hyvin – lämmin kiintymys on käsin kosketeltavaa. Kunnes odottamaton tapahtuma paljastaa perheen salaisuudet ja laittaa heidän yhteiselonsa koetukselle.</p><p>Hirokazu Kore-eda on Japanin arvostetuimpia nykyohjaajia, jonka elokuvia ovat mm. Siskokset, Pikku tähti ja tuoreimpana Monster – Vaarallinen leikki. Shoplifters – Perhesalaisuuksia on hänen kansainvälinen läpimurtoelokuvansa. Elokuva palkittiin keväällä 2018 Cannesin elokuvajuhlien pääpalkinnolla Kultaisella palmulla ja se oli Japanin virallinen Oscar-ehdokas.</p><p>”Miten syntyy perhe? Upea, niukan realistinen Shoplifters-elokuva nyrjäyttää ajatukset.” ★★★★★ Leena Virtanen / Helsingin Sanomat</p><p>Valmistusvuosi: 2018<br>Ikäraja: 12, sisältää seksiä<br>Pituus: 121 min<br>Tekstitys: suomi<br>Ohjaus: Kore-eda Hirokazu<br>Näyttelijät: Lily Franky, Ando Sakura, Matsuoka Mayu, Kiki Kilin, Jyo Kairi, Sasaki Miyu<br>Genre: Draama<br>Vapaa pääsy</p><p>Yhteistyössä Helsingin työväenopiston kanssa.</p>",
                "sv": "<p>Denna hjärtskärande film som vann huvudpriset i Cannes berättar historien om en familj av småbrottslingar som tar hand om en övergiven liten flicka.</p><p>Filmhistorikern fil.dr. Harri Kilpi introducerar kvällens film kl. 17–17.45. Efter föreläsningen inleds den avgiftsfria visningen av filmen kl. 18.00. Kino Kuutamos filmserie hösten 2024 utforskar familjedynamik.</p><p>Osamu och hans son är ute på sin vanliga snatterirunda när de av en händelse stöter på en huttrande och övergiven flicka i kylan. De tar hand om henne och tar in henne i sin familj. Trots att de är fattiga och lever ur hand i mun klarar de sig bra – den varma tillgivenheten är påtaglig. Så ända tills en oväntad händelse avslöjar familjens hemligheter och sätter deras liv tillsammans på prov.</p><p>Hirokazu Kore-eda är en av Japans mest hyllade samtida regissörer och har bland annat gjort filmerna Systrarna, Min vackra stjärna och senast Monster – En farlig lek. Shoplifters – Familjehemligheter är hans internationella genombrottsfilm. Filmen belönades med Guldpalmen vid filmfestivalen i Cannes 2018 och var Japans officiella Oscarsnominerade film.</p><p>\"Hur uppstår en familj? Den fantastiska, knappt realistiska filmen Shoplifters förbluffar.\" ★★★★★ Leena Virtanen / Helsingin Sanomat</p><p>År: 2018<br>Åldersgräns: 12, innehåller sex<br>Längd: 121 min.<br>Undertexter: finska<br>Regi: Kore-eda Hirokazu<br>I rollerna: Lily Franky, Ando Sakura, Matsuoka Mayu, Kiki Kilin, Jyo Kairi, Sasaki Miyu<br>Genre: Drama<br>Fritt inträde</p><p>I samarbete med Helsingfors finska arbetarinstitutet.</p>",
                "en": "<p>The heartbreaking film, which won the Grand Prize at the Cannes Festival, tells the story of a family of petty criminals who adopt an abandoned little girl.</p><p>Film history expert, PhD Harri Kilpi will introduce the film of the evening at 5-5:45 pm. After the introduction, the free screening of the film begins at 6 pm. The autumn 2024 Kino Kuutamo film series explores family dynamics.</p><p>Osamu is on one of his usual shoplifting rounds with his son when, by chance, they meet an abandoned girl, who’s shivering in the cold. They adopt her and make her part of their family. Even though they are poor with nothing to spare, things are still all right – the warm affection is palpable. Until an unexpected event exposes the family's secrets and puts their life together to the test.</p><p>Hirokazu Kore-eda is one of Japan's most respected contemporary directors, whose films include Our Little Sister, Broker and most recently, Monster. Shoplifters is his international breakthrough. The film was awarded the Golden Palm at the 2018 Cannes Film Festival and was Japan's official Oscar nominee.</p><p>\"How is a family born? Great, sparse and realistic – Shoplifters will change how you think.“★★★★★Leena Virtanen / Helsingin Sanomat</p><p>Release year: 2018<br>Age limit: 12, includes sex scenes<br>Length: 121 mins.<br>Subtitles: Finnish<br>Director: Kore-eda Hirokazu<br>Cast: Lily Franky, Ando Sakura, Matsuoka Mayu, Kiki Kilin, Jyo Kairi, Sasaki Miyu<br>Genre: Drama<br>Free of charge</p><p>In co-operation with Helsinki Finnish Adult Education Centre.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63680/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64620",
            "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: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:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152607,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-25T10:15:32.147462Z",
                    "last_modified_time": "2024-09-25T10:15:32.147478Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758431.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152607/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-25T10:15:32.122522Z",
            "last_modified_time": "2024-12-20T01:13:56.345597Z",
            "date_published": null,
            "start_time": "2024-10-28T09:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "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/0D76EE801BFCC37DC029A471A6BE99FE/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/0D76EE801BFCC37DC029A471A6BE99FE/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/0D76EE801BFCC37DC029A471A6BE99FE/Musical_Art_Adventure"
            },
            "name": {
                "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille",
                "sv": "Musikaliskt konstäventyr – för 1–2-åringar",
                "en": "Musical Art Adventure – for 1–2-year-olds"
            },
            "description": {
                "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat  <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</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>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</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>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11.  https://link.webropol.com/ep/muskari5</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64620/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63433",
            "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/yso:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151571,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T15:13:44.155881Z",
                    "last_modified_time": "2024-06-27T15:13:44.155896Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749897.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151571/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T15:13:44.129869Z",
            "last_modified_time": "2024-12-20T01:13:56.248476Z",
            "date_published": null,
            "start_time": "2024-10-28T08:15:00Z",
            "end_time": "2024-10-28T08: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,
            "provider_contact_info": 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/C100B90F069A6C597742AA294762E6C8/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/C100B90F069A6C597742AA294762E6C8/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/C100B90F069A6C597742AA294762E6C8/Musical_Art_Adventure"
            },
            "name": {
                "fi": "Musiikillinen taideseikkailu – vauvoille",
                "sv": "Musikaliskt konstäventyr – för bebisar",
                "en": "Musical Art Adventure – for babies"
            },
            "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. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p>TÄYNNÄ <b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">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. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</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. 30 min <br>Age group: 3–12 months<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>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</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>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63433/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:63426",
            "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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151563,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-06-27T14:13:41.737382Z",
                    "last_modified_time": "2024-06-27T14:13:41.737401Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749883.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-06-27T14:13:41.703882Z",
            "last_modified_time": "2024-12-20T01:13:56.158054Z",
            "date_published": null,
            "start_time": "2024-10-28T07:00:00Z",
            "end_time": "2024-10-28T07: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,
            "provider_contact_info": 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/D9FAAFD35D828998A8CE077933B93C5F/Musiikillinen_taideseikkailu",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/D9FAAFD35D828998A8CE077933B93C5F/Musikaliskt_konstaventyr",
                "en": "http://www.annantalo.fi/en/events/event/D9FAAFD35D828998A8CE077933B93C5F/Musical_Art_Adventure"
            },
            "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"
            },
            "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>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63426/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64550",
            "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: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:669/?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": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152386,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-11T12:13:34.742913Z",
                    "last_modified_time": "2024-09-11T12:13:34.742926Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758035.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152386/?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-09-11T12:13:34.711073Z",
            "last_modified_time": "2024-12-20T01:13:55.038057Z",
            "date_published": null,
            "start_time": "2024-10-26T08:30:00Z",
            "end_time": "2024-10-26T12: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa matkalle Somalian tarinoiden maailmaan! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!",
                "sv": "Välkommen på en resa i en värld av somaliska berättelser! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!",
                "en": "Welcome to the world of Somalian stories! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!"
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B15BD8B9B6C50B228E40612287F2D1FD/Tarinoita_Somaliasta_Sheekooyin_Soomaaliyeed",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/B15BD8B9B6C50B228E40612287F2D1FD/Berattelser_fran_Somalia_Sheekooyin_Soomaaliyeed",
                "en": "http://www.annantalo.fi/en/events/event/B15BD8B9B6C50B228E40612287F2D1FD/Stories_from_Somalia_Sheekooyin_Soomaaliyeed"
            },
            "name": {
                "fi": "Tarinoita Somaliasta – Sheekooyin Soomaaliyeed",
                "sv": "Berättelser från Somalia – Sheekooyin Soomaaliyeed",
                "en": "Stories from Somalia – Sheekooyin Soomaaliyeed"
            },
            "description": {
                "fi": "<p>Tervetuloa matkalle Somalian tarinoiden maailmaan! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!</p><p>Tapahtumassa tutustumme yhdessä Somalian rikkaaseen kulttuuriin, kiehtoviin tarinoihin ja iloisiin tansseihin.</p><p>Mitä odottaa?<br>● Satutuokioita: lumoavia somalialaisia satuja.<br>● ⁠Taidepajoja: mahdollisuus piirtää ja luoda taidetta somalialaisten tarinoiden pohjalta.<br>● Rytmillistä runoutta ja perinteisiä tansseja koko perheelle.</p><p>Kaikki ovat tervetulleita mukaan. Tapahtuma on maksuton ja sopii erityisesti somalinkielisille lapsiperheille. Tule ja koe seikkailu, jota et unohda. Nähdään Annantalossa!</p><p>Sheekooyin Soomaaliyeed - Dhacdo carruuta!</p><p>Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed! <br>Waa dhacdo carruureed oo ku saabsan dhaqanka, sheekooyinka iyo ciyaaraha Soomaaliyeed.</p><p>Maxaa laga filayaa?<br>• Farshaxan<br>• Ciyaar dhaqameed</p><p>Booska: 26.10.<br>Maalinta: 11.30–15<br>Saacadda: Annantalo, Annankatu 30</p><p>Gacmo furan kusoo dhawaada!<br>Dhacdada waa lacag la’aan waxayna ku haboon tahay qoysaska soomaaliyeed. Kaalay oo kasoo qayb qaado maalin farxad badan!</p>",
                "sv": "<p>Välkommen på en resa i en värld av somaliska berättelser! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!</p><p>Tillsammans utforskar vi Somalias rika kultur, fascinerande berättelser och glada danser.<br>Vad väntar dig?<br>Sagostunder: förtrollande somaliska sagor.<br>Konstworkshoppar: möjlighet att rita och skapa konst utifrån somaliska berättelser.<br>Musik och dans: fartfyllda rytmer och traditionella danser för hela familjen.</p><p>Alla är välkomna att delta. Evenemanget är kostnadsfritt och särskilt lämpligt för somaliskspråkiga barnfamiljer. Kom och upplev ett äventyr som du sent kommer att glömma. Vi ses på Annegården!</p><p>Sheekooyin Soomaaliyeed - Dhacdo carruuta!</p><p>Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed! <br>Waa dhacdo carruureed oo ku saabsan dhaqanka, sheekooyinka iyo ciyaaraha Soomaaliyeed.</p><p>Maxaa laga filayaa?<br>• Farshaxan<br>• Ciyaar dhaqameed</p><p>Booska: 26.10.<br>Maalinta: 11.30–15<br>Saacadda: Annantalo, Annankatu 30</p><p>Gacmo furan kusoo dhawaada!<br>Dhacdada waa lacag la’aan waxayna ku haboon tahay qoysaska soomaaliyeed. Kaalay oo kasoo qayb qaado maalin farxad badan!</p>",
                "en": "<p>Welcome to the world of Somalian stories! Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed!</p><p>At the event, we explore Somalia's rich culture, fascinating stories and joyful dances together.<br>What can you expect?<br>Fairy tales: enchanting Somali fairy tales.<br>Art workshops: the opportunity to draw and create art based on Somali stories.<br>Music and dance: upbeat rhythms and traditional dances for the whole family.</p><p>Everyone is welcome to join. The event is free of charge and especially suitable for Somali-speaking families with children. Join us and experience an adventure you won't forget. See you at Annantalo!</p><p>Sheekooyin Soomaaliyeed - Dhacdo carruuta!</p><p>Kusoo dhawaada maalinta sheekooyinka ee ciyaalka Soomaaliyeed! <br>Waa dhacdo carruureed oo ku saabsan dhaqanka, sheekooyinka iyo ciyaaraha Soomaaliyeed.</p><p>Maxaa laga filayaa?<br>• Farshaxan<br>• Ciyaar dhaqameed</p><p>Booska: 26.10.<br>Maalinta: 11.30–15<br>Saacadda: Annantalo, Annankatu 30</p><p>Gacmo furan kusoo dhawaada!<br>Dhacdada waa lacag la’aan waxayna ku haboon tahay qoysaska soomaaliyeed. Kaalay oo kasoo qayb qaado maalin farxad badan!</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64550/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64648",
            "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:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152729,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-04T09:13:34.902061Z",
                    "last_modified_time": "2024-10-04T09:13:34.902072Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758843.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152729/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-04T09:13:34.887717Z",
            "last_modified_time": "2024-12-20T01:13:53.883050Z",
            "date_published": null,
            "start_time": "2024-10-24",
            "end_time": "2024-12-31",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stoan puhelinkopeista avautuu kuulokuva menneisiin vuosikymmeniin. Mitä Stoa on merkinnyt alueen ihmisille? Miten Stoa sai nimensä ja kenen kriitikon kengät kopisivat kylmiä väreitä aiheuttaen Stoan käytävillä?",
                "sv": "I Stoas telefonhyttar öppnas ett ljudlandskap till gångna decennier. Vad har Stoa betytt för människorna i området? Hur fick Stoa sitt namn och vilken kritikers steg längs Stoas korridorer gav folk kalla rysningar?",
                "en": "Stoa’s phone booths offer an audio link to past decades. What has Stoa meant to people in the area? How did Stoa get its name, and which critic’s footsteps had people ducking for cover throughout Stoa's corridors?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/Mita_kuuluu_Stoa_40_puhelua_menneille_vuosikymmenille",
                "sv": "http://www.stoa.fi/sv/evenemang/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/Hur_gar_det_Stoa_40_samtal_till_tidigare_decennier",
                "en": "http://www.stoa.fi/en/events/event/3425FB6C5E4760A9FAAF4CC05D3D1C10/How_s_it_going_Stoa_40_phone_calls_to_past_decades"
            },
            "name": {
                "fi": "Mitä kuuluu Stoa? 40 puhelua menneille vuosikymmenille – Stoa 40!",
                "sv": "Hur går det Stoa? 40 samtal till tidigare decennier – Stoa 40!",
                "en": "How’s it going, Stoa? 40 phone calls to past decades – Stoa 40!"
            },
            "description": {
                "fi": "<p>Stoan puhelinkopeista avautuu kuulokuva menneisiin vuosikymmeniin. Mitä Stoa on merkinnyt alueen ihmisille? Miten Stoa sai nimensä ja kenen kriitikon kengät kopisivat kylmiä väreitä aiheuttaen Stoan käytävillä?</p><p>Stoan asiakkaat ja henkilökunta ovat kertoneet muistojaan Stoasta, joista Kipinän nuoret ovat toteuttaneet moniäänisen ääniteoksen. Ota puhelinluettelo käteen ja soita vaikka 1990-luvun nuorisotalolle, jossa opeteltiin tekemään uunijäätelöä. <br> <br>Ääniteoksen toteutuksessa ovat olleet mukana Itäkeskuksen kirjasto, työväenopisto, Stoan kulttuuripalvelut ja Kipinä</p>",
                "sv": "<p>I Stoas telefonhyttar öppnas ett ljudlandskap till gångna decennier. Vad har Stoa betytt för människorna i området? Hur fick Stoa sitt namn och vilken kritikers steg längs Stoas korridorer gav folk kalla rysningar?</p><p>Stoas kunder och personal har delat med sig av sina minnen från Stoa, och utifrån dessa har Kipinäs ungdomar skapat ett polyfoniskt ljudverk. Ta tag i en telefonkatalog och ring exempelvis till 1990-talets ungdomsgård, där de lärde sig att tillreda ugnsglass.</p><p>Östra centrums bibliotek, finska arbetarinstitutet, Stoas kulturtjänster och Kipinä har deltagit i produktionen av ljudverket.</p>",
                "en": "<p>Stoa’s phone booths offer an audio link to past decades. What has Stoa meant to people in the area? How did Stoa get its name, and which critic’s footsteps had people ducking for cover throughout Stoa's corridors?</p><p>Stoa’s customers and staff have shared their memories of Stoa, which Kipinä’s young people have used to create a sound artwork with many voices. Pick up the phone book and call the youth centre of the 1990s, where they were learning how to make Baked Alaska.</p><p>The audio work was produced by Itäkeskus Library, the Adult Education Centre, Stoa Cultural Services and Kipinä.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64648/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64572",
            "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:104/?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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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:p6529/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152563,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-09-23T10:15:00.302535Z",
                    "last_modified_time": "2024-09-23T10:15:00.302548Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_756003.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152563/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-09-23T10:15:00.258794Z",
            "last_modified_time": "2024-12-20T01:13:53.665245Z",
            "date_published": null,
            "start_time": "2024-10-24",
            "end_time": "2024-11-02",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!",
                "sv": "År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!",
                "en": "The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_",
                "en": "http://www.stoa.fi/en/events/event/A2EF2F8A3567BA5EA7EBDDABA482519F/Stoa_40_"
            },
            "name": {
                "fi": "Stoa 40!",
                "sv": "Stoa 40!",
                "en": "Stoa 40!"
            },
            "description": {
                "fi": "<p>Vuosi 1984 toi itähelsinkiläisille oman kulttuuritalon. Nyt on aika juhlistaa Stoan 40-vuotissynttäreitä!</p><p>Tule mukaan vaikka joka päivä juhlaviikon ajan: luvassa on tanssia ja brunssia, ensi-iltaa ja avajaisia, luentokimaraa ja open-mic-stagea, viulumusiikkia vauvaperheille ja kauhua kakaroille.  <br> <br>Kanssamme pääset muistelemaan menneitä ja tarttumaan tähän hetkeen, ihastelemaan vesi- ja valotaidetta, nauramaan Itäkuskukseen ja sukeltamaan syvällisiinkin pohdintoihin elämästä ja kuolevaisuudesta. <br> <br>Stoan juhlapöytä on katettu herkullisella ohjelmalla, kutsumme juuri sinut mukaan!</p><p><b>Stoa 40! –juhlaviikon ohjelmaa</b></p><p><b>to 24.10.</b><br>klo 14–15 Askartelutuokio kirjastossa<br>klo 15–18 Ars Moriendi 2024 – Lainaa filosofi, Stoan galleria<br>klo 16–18 Mitä kuuluu Stoa? -teoksen avajaiset + synttärijuhla<br>200 ensimmäiselle kaupunkilaiselle tarjolla kakkua ja kahvia Stoan aulassa, tervetuloa!<br>klo 17 Stoan kansainvälinen kuoro esiintyy Stoan aulassa</p><p><b>pe 25.10.</b><br>klo 16–19 Taivu kuin taikina (Kirjastossa)<br>klo 19 Itäkuskus stand up -klubi & Yalla Collective (Stoan aula, vapaa pääsy)</p><p><b>la 26.10.</b><br>klo 10–16 Arkkitehtuuria laatikon ulkopuolella –penkkipaja Musiikkisalissa<br>klo 10–13 Tiitiäisjuhlat (kirjasto)<br>klo 12–15 Brunssi Stoan katon alla <br>klo 14–21 Halloween-leffoja nuorille nuorten toimintatalo Kipinän takatilassa<br>klo 19 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>su 27.10.</b><br>klo 12–18 Arkkitehtuuria laatikon ulkopuolella -penkkipaja Stoan aukiolla<br>klo 15 MimoArt Company: PIPES & HOSES, liput 28/18/11 €</p><p><b>ma 28.10.</b><br>klo 11–12 Tutustu espanjan kieleen Stoan aulassa<br>klo 14–15 Stoan lausujat tervehtivät kävijöitä ikuisin lausein Stoan aulassa<br>klo 14.15–14.30 LadyAfro-esitys Stoan aulassa<br>klo 15–17 Runonselittäjän vastaanotto Stoan aulassa<br>klo 15.30–15.45, 16–16.15 ja 16.30–16.45 / 3 x hengähdyshetki Musiikkisalissa<br>klo 17–18 Itä-Helsingin historiaa: Aikamatka 1700-luvun Mellunkylään Stoan aulassa<br>klo 17–20 Origami-työpaja Stoan aulassa<br>klo 18.30–19.30 Futista ja kulttuurihistoriaa Saksassa Stoan aulassa</p><p><b>ti 29.10.</b><br>klo 10–11 Pienten aamut (kirjasto)<br>klo 13–15 Päivädisko +50 (Stoan aula)<br>klo 19 MimoArt Company: PIPES & HOSES,  liput 28/18/11 €</p><p><b>ke 30.10.</b><br>klo 10–11 Metridisco Stoan aulassa <br>klo 13, 14.30 ja 16<br>Viulumusiikkia vauvaperheiden tahtiin <br>klo 14–17 Lainaa filosofi <br>klo 17–19 Iltateellä Stoassa: Taidetauko-työpaja<br>klo 17.30–19.30 Kuolema-keskiviikon keskustelut - Filocafé   <br>klo 19 MimoArt Company: PIPES & HOSES,  liput 28/18/11 €</p><p><b>to 31.10.</b><br>klo 9 Kirjailijavieraana Arttu Unkari (kirjasto)<br>klo 13–14 Askartelutuokio (kirjasto)<br>klo 15–18 Lainaa filosofi<br>klo 18–20 IT IS OPEN STAGE</p><p><b>pe 1.11.</b><br>klo 13–15 Kohtaamiskahvila (Kirjastossa)<br>klo 14 Kaamea HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nuorten uuden musiikin ilta (vol. 4)</p><p><b>la 2.11.</b><br>klo 16–19 Kauhua kakaroille<br>Klo 16-19 Opus Company: Lightsphere-valoteos Stoan aukiolla<br>Klo 16.30 ja klo 18 Mutaveijarit ja Töölö Brass Band teatterisalissa<br>Klo 16–19 Tip Top Walkersin kuolleiden päivän hahmot<br>Klo 16.30–17.30 ja klo 18-18.45 Disco Stoan aulassa, DJ Blurred Boy ja DJ Pyry Aalto <br>Työpajat klo 16–18.30<br>•Hämärän hiipijät<br>•Valomaalaus<br>•Kosmista hiekkaa<br>•Glittertatuoinnit<br>Kirjastossa:<br>klo 16–18.30 Kammokuja (kirjasto)<br>klo 16–19 Kauhua kiireestä kynnenpäähän!<br>Työväenopistolla:<br>klo 16–19 Hurjan hauskat naamiot- ja Tupsumonsteri -työpajat (Työväenopisto)<br>klo 16–19 Espanjaa hauskasti Halloween-hengessä (Työväenopisto)</p><p>Lisäksi Itäkeskuksen kirjastossa esillä 40-vuotiskirja-/levynäyttely ja runo-olohuone.</p><p><u><a href=\"https://www.stoa.fi/fi/tapahtumat/?q=stoa%2040&st=2024-10-15&et=2025-07-15&el=44&show=40” >Katso juhlaviikon ohjelmien tarkemmat tiedot tapahtumakalenterista</a></u></p>",
                "sv": "<p>År 1984 fick östra Helsingfors ett eget kulturhus. Nu är det dags att fira Stoas 40-årsdag!</p><p>Du är välkommen att besöka oss alla dagar under hela veckan: vi utlovar dans och brunch, premiärer och vernissager, föreläsningscocktail och open-mic-stage, violinmusik för familjer med bebisar och skräck för rackarungar.  <br> <br>Hos oss får du minnas det förflutna och ta vara på nuet, beundra vatten- och ljuskonst, skratta åt Itäkuskus och dyka ner i djupa reflektioner om livet och dödligheten. <br> <br>Stoas festbord är dukat med ett utsökt program, vi bjuder in just dig!</p><p><b>Program för jubileumsveckan Stoa 40!</b></p><p><b>to 24.10.</b><br>kl. 14–15 Pysselstund på biblioteket<br>kl. 15–18 Ars Moriendi 2024 – Låna en filosof, Stoas galleri<br>kl. 16–18 Vernissage + födelsedagsfest för verket Mitä kuuluu Stoa? (Hur går det Stoa?)<br>Vernissage för stadsbor i Stoas lobby: Tårta och kaffe till de 200 första.<br>kl. 17 Stoas internationella kör uppträder i Stoas lobby</p><p><b>fre 25.10.</b><br>kl. 16–19 Smidig som en deg (i biblioteket)<br>kl. 19 Itäkuskus stand up-klubb (Stoas lobby, fritt inträde)</p><p><b>lö 26.10.</b><br>kl. 10–16 Arkitektur utanför boxen – bänkworkshop i Musiksalen<br>kl. 10–13 Tiitiäinenfest (biblioteket)<br>kl. 12–15 Brunch under Stoas tak<br>kl. 14–21 Halloweenfilmer för unga i bakre rummet till de ungas aktivitetshus Kipinä<br>kl. 19 MimoArt Company: PIPES & HOSES,  biljetter 28/18/11 €</p><p><b>sö 27.10.</b><br>kl. 12–18 Arkitektur utanför boxen – bänkworkshop på Stoaplatsen<br>kl. 15 MimoArt Company: PIPES & HOSES, biljetter 28/18/11 €</p><p><b>må 28.10.</b><br>kl. 11–12 Upptäck det spanska språket Stoas lobby<br>kl. 14–15 Stoas recitatörer hälsar besökare välkomna med eviga fraser i Stoas lobby<br>kl. 14.15–14.30 LadyAfro-uppträdande i Stoas lobby<br>kl. 15–17 Diktförklararens mottagning<br>kl. 15.30–15.45, 16–16.15 och 16.30–16.45 / 3 x andrum Musiksalen<br>kl. 17–18 Östra Helsingfors historia: Tidsresa till 1700-talets Mellungsby Stoas lobby<br>kl. 17–20 Origami-workshop i Stoas lobby<br>kl. 18.30–19.30 Fotboll och kulturhistoria i Tyskland Stoas lobby</p><p><b>ti 29.10.</b><br>kl. 10–11 Morgon för barn (biblioteket)<br>kl. 13–15 Dagsdisko +50 (Stoas lobby)<br>kl. 19 MimoArt Company: PIPES & HOSES,  biljetter 28/18/11 €</p><p><b>ons 30.10.</b><br>kl. 10–11 Meterdisko i Stoas lobby<br>kl. 13, 14.30 och 16<br>Violinmusik i takt med babyfamiljer<br>kl. 14–17 Låna en filosof<br>kl. 17–19 Kvällste på Stoa: Konstpaus-workshop<br>kl. 17.30–19.30 Diskussioner på dödsonsdagen – Filocafé<br>kl. 19 MimoArt Company: PIPES & HOSES,  biljetter 28/18/11 €</p><p><b>to 31.10.</b><br>kl. 9 Arttu Unkari som författargäst (biblioteket)<br>kl. 13–14 Pysselstund (biblioteket)<br>kl. 15–18 Låna en filosof<br>kl. 18–20 IT IS OPEN STAGE</p><p><b>fre 1.11.</b><br>kl. 13–15 Mötescafé (i biblioteket)<br>kl. 14 Kuslig HalloweenKahoot<br>klo 18–20 Kipinä x Stoa goes Nya musikens kväll för unga (vol. 4)</p><p><b>lö 2.11.</b><br>kl. 16–19 Skräck för rackarungar<br>Kl. 16-19 Opus Company: Ljusverket Lightsphere på Stoaplatsen<br>Kl. 16.30 och kl. 18 Mutaveijarit och Tölö Brass Band i teatersalen<br>Kl. 16–19 Tip Top Walkers de dödas dag-figurer<br>Kl. 16.30–17.30 och kl. 18–18.45 Disko i Stoas lobby, DJ Blurred Boy och DJ Pyry Aalto<br>Workshoppar kl. 16–18.30<br>•Skymningssmygare<br>•Ljusmålning<br>•Kosmisk sand<br>•Glittertatueringar<br>I biblioteket<br>kl. 16–18.30 Skräckgränden (biblioteket)<br>kl. 16–19 Skräck från topp till tå!<br>kl. 16–19 Workshopparna Vilt roliga masker och Tofsmonster (Finska arbetarinstitutet)<br>kl. 16–19 Spanska i skojig Halloween-anda (Finska arbetarinstitutet)</p><p>Dessutom finns på Östra Centrums bibliotek en 40-årsboks-/skivutställning och ett diktvardagsrum.</p>",
                "en": "<p>The people of East Helsinki received their Cultural Centre in 1984. It's time to celebrate Stoa's 40th anniversary!</p><p>Join us every day during the festive week: dance and brunch, premieres and opening ceremonies, lecture clubs and open-mic stages, violin music for baby families and horror for the kids.  <br> <br>With us, reminisce about the past and seize the moment, admire the water and light art, laugh at Itäkuskus and dive into deep reflections on life and mortality. <br> <br>The banquet table at Stoa is set with a delicious programme, we invite you to join us!</p><p><b>Stoa 40! Anniversary Week Programme</b></p><p><b>Tuesday, 24 October</b><br>14:00–15:00 Crafting session at the library<br>15:00–18:00 Ars Moriendi 2024 – Borrow a Philosopher, Stoa gallery<br>16:00–18:00 Opening of the ‘How’s it Going, Stoa?’ artwork and birthday party<br>Opening ceremony for city residents in the Stoa lobby: Cake and coffee for the first 200 guests.<br>17:00 Stoa’s international choir performs in Stoa’s lobby</p><p><b>Friday, 25 October</b><br>16:00–19:00 Bend Like Dough (at the library)<br>19:00 Itäkuskus Stand Up Club (Stoa lobby, free entry)</p><p><b>Saturday, 26 October</b><br>10:00–16:00 Architecture Outside the Box bench-making workshop in the Music Hall<br>10:00–13:00 Tiitiäisjuhlat poetry event (library)<br>12:00–15:00 Brunch under Stoa’s roof<br>14:00–21:00 Halloween movies for young people in the back room of the Kipinä Youth Activity House<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Sunday, 27 October</b><br>12:00–18:00 Architecture Outside the Box bench-making workshop at the Stoa square<br>15:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Monday, 28 October</b><br>11:00–12:00 Introduction to Spanish, Stoa lobby<br>14:00–15:00 Stoa’s reciters greet visitors with timeless lines, Stoa lobby<br>14:15–14:30 LadyAfro performance, Stoa lobby<br>15:00 - 17:00 Poetry interpreter’s reception<br>15:30–15:45, 16:00–16:15 and 16:30–16:45 / 3 x break in the Music Hall<br>17:00–18:00 History of East Helsinki: Time travel to 18th-century Mellunkylä, Stoa lobby<br>17:00–20:00 Origami Workshop, Stoa lobby<br>18:30–19:30 Football and Cultural History in Germany, Stoa Lobby</p><p><b>Tuesday, 29 October</b><br>10:00–11:00 Mornings for little kids (library)<br>13:00–15:00 Daytime disco, 50+ (Stoa lobby)<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Wednesday, 30 October</b><br>10:00–11:00 Metridisco in the Stoa lobby<br>13:00, 14:30 and 16:00<br>Violin music for families with babies<br>14:00–17:00 Borrow a Philosopher<br>17:00–19:00 Evening Tea at Stoa: Art Break workshop<br>17:30–19:30 Death Wednesday discussions – Filocafé<br>19:00 MimoArt Company: PIPES & HOSES, tickets 28/18/11 €</p><p><b>Thursday, 31 October</b><br>9:00 Guest author Arttu Unkari (library)<br>13:00–14:00 Crafting session (library)<br>15:00–18:00 Borrow a Philosopher<br>18:00–20:00 IT IS OPEN STAGE</p><p><b>Friday, 1 November</b><br>13:00–15:00 Meeting Café (at the library)<br>14:00 Spooky HalloweenKahoot<br>18:00–20:00 Kipinä x Stoa evening of new music for young people (vol. 4)</p><p><b>Saturday, 2 November</b><br>16:00–19:00 Kauhua kakaroille kids’ Halloween event<br>16:00–19:00 Opus Company: Lightsphere light artwork at Stoa square<br>16:30 and 18:00 Mutaveijarit and Töölö Brass Band in the theatre hall<br>16:00–19:00 Tip Top Walkers’ Day of the Dead characters<br>16:30–17:30 and 18:00–18:45 in the Disco Stoa lobby, DJ Blurred Boy and DJ Pyry Aalto<br>Workshops from 16:00 to 18:30<br>• Twilight Creepers<br>• Light painting<br>• Cosmic sand<br>• Glitter tattoos<br>In the library<br>16:00–18:30 Kammokuja Fright Alley (library)<br>16:00–19:00 Horror from head to fingernail!<br>16:00–19:00 Frightfully Fun Masks and Tassel Monster workshops (Adult Education Centre)<br>16:00–19:00  Have fun learning Spanish with a Halloween twist (Adult Education Centre)</p><p>In addition, the Itäkeskus Library will feature a 40th anniversary book/album exhibition and a poetry lounge.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64572/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64259",
            "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: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:31/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:p29865/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 151825,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-24T15:13:19.627214Z",
                    "last_modified_time": "2024-07-24T15:13:19.627230Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755073.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151825/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-24T15:13:19.584260Z",
            "last_modified_time": "2024-12-20T01:13:53.192048Z",
            "date_published": null,
            "start_time": "2024-10-23T15:00:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Alma – Life Must Be Beautiful -dokumenttielokuva kertoo 28-vuotiaan artistin Alma-Sofia Miettisen tarinan.",
                "sv": "Alma – Life Must Be Beautiful berättar historien om den 28-åriga artisten Alma-Sofia Miettinen.",
                "en": "Alma – Life Must Be Beautiful tells the story of 28-year-old artist Alma-Sofia Miettinen."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_",
                "en": "http://www.vuotalo.fi/en/events/event/A9C564C15D684627E8E27C90BEDEE146/Alma_Life_must_be_Beautiful_7_"
            },
            "name": {
                "fi": "Alma: Life must be Beautiful (7)",
                "sv": "Alma: Life must be Beautiful (7)",
                "en": "Alma: Life must be Beautiful (7)"
            },
            "description": {
                "fi": "<p>Alma – Life Must Be Beautiful -dokumenttielokuva kertoo 28-vuotiaan artistin Alma-Sofia Miettisen tarinan.</p><p>Dokumentti seuraa Alman poikkeuksellista elämää, uraa ja persoonaa. Se tuo päivänvaloon sen Alman, joka löytyy julkisuudessa esitellyn persoonan takaa. Lapsuudesta saakka kuvattu arkistomateriaali ja lukuisat keikkakiertueilla kuvatut tallenteet valottavat Alman tarinaa alusta alkaen, päästäen katsojan sisälle Alman, tämän perheen ja ystäväporukan intiimeihin hetkiin – unohtamatta menestyksen monia puolia.</p><p>Kesto: 99 min<br>K-7<br>Kieli: suomi, tekstitys: ruotsi<br>Ohjaaja: Pamela Tola<br>Vapaa sisäänpääsy.</p>",
                "sv": "<p>Alma – Life Must Be Beautiful berättar historien om den 28-åriga artisten Alma-Sofia Miettinen.</p><p>Dokumentären följer Almas extraordinära liv, karriär och personlighet. Den hämtar fram den Alma som finns bakom personen vi ser i offentligheten. Arkivmaterial som spelats in allt sedan hennes barndom och flera inspelningar från hennes turnéer belyser Almas historia från början, och låter tittaren ta del av Almas, familjens och vännernas intima stunder – utan att glömma framgångens olika aspekter.</p><p>Längd: 99 min.<br>F-7<br>Språk: finska, textning: svenska<br>Regi: Pamela Tola<br>Fri entré.</p>",
                "en": "<p>Alma – Life Must Be Beautiful tells the story of 28-year-old artist Alma-Sofia Miettinen.</p><p>The documentary follows Alma's extraordinary life, career and personality. It brings to light the Alma that lies behind the public persona. The archive footage, shot since childhood, and the numerous tour recordings shed light on Alma's story from the beginning and allow the viewer to enter the intimate moments of Alma, her family and her group of friends – not forgetting the many facets of success.</p><p>Duration: 99 mins.<br>Age recommendation: 7+<br>Language: Finnish with subtitles in Swedish<br>Director: Pamela Tola<br>Free entry.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64259/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}