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

{
    "meta": {
        "count": 24611,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=219",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=217"
    },
    "data": [
        {
            "id": "kulke:65081",
            "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:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?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": 198007,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-02-06T09:14:45.935630Z",
                    "last_modified_time": "2025-02-06T09:14:45.935651Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763831.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/198007/?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": "2025-02-06T09:14:45.909267Z",
            "last_modified_time": "2025-02-28T13:14:15.662628Z",
            "date_published": null,
            "start_time": "2025-03-21T10: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": "Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?",
                "sv": "Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?",
                "en": "Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_ELAKOON_ELAIMET_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_LANGE_LEVE_DJUREN_",
                "en": "http://www.stoa.fi/en/events/event/4759520000A6E339DAF511A1DA6FED13/Tehdas_teatteri_LONG_LIVE_THE_ANIMALS_"
            },
            "name": {
                "fi": "Tehdas teatteri: ELÄKÖÖN ELÄIMET! – Näytös päiväkotiryhmille | Hurraa! -teatteriviikot",
                "sv": "Tehdas teatteri: LÄNGE LEVE DJUREN! – för dagisgrupper | Hurraa! -teaterveckor",
                "en": "Tehdas teatteri: LONG LIVE THE ANIMALS! – for kindergarten groups | Hurraa! Theatre Weeks"
            },
            "description": {
                "fi": "<p>Oletko ihmetellyt, miten kastemato voi kuulla ilman korvia? Tiesitkö, että laiskiainen laskeutuu alas puusta vain kakatakseen?</p><p>Uskoisitko, että krokotiilin poikaset nukkuvat äitinsä suussa, terävien hampaiden suojassa? Ja että dinosauruksen lähin elossa oleva sukulainen on kana? Ja että ihminenkin on eläin?<br> <br>ELÄKÖÖN ELÄIMET! -esitys vastaa kysymyksiisi vallattomilla faktoilla, sydämellisellä huumorilla ja moni-ilmeisillä eläinnukkehahmoillaan. Teos on taidetta ja tiedettä yhdistävä koko perheen nukketeatteriesitys, jonka lähtökohtana ovat ihaillut, pelätyt, tavallisesti kummalliset eläimet ja niiden elämä. Ja ihminen ihmettelemässä. <br> <br>TYÖRYHMÄ ELÄKÖÖN ELÄIMET!<br>Konsepti, käsikirjoitus, visuaalinen suunnittelu ja -rakennus: <br>Pia Kalenius ja Nanna Mäkinen</p><p>Valosuunnittelu:<br>Jarkko Forsman</p><p>Musiikki ja äänisuunnittelu:<br>Työryhmä</p><p>Dramaturgia- ja ohjausmentori: <br>Venla Luoma</p><p>Nuketusmentori:<br>Lotta Virtanen</p><p>Esiintyjät:<br>Nanna Mäkinen ja Pia Kalenius</p><p>Sir David Attenboroughin äänenä:<br>Jussi Virkkumaa</p><p>Graafinen ilme:<br>Mia Koo</p><p>Tuotanto<br>Tehdas teatteri, Turku  (ensi-ilta 7.3.2025)</p><p>Kumppanit:<br>Aura of Puppets ja päiväkoti Pääskynpesän lapset</p><p>Tuotanto: Tehdas teatteri, Turku<br>Kohdeyleisö: +5-v<br>Kesto: 40 min</p><p>Koululaisnäytöksiin päiväkotiryhmille vapaa pääsy. Pakolliset ilmoittautumiset kultus.fi 9.1. alkaen. HUOM! Osallistujat arvotaan ilmoittautuneiden joukosta.</p><p><b>Hurraa! -teatteriviikot  <br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theater – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Har du någonsin undrat hur en daggmask kan höra utan öron? Visste du att sengångaren bara kommer ner från sitt träd för att bajsa?</p><p>Kan du tänka dig att krokodilungar sover i sin mammas mun, skyddade av vassa tänder? Och att den närmaste levande släktingen till en dinosaurie är hönan? Och att människan också är ett djur?<br> <br>Föreställningen LÄNGE LEVE DJUREN! ger dig svar på dina frågor med busiga fakta, hjärtlig humor och mångfasetterade karaktärer i form av djurdockor. Verket är en dockteaterföreställning för hela familjen som kombinerar konst och vetenskap, och är baserad på djur som är beundrade, fruktade och ofta märkliga, och djurens liv. Och en människa som undrar. <br> <br><b>ARBETSGRUPP</b><br>Koncept, manus, visuell design och konstruktion: Pia Kalenius ja Nanna Mäkinen<br>Ljusdesign: Jarkko Forsman<br>Musik och ljuddesign: Arbetsgrupp<br>Dramaturgi- och regihandledare: Venla Luoma<br>Dockföringsmentor: Lotta Virtanen<br>Medverkande: Nanna Mäkinen ja Pia Kalenius<br>Som rösten av Sir David Attenborough: Jussi Virkkumaa<br>Grafisk profil: Mia Koo<br>Produktion: Tehdas teatteri, Åbo (premiär 7.3.2024)<br>Partners: Aura of Puppets ja förskolan Pääskynpesäs barn</p><p>Målgrupp: barn i åldern 5+<br>Längd: 40 min.</p>",
                "en": "<p>Have you ever wondered how an earthworm can hear without ears? Did you know that a sloth comes down from a tree just to poop?</p><p>Would you believe that crocodile hatchlings sleep in their mother’s mouth, protected by its sharp teeth? And that a dinosaur’s closest living relative is a chicken? And that man is also an animal?<br> <br>LONG LIVE THE ANIMALS! answers your questions with wild facts, heartfelt humour and multi-faceted animal doll characters. It is a puppet theatre performance for the whole family that combines art and science. Its premise is animals – the admired, feared, ordinarily strange ones – and their lives. And humans, wondering. <br> <br><b>WORKING GROUP</b><br>Concept, script, visual design, and construction: Nanna Mäkinen and Pia Kalenius<br>Lighting design: Jarkko Forsman<br>Music and sound design: Working group<br>Dramaturgy and directing mentor: Venla Luoma<br>Puppeteering mentor: Lotta Virtanen<br>Performers: Nanna Mäkinen ja Pia Kalenius<br>As the voice of Sir David Attenborough: Jussi Virkkumaa<br>Graphic design: Mia Koo<br>Production: Tehdas Theatre, Turku (premiere 7 March 2024)<br>Partners: Aura of Puppets and the children of Pääskynpesä daycare</p><p>Target audience: 5+<br>Duration: 40 mins.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65081/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65078",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?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: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": 163428,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-22T14:15:00.245834Z",
                    "last_modified_time": "2025-01-22T14:15:00.245850Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763828.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163428/?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": "2025-01-22T14:15:00.218329Z",
            "last_modified_time": "2025-02-28T13:14:13.669576Z",
            "date_published": null,
            "start_time": "2025-03-17T10: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": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.",
                "sv": "Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.",
                "en": "Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Koululaisnaytos_Will_Funk_For_Food_A_Fistful_of_Funk",
                "sv": "http://www.stoa.fi/sv/evenemang/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Will_Funk_For_Food_A_Fistful_of_Funk",
                "en": "http://www.stoa.fi/en/events/event/20D9529FC6275AF0A16BD82D0AC7DEFE/Will_Funk_For_Food_A_Fistful_of_Funk"
            },
            "name": {
                "fi": "Koululaisnäytös: Will Funk For Food | A Fistful of Funk – Hurraa! -teatteriviikot | ilmoittautuminen kultus.fi",
                "sv": "Will Funk For Food: A Fistful of Funk – Hurraa! -teaterveckor",
                "en": "Will Funk For Food: A Fistful of Funk – Hurraa! Theatre Weeks"
            },
            "description": {
                "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.</p><p>Kahden livemuusikon säestämä esitys käsittelee miesten välistä ystävyyttä ja maskuliinisuuden teemoja absurdin teatterin, leikin, huumorin ja virtuoosimaisen katutanssin avulla.<br> <br>Teoksessa seurataan viittä cowboyta eeppisellä tehtävällä aavikolla. Siellä 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.<br> <br>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät tauot, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: characteriin eli persoonallisuuteen. Hahmojen ja leikin kautta esitys tutkii vaihtoehtoisia maskuliinisia ilmaisuja ja esittelee samalla kunkin tanssijan ainutlaatuista tyyliä ja persoonaa.<br> <br>Vuonna 2008 perustettu Will Funk For Food on yksi Euroopan tunnetuimmista katutanssiryhmistä, joka on voittanut useita mestaruuksia ja esiintynyt kansainvälisesti Euroopassa ja Japanissa. A Fistful of Funk on ryhmän ensimmäinen koko illan näyttämöteos ja uraauurtava lajissaan.</p><p>Kesto: 75 min<br>Ikäsuositus: 10+<br>Kieli: englanti</p><p>Tämä esitys on maksuton koululaisnäytös. Ilmoita kouluryhmäsi ennakkoon osoitteessa https://kultus.fi/fi <br>Ryhmät arvotaan esitykseen ilmoittautuneiden joukosta.<br> <br>Koreografia: Akim Bakhtaoui, Wilhelm Blomberg ja Will Funk For Food <br>Esiintyjät: Akim Bakhtaoui, Wilhelm Blomberg,  Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Mukana luovassa prosessissa: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Lavastussuunnittelu: Oscar Dempsey <br>Pukusuunnittelu: Antrea Kantakoski <br>Valosuunnittelu: Jaakko Sirainen <br>Äänisuunnittelu, muusikko: Sebastian Kurtén<br>Dramaturgi: Juho Keränen  <br>Rumpali: Leo Mäkinen <br>Tuotanto: Zodiak – Uuden tanssin keskus, Wilhelm Blomberg, Akim Bakhtaoui <br>Kiertuetuotanto: Otto Björkman</p><p><b>Hurraa! -teatteriviikot<br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.</p><p>Framträdandet, som ackompanjeras av två livemusiker, behandlar vänskap mellan män och teman som rör maskulinitet genom absurd teater, lek, humor och virtuos streetdans.</p><p>Under verket får vi följa fem cowboyer på ett episkt uppdrag i öknen. Där kombineras funkdans från 1970-talet med en text av dramatikern Juho Keränen, inspirerad av den toxiska machokulturen och hypermaskuliniteten i Sergio Leones westernfilmer.</p><p>Locking är en dansstil som föddes på 1970-talet på USA:s västkust bland afroamerikaner och som kännetecknas av skarpa pauser, grooviga steg och akrobatiska trick. Under framträdandet fördjupar vi oss i ett av de viktigaste elementen i locking: character, eller personlighet. Genom karaktärer och lek utforskar framträdandet alternativa maskulina uttryck, samtidigt som varje dansare visar upp sin unika stil och personlighet.</p><p>Will Funk For Food grundades 2008 och är en av Europas kändaste streetdansgrupper, som har vunnit flera mästerskap och uppträtt internationellt i Europa och Japan. A Fistful of Funk är gruppens första scenverk för en hel kväll och ett banbrytande verk i sitt slag.</p><p>Längd: 75 min.<br>Åldersrekommendation: 10+<br>Språk: engelska</p><p>Koreografi: Akim Bakhtaoui, Wilhelm Blomberg och Will Funk For Food <br>Framträdande: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg och Sami Pajari <br>Involverade i den kreativa processen: Sami Harju, Joonas Kilappa och Kai Ruusuvuori (WFFF) <br>Scendesign: Oscar Dempsey <br>Kostymdesign: Antrea Kantakoski <br>Ljusdesign: Jaakko Sirainen <br>Ljuddesign, musiker: Sebastian Kurtén<br>Dramaturgi: Juho Keränen  <br>Trumslagare: Leo Mäkinen <br>Produktion: Zodiak – Centret för ny dans, Wilhelm Blomberg, Akim Bakhtaoui <br>Turnéproduktion: Otto Björkman</p>",
                "en": "<p>Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week.</p><p>The performance, accompanied by two live musicians, deals with the themes of male friendship and masculinity through absurd theatre, play, humour and virtuoso street dance.</p><p>The work follows five cowboys on an epic mission in the desert. There, 1970s funk dance is combined with the text of playwright Juho Keränen, which is inspired by the toxic machismo and hypermasculinity of Sergio Leone’s westerns.</p><p>Locking is a dance style born among African Americans on the West Coast of the United States in the 1970s, characterised by sharp breaks, groovy steps and acrobatic tricks. The performance focuses on one of the key elements of locking: character. Through the characters and play, the performance explores alternative masculine expressions while presenting each dancer’s unique style and personality.</p><p>Founded in 2008, Will Funk For Food is one of Europe’s best-known street dance groups, having won several championships and performed internationally in Europe and Japan. A Fistful of Funk is the group’s first full-length dramatic work and a pioneer in its field.</p><p>Duration: 75 min<br>Age recommendation: 10+<br>Language: English</p><p>Choreography: Akim Bakhtaoui, Wilhelm Blomberg and Will Funk For Food <br>Performers: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Involved in the creative process: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Staging design: Oscar Dempsey <br>Costume design: Antrea Kantakoski <br>Lighting design: Jaakko Sirainen <br> Sound design, musician: Sebastian Kurtén<br>Dramaturge: Juho Keränen  <br>Drummer: Leo Mäkinen <br>Production: Zodiak – Center for New Dance, Wilhelm Blomberg, Akim Bakhtaoui <br>Tour production: Otto Björkman</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65078/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65079",
            "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: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:350/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?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: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": 163427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-22T14:14:59.028957Z",
                    "last_modified_time": "2025-01-22T14:14:59.028971Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763829.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163427/?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": "2025-01-22T14:14:58.999551Z",
            "last_modified_time": "2025-02-28T13:14:12.298747Z",
            "date_published": null,
            "start_time": "2025-03-14T10: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": "Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.",
                "sv": "Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.",
                "en": "Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/E2674A2A97CA75695C0C271562297111/Koululaisnaytos_Will_Funk_For_Food_A_Fistful_of_Funk",
                "sv": "http://www.stoa.fi/sv/evenemang/event/E2674A2A97CA75695C0C271562297111/Will_Funk_For_Food_A_Fistful_of_Funk",
                "en": "http://www.stoa.fi/en/events/event/E2674A2A97CA75695C0C271562297111/Will_Funk_For_Food_A_Fistful_of_Funk"
            },
            "name": {
                "fi": "Koululaisnäytös: Will Funk For Food | A Fistful of Funk – Hurraa! -teatteriviikot | ilmoittautuminen kultus.fi",
                "sv": "Will Funk For Food: A Fistful of Funk – Hurraa! -teaterveckor",
                "en": "Will Funk For Food: A Fistful of Funk – Hurraa! Theatre Weeks"
            },
            "description": {
                "fi": "<p>Suomen maineikkaampiin katutanssiryhmiin kuuluva Will Funk For Food tuo Hurraa! -viikolla Stoaan suuren suosion saaneen Locking-katutanssiteoksen A Fistful of Funk.</p><p>Kahden livemuusikon säestämä esitys käsittelee miesten välistä ystävyyttä ja maskuliinisuuden teemoja absurdin teatterin, leikin, huumorin ja virtuoosimaisen katutanssin avulla.<br> <br>Teoksessa seurataan viittä cowboyta eeppisellä tehtävällä aavikolla. Siellä 1970-luvun funk-tanssi yhdistyy näytelmäkirjailija Juho Keräsen tekstiin, jonka inspiraationa on Sergio Leonen lännenelokuvien toksinen machismo ja hypermaskuliinisuus.<br> <br>Locking on 1970-luvulla Yhdysvaltain länsirannikolla afrikkalaisamerikkalaisten keskuudessa syntynyt tanssityyli, jolle ovat ominaisia terävät tauot, groovaavat askeleet ja akrobaattiset temput. Esityksessä syvennytään yhteen lockingin keskeisistä elementeistä: characteriin eli persoonallisuuteen. Hahmojen ja leikin kautta esitys tutkii vaihtoehtoisia maskuliinisia ilmaisuja ja esittelee samalla kunkin tanssijan ainutlaatuista tyyliä ja persoonaa.<br> <br>Vuonna 2008 perustettu Will Funk For Food on yksi Euroopan tunnetuimmista katutanssiryhmistä, joka on voittanut useita mestaruuksia ja esiintynyt kansainvälisesti Euroopassa ja Japanissa. A Fistful of Funk on ryhmän ensimmäinen koko illan näyttämöteos ja uraauurtava lajissaan.</p><p>Kesto: 75 min<br>Ikäsuositus: 10+<br>Kieli: englanti</p><p>Tämä esitys on maksuton koululaisnäytös. Ilmoita kouluryhmäsi ennakkoon osoitteessa https://kultus.fi/fi <br>Ryhmät arvotaan esitykseen ilmoittautuneiden joukosta.<br> <br>Koreografia: Akim Bakhtaoui, Wilhelm Blomberg ja Will Funk For Food <br>Esiintyjät: Akim Bakhtaoui, Wilhelm Blomberg,  Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Mukana luovassa prosessissa: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Lavastussuunnittelu: Oscar Dempsey <br>Pukusuunnittelu: Antrea Kantakoski <br>Valosuunnittelu: Jaakko Sirainen <br>Äänisuunnittelu, muusikko: Sebastian Kurtén<br>Dramaturgi: Juho Keränen  <br>Rumpali: Leo Mäkinen <br>Tuotanto: Zodiak – Uuden tanssin keskus, Wilhelm Blomberg, Akim Bakhtaoui <br>Kiertuetuotanto: Otto Björkman</p><p><b>Hurraa! -teatteriviikot<br>Tuo lapsi teatteriin</b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.</p><p>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.<br>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>Under Hurra!-veckan tar Will Funk For Food, en av Finlands mest berömda streetdansgrupper, med sig sitt hyllade Locking-streetdansverk ”A Fistful of Funk” till Stoa.</p><p>Framträdandet, som ackompanjeras av två livemusiker, behandlar vänskap mellan män och teman som rör maskulinitet genom absurd teater, lek, humor och virtuos streetdans.</p><p>Under verket får vi följa fem cowboyer på ett episkt uppdrag i öknen. Där kombineras funkdans från 1970-talet med en text av dramatikern Juho Keränen, inspirerad av den toxiska machokulturen och hypermaskuliniteten i Sergio Leones westernfilmer.</p><p>Locking är en dansstil som föddes på 1970-talet på USA:s västkust bland afroamerikaner och som kännetecknas av skarpa pauser, grooviga steg och akrobatiska trick. Under framträdandet fördjupar vi oss i ett av de viktigaste elementen i locking: character, eller personlighet. Genom karaktärer och lek utforskar framträdandet alternativa maskulina uttryck, samtidigt som varje dansare visar upp sin unika stil och personlighet.</p><p>Will Funk For Food grundades 2008 och är en av Europas kändaste streetdansgrupper, som har vunnit flera mästerskap och uppträtt internationellt i Europa och Japan. A Fistful of Funk är gruppens första scenverk för en hel kväll och ett banbrytande verk i sitt slag.</p><p>Längd: 75 min.<br>Åldersrekommendation: 10+<br>Språk: engelska</p><p>Koreografi: Akim Bakhtaoui, Wilhelm Blomberg och Will Funk For Food <br>Framträdande: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg och Sami Pajari <br>Involverade i den kreativa processen: Sami Harju, Joonas Kilappa och Kai Ruusuvuori (WFFF) <br>Scendesign: Oscar Dempsey <br>Kostymdesign: Antrea Kantakoski <br>Ljusdesign: Jaakko Sirainen <br>Ljuddesign, musiker: Sebastian Kurtén<br>Dramaturgi: Juho Keränen  <br>Trumslagare: Leo Mäkinen <br>Produktion: Zodiak – Centret för ny dans, Wilhelm Blomberg, Akim Bakhtaoui <br>Turnéproduktion: Otto Björkman</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>Will Funk For Food one of Finland’s most renowned street dance groups, brings A Fistful of Funk, a Locking street dance piece of great popularity, to Stoa during Hurraa! week.</p><p>The performance, accompanied by two live musicians, deals with the themes of male friendship and masculinity through absurd theatre, play, humour and virtuoso street dance.</p><p>The work follows five cowboys on an epic mission in the desert. There, 1970s funk dance is combined with the text of playwright Juho Keränen, which is inspired by the toxic machismo and hypermasculinity of Sergio Leone’s westerns.</p><p>Locking is a dance style born among African Americans on the West Coast of the United States in the 1970s, characterised by sharp breaks, groovy steps and acrobatic tricks. The performance focuses on one of the key elements of locking: character. Through the characters and play, the performance explores alternative masculine expressions while presenting each dancer’s unique style and personality.</p><p>Founded in 2008, Will Funk For Food is one of Europe’s best-known street dance groups, having won several championships and performed internationally in Europe and Japan. A Fistful of Funk is the group’s first full-length dramatic work and a pioneer in its field.</p><p>Duration: 75 min<br>Age recommendation: 10+<br>Language: English</p><p>Choreography: Akim Bakhtaoui, Wilhelm Blomberg and Will Funk For Food <br>Performers: Akim Bakhtaoui, Wilhelm Blomberg, Jeffrey Kam, Teemu Kullberg, Sami Pajari <br>Involved in the creative process: Sami Harju, Joonas Kilappa, Kai Ruusuvuori (WFFF) <br>Staging design: Oscar Dempsey <br>Costume design: Antrea Kantakoski <br>Lighting design: Jaakko Sirainen <br> Sound design, musician: Sebastian Kurtén<br>Dramaturge: Juho Keränen  <br>Drummer: Leo Mäkinen <br>Production: Zodiak – Center for New Dance, Wilhelm Blomberg, Akim Bakhtaoui <br>Tour production: Otto Björkman</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65079/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65503",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?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: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": 165015,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-23T12:14:58.497805Z",
                    "last_modified_time": "2025-01-23T12:14:58.497823Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761751.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165015/?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": "2025-01-23T12:14:58.463469Z",
            "last_modified_time": "2025-02-28T11:14:29.055712Z",
            "date_published": null,
            "start_time": "2025-03-21T08:45: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": "KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.",
                "sv": "KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.",
                "en": "KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX",
                "en": "http://www.vuotalo.fi/en/events/event/2565A22A23E3320C8A29CE743A2BBF39/KATVE_blind_spot_Company_CRAZY_BOX"
            },
            "name": {
                "fi": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teatteriviikot",
                "sv": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teaterveckor",
                "en": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! Theatre weeks"
            },
            "description": {
                "fi": "<p>KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.</p><p>Esityksen keskiössä on laatikko, joka mahdollistaa teleporttaamisen - alkaa ihmeellinen, villi ja absurdin hulvaton matka!</p><p>CRAZY BOX -teoksen teemana on rohkeus ja mielikuvitus. Esitys näyttää, että hyppäämällä uusiin tilanteisiin voi löytää itsestään ja maailmasta uutta. Sanaton esitys kannustaa avarakatseisuuteen suhteessa itseen ja toisiin.</p><p>Teoksesta esitetään kaksi erilaista versiota, joista toinen on päiväkoti-ikäisille ja alakoulun ensimmäisille luokille suunnattu, ja toinen yli 11-vuotiaille lapsille ja nuorille.</p><p>klo 9:30 esitys on päiväkotiryhmille<br>klo 10:45 esitys on alakouluryhmille</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.fi/fi</p><p><b>TYÖRYHMÄ</b><br>Konsepti, koreografia ja tanssi: Tanja Illukka ja Heidi Masalin<br>Äänisuunnittelu: Olli Havu<br>Laatikon toteutus: Lotta Esko</p><p>KATVE [blind spot] Company on helsinkiläinen, vuonna 2012 perustettu nykytanssiryhmä, joka tunnetaan moniulotteisista ja raikkaista nykytanssiteoksista. Ryhmän teoksia leimaa mielikuvitus, fyysisyys ja rajaton mielenkiinto elämän erilaisia ilmiöitä kohtaan. KATVE [blind spot] Companyn taiteellisena johtajana toimii tanssitaiteilija Heidi Masalin.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin </b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.</p><p>Föreställningen handlar om en låda som gör det möjligt att teleportera sig – så börjar en förunderlig, vild och absurt rolig resa!<br>Temat för verket CRAZY BOX är mod och fantasi. Föreställningen visar att man kan upptäcka något nytt om sig själv och om världen då man hoppar in i nya situationer. Den ordlösa föreställningen uppmuntrar till öppenhet gentemot sig själv och andra.</p><p>Verket framförs i två olika versioner, en för daghemsbarn och elever på de lägsta årskurserna i lågstadieskolan, och en för barn och unga över 10 år.</p><p>Fri entré, anmälan obligatorisk för grupper: https://kultus.fi/fi</p><p><b>ARBETSGRUPP</b><br>Koncept, koreografi och dans: Tanja Illukka och Heidi Masalin<br>Ljuddesign: Olli Havu<br>Lådans genomförande: Lotta Esko</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki.</p><p>At the heart of the show is a box that enables teleportation – a wondrous, wild and absurdly hilarious journey begins!<br>The theme of CRAZY BOX is courage and imagination. The performance shows that by jumping into new situations, you can discover something new about yourself and the world. The non-verbal performance encourages you to be open-minded with yourself and others.</p><p>There are two versions of the performance. One is aimed for daycare centre-aged children and the lower grades of primary school. The other are for children and young people over 10 years of age.</p><p>Free admission, registration mandatory for groups at https://kultus.fi/fi</p><p><b>WORKING GROUP</b><br>Concept, choreography and dance: Tanja Illukka and Heidi Masalin<br>Sound design: Olli Havu<br>Box implementation: Lotta Esko</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65503/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65502",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p2625/?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: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": 165014,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-23T12:14:58.295225Z",
                    "last_modified_time": "2025-01-23T12:14:58.295242Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761750.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165014/?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": "2025-01-23T12:14:58.258329Z",
            "last_modified_time": "2025-02-28T11:14:28.904451Z",
            "date_published": null,
            "start_time": "2025-03-21T07:30:00Z",
            "end_time": null,
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.",
                "sv": "KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.",
                "en": "KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX",
                "en": "http://www.vuotalo.fi/en/events/event/EFB3FB4F1D707B2795BDDC053B9F5A2E/KATVE_blind_spot_Company_CRAZY_BOX"
            },
            "name": {
                "fi": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teatteriviikot",
                "sv": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! -teaterveckor",
                "en": "KATVE [blind spot] Company: CRAZY BOX – Hurraa! Theatre weeks"
            },
            "description": {
                "fi": "<p>KATVE [blind spot] Companyn maaginen, lapsille ja nuorille suunnattu CRAZY BOX -tanssiteos saa ensi-iltansa Hurraa! -teatteriviikolla 2025 Helsingissä.</p><p>Esityksen keskiössä on laatikko, joka mahdollistaa teleporttaamisen - alkaa ihmeellinen, villi ja absurdin hulvaton matka!</p><p>CRAZY BOX -teoksen teemana on rohkeus ja mielikuvitus. Esitys näyttää, että hyppäämällä uusiin tilanteisiin voi löytää itsestään ja maailmasta uutta. Sanaton esitys kannustaa avarakatseisuuteen suhteessa itseen ja toisiin.</p><p>Teoksesta esitetään kaksi erilaista versiota, joista toinen on päiväkoti-ikäisille ja alakoulun ensimmäisille luokille suunnattu, ja toinen yli 11-vuotiaille lapsille ja nuorille.</p><p>klo 9:30 esitys on päiväkotiryhmille<br>klo 10:45 esitys on alakouluryhmille</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.fi/fi</p><p><b>TYÖRYHMÄ</b><br>Konsepti, koreografia ja tanssi: Tanja Illukka ja Heidi Masalin<br>Äänisuunnittelu: Olli Havu<br>Laatikon toteutus: Lotta Esko</p><p>KATVE [blind spot] Company on helsinkiläinen, vuonna 2012 perustettu nykytanssiryhmä, joka tunnetaan moniulotteisista ja raikkaista nykytanssiteoksista. Ryhmän teoksia leimaa mielikuvitus, fyysisyys ja rajaton mielenkiinto elämän erilaisia ilmiöitä kohtaan. KATVE [blind spot] Companyn taiteellisena johtajana toimii tanssitaiteilija Heidi Masalin.</p><p><b>Hurraa! -teatteriviikot <br>Tuo lapsi teatteriin </b><br>Hurraa! -teatteriviikkojen tarkoituksena on tarjota mahdollisimman monelle lapselle ja nuorelle tilaisuus nähdä juuri heille suunnattua elävää teatteria.</p><p>Hurraa! -teatteriviikot tuovat valokeilaan laadukkaan lapsille ja nuorille suunnatun näyttämötaiteen. Ohjelmistossa on yhteensä 14 eri esitystä ja 40 näytöstä ympäri Helsinkiä.<br> <br>Hurraa! -teatteriviikkojen näytökset esitetään Helsingin kulttuurikeskuksissa 14.–26.3.2025. Esityspaikkoina ovat Annantalo, Caisa, Kanneltalo, Malmitalo, Stoa ja Vuotalo. Kulttuurikeskusten lisäksi esitykset ilahduttavat lapsia ja nuoria Helsingin Lastensairaalassa.</p><p>Hurraa! järjestetään osana kansainvälistä teatterikampanjaviikkoa: Take a child to the theatre – tuo lapsi teatteriin. Viikolla juhlitaan myös lasten kansainvälistä teatteripäivää 20.3.</p><p>Löydät kaikki Hurraa! -esitykset <u><a href=\"https://tapahtumat.hel.fi/fi/haku?text=hurraa\">tapahtumat.hel.fi-sivulta.</a></u></p>",
                "sv": "<p>KATVE [blind spot] Companys magiska dansverk CRAZY BOX som är avsett för barn och unga har premiär under teaterveckan Hurra! 2025 i Helsingfors.</p><p>Föreställningen handlar om en låda som gör det möjligt att teleportera sig – så börjar en förunderlig, vild och absurt rolig resa!<br>Temat för verket CRAZY BOX är mod och fantasi. Föreställningen visar att man kan upptäcka något nytt om sig själv och om världen då man hoppar in i nya situationer. Den ordlösa föreställningen uppmuntrar till öppenhet gentemot sig själv och andra.</p><p>Verket framförs i två olika versioner, en för daghemsbarn och elever på de lägsta årskurserna i lågstadieskolan, och en för barn och unga över 10 år.</p><p>Fri entré, anmälan obligatorisk för grupper: https://kultus.fi/fi</p><p><b>ARBETSGRUPP</b><br>Koncept, koreografi och dans: Tanja Illukka och Heidi Masalin<br>Ljuddesign: Olli Havu<br>Lådans genomförande: Lotta Esko</p><p>Du hittar alla Hurraa!-föreställningar <u><a href=\"https://tapahtumat.hel.fi/sv/sok?text=hurraa\">på webbplatsen tapahtumat.hel.fi</a></u></p>",
                "en": "<p>KATVE [blind spot] Company’s magical CRAZY BOX dance piece for children and young adults premieres during Hurraa! theatre week 2025 in Helsinki.</p><p>At the heart of the show is a box that enables teleportation – a wondrous, wild and absurdly hilarious journey begins!<br>The theme of CRAZY BOX is courage and imagination. The performance shows that by jumping into new situations, you can discover something new about yourself and the world. The non-verbal performance encourages you to be open-minded with yourself and others.</p><p>There are two versions of the performance. One is aimed for daycare centre-aged children and the lower grades of primary school. The other are for children and young people over 10 years of age.</p><p>Free admission, registration mandatory for groups at https://kultus.fi/fi</p><p><b>WORKING GROUP</b><br>Concept, choreography and dance: Tanja Illukka and Heidi Masalin<br>Sound design: Olli Havu<br>Box implementation: Lotta Esko</p><p>You can find all Hurraa! performances <u><a href=\"https://tapahtumat.hel.fi/en/search?text=hurraa\">on the website tapahtumat.hel.fi</a></u></p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65502/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65125",
            "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: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: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/kulke:732/?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"
                },
                {
                    "@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": 153167,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-03T14:17:21.275835Z",
                    "last_modified_time": "2024-12-03T14:17:21.275854Z",
                    "name": "",
                    "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764075.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153167/?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-12-03T14:17:21.250663Z",
            "last_modified_time": "2025-02-28T08:14:14.505619Z",
            "date_published": null,
            "start_time": "2025-03-05T08:00:00Z",
            "end_time": "2025-03-05T10: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": "Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.",
                "sv": "Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.",
                "en": "Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult."
            },
            "info_url": {
                "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CFD4CAA6736183F65645C32391E8B172/Naperokahvila",
                "sv": "http://www.annantalo.fi/sv/evenemang/event/CFD4CAA6736183F65645C32391E8B172/Smabarnskaf_",
                "en": "http://www.annantalo.fi/en/events/event/CFD4CAA6736183F65645C32391E8B172/Toddler_caf_"
            },
            "name": {
                "fi": "Naperokahvila",
                "sv": "Småbarnskafé",
                "en": "Toddler café"
            },
            "description": {
                "fi": "<p>Naperokahvila on 0–3-vuotiaiden oma kahvila! Kahvilassa on vaihtuvaa tekemistä perheen pienimmille yhdessä oman aikuisen kanssa.</p><p>Ohjelmassa voi olla maalaamista, musisointia tai vaikkapa lasten animaatioiden katselua. Taidetekemisen ohessa Naperokahvila toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Tänään Naperokahvilassa katsellaan lyhytanimaatioita ja osallistutaan työpajaan, jossa tehdään talvisia pilviä.</p><p>Naperokahvilassa voit piipahtaa tai viipyä pidempään. Rento ja mukava tila mahdollistaa lapsen ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen oleskelun kahvilassa.</p><p>Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokahvila on suunnattu kotiäideille ja -isille, isovanhemmille, perhepäivähoitajille ja muille lapsille tärkeille aikuisille. <br>Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Samassa tilassa palvelee Annantalon ikioma pannarikahvila Puffy Mini Pancakes.</p><p><b>Kevään 2025 Naperokahvilat:</b></p><p>ke 22.1 klo 10–12<br>ke 5.2. klo 10–12<br>ke 19.2. klo 10–12<br>ke 5.3. klo 10–12<br>ke 19.3 klo 10–12<br>ke 2.4 klo 10–12<br>ke 16.4. klo 10–12</p><p>Ikäsuositus: 0–3-vuotiaille oman aikuisen kanssa<br>Kieli: monikielinen (suomi, ruotsi, englanti)<br>Vapaa pääsy!</p>",
                "sv": "<p>Småbarnskaféet är 0–3-åringarnas eget kafé! Kaféet erbjuder varierande aktiviteter för familjens minsta i sällskap av en vuxen.</p><p>Det kan handla om att måla, musicera eller titta på animationer för barn. Utöver konstaktiviteter är Småbarnskaféet en mötesplats för små barn och deras föräldrar.</p><p>Idag på Småbarnskaféet tittar vi på kortanimationer och deltar i en verkstad där vi skapar vintermoln.</p><p>Du kan titta in eller stanna kvar längre på Småbarnskaféet. I det avslappnade och trivsamma utrymmet går det att värma mat för barnet, mata/amma barnet och njuta av en barnvänlig vistelse i kaféet.</p><p>Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Småbarnskaféet riktar sig till hemmamammor och -pappor, mor- och farföräldrar, familjedagvårdare och andra vuxna som är viktiga för barnen. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>I samma utrymme betjänar Annegårdens alldeles egna pannkakskafé, Puffy Mini Pancakes.</p><p>Åldersrekommendation: 0–3-åringar i sällskap av en vuxen <br>Fritt inträde<br>Lokal: Kaféet</p>",
                "en": "<p>Toddler café is a café for 0–3-year-olds. The café has diverse activities for the youngest family members together with their adult.</p><p>The programme can include painting, music or, for example, watching children’s animations. In addition to making art, Toddler café serves as a meeting place for small children and their adults.<br>You can stop by for a short visit or stay longer.</p><p>Today at the Toddler Café, we will watch short animations and take part in a workshop where we create winter clouds.</p><p>At the relaxed and comfortable space, you can heat up your child’s food, feed/breastfeed as well as stay in the cafeteria at your child’s pace. <br>A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler café is aimed at stay-at-home moms and dads, grandparents, family day caregivers and other adults who are important to children. Unfortunately, we cannot accommodate daycare centres due to the small size of our premises.</p><p>You can also find Annantalo’s very own pancake café Puffy Mini Pancakes in the same space.</p><p>Age recommendation: 0–3-year-old children with their adult <br>Free admission<br>Venue: Café</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65125/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "helsinki:agkurfwy44",
            "has_user_editable_resources": true,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p12683/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p20881/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "description": null,
                    "price": null,
                    "info_url": {
                        "fi": ""
                    }
                }
            ],
            "data_source": "helsinki",
            "publisher": "ahjo:00001",
            "sub_events": [],
            "images": [],
            "videos": [],
            "in_language": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api"
                }
            ],
            "audience": [],
            "created_time": "2025-02-27T18:06:40.408387Z",
            "last_modified_time": "2025-02-27T18:06:40.408405Z",
            "date_published": null,
            "start_time": "2025-06-17T11:30:00Z",
            "end_time": "2025-06-17T12: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": 3,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Testataan pocia"
            },
            "info_url": {
                "fi": ""
            },
            "name": {
                "fi": "H-M poc testaus"
            },
            "description": {
                "fi": "<p>samma på svenska</p>"
            },
            "location_extra_info": {
                "fi": ""
            },
            "provider": {
                "fi": ""
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helsinki:agkurfwy44/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65067",
            "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:32/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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:p1278/?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: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": 153633,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T15:14:14.480512Z",
                    "last_modified_time": "2024-12-31T15:14:14.480526Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763794.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153633/?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-12-31T15:14:14.431915Z",
            "last_modified_time": "2025-02-26T15:14:18.602259Z",
            "date_published": null,
            "start_time": "2025-03-02T11:00:00Z",
            "end_time": "2025-03-02T14: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": "Oli lunta tai ei, Stoan aukiolla juhlistetaan talvea ja laskiaista!",
                "sv": "Snö eller ingen snö, på Stoaplatsen firar vi vintern och fastlagen!",
                "en": "Whether it snows or not, winter and Shrove Sunday are celebrated at Stoa square!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A70BD4AB8A523B374F4E89ADDCA858EF/Koko_perheen_after-ski-keidas",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A70BD4AB8A523B374F4E89ADDCA858EF/Koko_perheen_after-ski-keidas",
                "en": "http://www.stoa.fi/en/events/event/A70BD4AB8A523B374F4E89ADDCA858EF/Koko_perheen_after-ski-keidas"
            },
            "name": {
                "fi": "Koko perheen after-ski-keidas – Vilma Jää, toppatakkidisko, lumijäätelöä, jäänveistoa, satuja ja paljon muuta!",
                "sv": "Koko perheen after-ski-keidas",
                "en": "Koko perheen after-ski-keidas"
            },
            "description": {
                "fi": "<p>Oli lunta tai ei, Stoan aukiolla juhlistetaan talvea ja laskiaista!</p><p>Tervetuloa mukaan säänkestävään tapahtumaan, jossa viihtyvät niin pakkashirmut kuin vilukissatkin. Aulassa tunnelmaa lämmittää etnopopin kuumin nimi <b>Vilma Jää</b>, samalla kun Stoan aukiolle syntyy jääveistos jäätaiteilijan käsissä.</p><p>Nuorisotalo Kipinän DJ:t tanssittavat ulkoilmassa kaiken ikäistä toppatakkikansaa, ja kaikkein räväköin talvimuoti palkitaan!</p><p>Voit myös itse tehdä talvijäätelöä, oppia tulen tekemisestä ja talvisista retkeilynikseistä, ja löytää monenlaista ihmeellistä talvipuuhaa. Tule suoraan pulkkamäestä tai sitä ennen: Box Stoassa ja partiolaisten teltassa maistuu laskiainen, ja grilli on kuumana myös osallistujien omille piknik-eväille.</p><p>Yhteistyössä Stoan palvelut ja Yhteiset lapsemme ry  <br>      <br><b>klo 13–16 Stoan aukiolla <br>Ice Magic! Jäänveiston taikaa</b><br>Stoan aukiolle syntyy tapahtuman aikana jääveistos kaksinkertaisen jäänveiston suomenmestarin, kansainvälisesti palkitun <b>Anssi Kuosan</b> käsissä.</p><p><b>klo 13–14.45 Stoan aukiolla<br>Kipinän DJ PA: Toppatakkidisco ja tanssinopetusta</b> <br>Street dancen askelia opetellaan klo 13 ja 14<br>  <br><b>klo 13–15.30 Stoan aukiolla <br>Queendom: Talvimuotibongausta</b><br>Tapahtumassa rohkeaa, räväkkää ja ihanan räikeää talvimuotia bongailevat Queendomin tyylitaiturit. Mieleenpainuvimmat asukokonaisuudet palkitaan! <br>  <br><b>klo 13–15 Stoan aukiolla <br>Kiksu the Clown – Kiksu-klovni</b>  <br>Stoan aukiolla hääräilee ja säätää myös Kiksu-klovni, jonka kanssa voit viettää laskiaisen laatuaikaa<br>    <br><b>klo 13.30 ja 14.30 <br>Lumikasa -satutuokio</b><br>Stoan aukion kirjastoteltassa voit kuunnella <b>Emilia Erfvingin</b> Lumikasa -kirjaan perustuvia satutuokioita. <br>   <br><b>klo 15–15.45 Vilukissa-lounge, Stoan aula <br>Vilma Jää</b> <br>Vilma Jää on suomalaisen musiikin nouseva tähti, joka yhdistelee perinteisen kansanmusiikin syvyyden ja modernin popin raikkaan energian. Hänen musiikkinsa on kuin pohjoisen luonnon maisema – samaan aikaan herkkä ja voimakas, täynnä tarinoita, jotka puhuttelevat sekä sydäntä että sielua.<br>VILMA JÄÄ: <br>Vilma Jää – laulu, viulu <br>Pilvi Kekkonen – lavaelektroniikka, taustalaulu <br>Hanna Ryynänen – kantele <br> <br><b>Työpajat klo 13–16</b></p><p><b>Talvisäihke - galaktinen lumiseikkailurata (musiikkisali ja aukio)</b><br>Kokoa galaktisen kuurainen kulkupelisi ja testaa taitosi lumisella liitoradalla.</p><p><b>Talviretkeilyn taitoja-työpaja (Stoan aukio)</b><br>Millaisia taitoja ja varusteita tarvitaan talviretkeilyssä? Tule kokeilemaan talvitelttailua ja trangian käyttöä. <br>Opettaja: erä- ja luonto-opas Joel Rosenberg</p><p><b>Talviset supernaamiot (aula)</b><br>Kehitä oma supervoimasi ja taiteile itsellesi oma talvinen supernaamio Yhteiset Lapsemme ry:n supernaamio -työpajassa.<br> <br><b>Lumijäätelötyöpaja (aukio)</b><br>Tässä työpajassa tehdään syötävää sorbettia jään ja suolan avulla pussissa.</p><p><b>On-nen-pyö-rä!  (aukio)</b><br>Pyöräytä itsellesi poistokirja -tai lehti - tai muuta kivaa! Klo 13 alkaen niin kauan kuin yllätyksiä riittää.</p><p><b>Talvikuplat (aukio) </b><br>Tule talvikeijujen kanssa puhaltamaan taikaseoksesta pakkasen kestäviä saippuakuplia! Välineitä kuplien puhaltamiseen jaetaan 15 henkilölle kerrallaan.</p><p><b>Talvimuotikuvia! (aukio klo 13-15)</b><br>Valokuvaajamme taltioi tapahtuman talvimuotia ja halutessasi saat kuvan sähköisesti.</p><p><b>Jälkiä lumella! (aulan tasanne)</b><br>Tule tutustumaan talvisiin eläinten jälkiin, tekemään itse leimasin ja täyttämään valkea paperi jäljillä. Ohjaaja: Chloé Mahy-Hulkko</p><p><b>Lisäksi:</b><br>• <b>Kauppakeskus Itis tarjoaa sadalle ensimmäiselle pulkan tai liukurin </b> INFO-pisteessä aukiolla! 1 per perhe<br>• <b>Myllypuron  Partiolippukunta Myllypuron Mustarastaiden lettukoju</b> aukiolla <br>•<b> Box Stoasta</b> parhaat laskiaisherkut <br>• Grilli on kuumana omille eväille<br>• <b>Kirjanäyttely</b> retkeily- ja luontoaiheisista kirjoista lastenosastolla</p><p>Vapaa pääsy!</p>",
                "sv": "<p>Snö eller ingen snö, på Stoaplatsen firar vi vintern och fastlagen!</p><p>Välkommen med på ett väderbeständigt evenemang som passar både den frusna och den som älskar kylan. En vintrig DJ får påbyltade i alla åldrar att dansa, och den fräsigaste dansklädnaden belönas!</p><p>Du kan vara med och skapa en isskulpturpark i miniformat, lära dig cirkuskonster och upptäcka alla möjliga besynnerliga vinteraktiviteter.</p><p>Du får också lära dig hur man gör upp eld och knep för vintercamping. Kom direkt från pulkabacken eller på vägen dit: i restaurangen finns det fastlagsgott, och grillen kommer också att vara varm för deltagarnas egen picknickmat.</p><p>Programmet kommer att preciseras under januari.</p><p>Fritt inträde.<br> <br>I samarbete med servicen på Stoa och Våra gemensamma barn rf.</p>",
                "en": "<p>Whether it snows or not, winter and Shrove Sunday are celebrated at Stoa square!</p><p>Welcome to a weather-resistant event – whether you love the cold or the heat, this is the place for you! A wintery DJ will be playing tunes to everyone in a winter jacket, and the most dashing dance outfit is rewarded!</p><p>You can participate in making a mini ice sculpture park, master circus skills and discover many kinds of wondrous winter activities. You will also learn winter camping tips and how to make a fire.</p><p>Come straight from the sledding hill or before: we have all the flavours of Shrove Sunday, and the barbecue is hot for your picnic foods. The programme will be updated during January.</p><p>Free admission.<br> <br>In cooperation with Stoa’s services and All Our Children</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65067/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65337",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153599,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:09.596282Z",
                    "last_modified_time": "2024-12-31T13:14:09.596297Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758491.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153599/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:09.557792Z",
            "last_modified_time": "2025-02-26T13:14:11.400477Z",
            "date_published": null,
            "start_time": "2025-03-04T11:30:00Z",
            "end_time": "2025-03-04T13:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/60356E256A0B7E83B61DE0C685CAF89D/Taidetta_taaperoille_PERUTTU",
                "sv": "http://www.caisa.fi/sv/evenemang/event/60356E256A0B7E83B61DE0C685CAF89D/Oppen_konst_studio_for_smabarn_AVBRUTEN",
                "en": "http://www.caisa.fi/en/events/event/60356E256A0B7E83B61DE0C685CAF89D/Open_Art_studio_for_Toddlers_CANCELLED_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille PERUTTU – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn AVBRUTEN",
                "en": "Open Art studio for Toddlers CANCELLED and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65337/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64037",
            "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: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"
                },
                {
                    "@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": 151856,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-07-25T12:15:05.238963Z",
                    "last_modified_time": "2024-07-25T12:15:05.238983Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755077.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151856/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-07-25T12:15:05.173621Z",
            "last_modified_time": "2025-02-26T13:13:54.120533Z",
            "date_published": null,
            "start_time": "2024-10-24",
            "end_time": "2025-03-01",
            "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": "Myyttinen maisema on täynnä tarinoita, jotka haluavat tulla kerrotuksi. Tule raaputtamaan oma mielenmaisemasi näkyväksi.",
                "sv": "Det mytiska landskapet är fullt av historier som vill bli berättade. Kom och skrapa fram din egen tankevärld."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/077BF7744AE963263A72C2AA0BF72C77/Myyttinen_maisema",
                "sv": "http://www.stoa.fi/sv/evenemang/event/077BF7744AE963263A72C2AA0BF72C77/Mytiskt_landskap"
            },
            "name": {
                "fi": "Myyttinen maisema – Stoa 40! Stoan aukion yhteisöllinen valotaideteos",
                "sv": "Mytiskt landskap – Stoa 40! Gemenskapsljuskonstverk på Stoaplatsen"
            },
            "description": {
                "fi": "<p>Myyttinen maisema on täynnä tarinoita, jotka haluavat tulla kerrotuksi. Tule raaputtamaan oma mielenmaisemasi näkyväksi.</p><p>Metsän siimes, pellonlaita, ojan piennar, meren aava. Luonnon helmoissa voi kohdata monenlaisia kulkijoita – todellisia ja kuviteltuja. Maisema muuttuu ja kehittyy, mutta tarut jatkavat eloaan.</p><p>Työpajoissa syntyneet kuvaelmat heijastetaan valaisemaan Stoan aukiota pimeyden saavuttua syksyllä. Teoksen avajaisia juhlitaan Stoan syntymäpäiväviikolla 24.10.</p>",
                "sv": "<p>Det mytiska landskapet är fullt av historier som vill bli berättade. Kom och skrapa fram din egen tankevärld.</p><p>Skogens skygd, åkerkanten, dikesrenen, öppna havet. I naturens sköte kan man råka på många olika vandrare – verkliga och föreställda. Landskapet förändras och utvecklas, men berättelserna lever vidare.</p><p>De tablåer som skapas i workshopparna kommer att projiceras för att lysa upp Stoaplatsen efter att höstmörkret lagt sig. Verket kommer att invigas under Stoas födelsedagsvecka 24.10.</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64037/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65360",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153632,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:24.500445Z",
                    "last_modified_time": "2024-12-31T14:14:24.500458Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758503.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153632/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:24.476849Z",
            "last_modified_time": "2025-02-26T12:15:03.824070Z",
            "date_published": null,
            "start_time": "2025-05-27T10:30:00Z",
            "end_time": "2025-05-27T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/946DD3802F378D8840FECAFE484C994C/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/946DD3802F378D8840FECAFE484C994C/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/946DD3802F378D8840FECAFE484C994C/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65360/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65359",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 153631,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:24.176107Z",
                    "last_modified_time": "2024-12-31T14:14:24.176120Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758521.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153631/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:24.153812Z",
            "last_modified_time": "2025-02-26T12:15:03.102756Z",
            "date_published": null,
            "start_time": "2025-05-22T07:00:00Z",
            "end_time": "2025-05-22T09: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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/892852E62AF83EF181A2E2DCA3474999/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/892852E62AF83EF181A2E2DCA3474999/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/892852E62AF83EF181A2E2DCA3474999/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65359/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65358",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153630,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:24.057235Z",
                    "last_modified_time": "2024-12-31T14:14:24.057252Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758502.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153630/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:24.033760Z",
            "last_modified_time": "2025-02-26T12:15:02.879808Z",
            "date_published": null,
            "start_time": "2025-05-20T10:30:00Z",
            "end_time": "2025-05-20T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/34C7A6F028497DD28F4B7FB6D4FA5EE8/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/34C7A6F028497DD28F4B7FB6D4FA5EE8/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/34C7A6F028497DD28F4B7FB6D4FA5EE8/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65358/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65357",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 153628,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:23.593557Z",
                    "last_modified_time": "2024-12-31T14:14:23.593571Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758520.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153628/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:23.570359Z",
            "last_modified_time": "2025-02-26T12:15:01.992917Z",
            "date_published": null,
            "start_time": "2025-05-15T07:00:00Z",
            "end_time": "2025-05-15T09: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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/C5E6A8AA2BE6E29940F259165BE9945A/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/C5E6A8AA2BE6E29940F259165BE9945A/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/C5E6A8AA2BE6E29940F259165BE9945A/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65357/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65356",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153627,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:23.375105Z",
                    "last_modified_time": "2024-12-31T14:14:23.375119Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758501.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153627/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:23.352330Z",
            "last_modified_time": "2025-02-26T12:15:01.609540Z",
            "date_published": null,
            "start_time": "2025-05-13T10:30:00Z",
            "end_time": "2025-05-13T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/E218000B361F304BB81A258332A5F524/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/E218000B361F304BB81A258332A5F524/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/E218000B361F304BB81A258332A5F524/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65356/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65355",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 153626,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:23.103034Z",
                    "last_modified_time": "2024-12-31T14:14:23.103050Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758519.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153626/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:23.079719Z",
            "last_modified_time": "2025-02-26T12:15:00.466669Z",
            "date_published": null,
            "start_time": "2025-05-08T07:00:00Z",
            "end_time": "2025-05-08T09: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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/1F52E51DBF2AF78258D381EC1FB2B3A1/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/1F52E51DBF2AF78258D381EC1FB2B3A1/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/1F52E51DBF2AF78258D381EC1FB2B3A1/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65355/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65354",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153624,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T14:14:22.734370Z",
                    "last_modified_time": "2024-12-31T14:14:22.734383Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758500.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153624/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T14:14:22.711323Z",
            "last_modified_time": "2025-02-26T12:14:59.813187Z",
            "date_published": null,
            "start_time": "2025-05-06T10:30:00Z",
            "end_time": "2025-05-06T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/E13774236B21D6B6D7BAC93E26BD9689/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/E13774236B21D6B6D7BAC93E26BD9689/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/E13774236B21D6B6D7BAC93E26BD9689/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65354/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65353",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153613,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:18.064554Z",
                    "last_modified_time": "2024-12-31T13:14:18.064568Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758499.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153613/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:18.039837Z",
            "last_modified_time": "2025-02-26T12:14:58.747987Z",
            "date_published": null,
            "start_time": "2025-04-29T10:30:00Z",
            "end_time": "2025-04-29T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/A08E07489DCE9CA961B18041082E5B37/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/A08E07489DCE9CA961B18041082E5B37/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/A08E07489DCE9CA961B18041082E5B37/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65353/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65352",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": 153621,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:20.652168Z",
                    "last_modified_time": "2024-12-31T13:14:20.652181Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758518.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153621/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:20.628104Z",
            "last_modified_time": "2025-02-26T12:14:57.215892Z",
            "date_published": null,
            "start_time": "2025-04-24T07:00:00Z",
            "end_time": "2025-04-24T09: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": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/904950FACAC1A6BEEE24820B2035A1C8/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/904950FACAC1A6BEEE24820B2035A1C8/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/904950FACAC1A6BEEE24820B2035A1C8/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30. <br>och på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM and on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65352/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65351",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                }
            ],
            "registration": null,
            "super_event": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-121/?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": 153610,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-31T13:14:17.134583Z",
                    "last_modified_time": "2024-12-31T13:14:17.134599Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758498.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153610/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-31T13:14:17.111219Z",
            "last_modified_time": "2025-02-26T12:14:56.811836Z",
            "date_published": null,
            "start_time": "2025-04-22T10:30:00Z",
            "end_time": "2025-04-22T12:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": null,
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.",
                "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.",
                "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/50FAD5F633EDF7CB819DA367500B776A/Taidetta_taaperoille",
                "sv": "http://www.caisa.fi/sv/evenemang/event/50FAD5F633EDF7CB819DA367500B776A/Oppen_konst_studio_for_smabarn",
                "en": "http://www.caisa.fi/en/events/event/50FAD5F633EDF7CB819DA367500B776A/Open_Art_studio_for_Toddlers_and_their_Parents"
            },
            "name": {
                "fi": "Taidetta taaperoille – Avoin taidetyöpaja 1,5–3-vuotiaille lapsille ja heidän aikuisilleen",
                "sv": "Öppen konst studio för småbarn",
                "en": "Open Art studio for Toddlers and their Parents"
            },
            "description": {
                "fi": "<p>Taidetta taaperoille- työpaja tutustuttaa lapset kuvataiteiden maailmaan maalaamisen, värien ja muovailun kautta.</p><p>Työpajoja järjestetään tiistaisin 14.1.–27.5 klo 13.30–15.30 ja torstaisin 16.1.–22.5. klo 10–12.</p><p>Lapset tutustuvat yhdessä aikuisensa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin. Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin. <br> <br>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja aikuisen kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. <br> <br>Työpajan ohjaajana toimii taidekasvattaja Eungyung Kim.</p><p><b>Osallistuminen</b> <br>Taidetta taaperoille- työpaja innostaa ja opastaa aikuisia ja lapsia tekemään ja kokemaan taidetta yhdessä. Työpajaan voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. <br> <br>Työpajaohjaaja: Eungyung Kim <br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa <br>Kieli: suomi ja englanti<br>Vapaa pääsy</p>",
                "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>Workshopen är på tisdagar 14 januari till 27 maj. från 13.30 till 15.30.</p><p>Workshopen är på torsdagar 16 januari till 22 maj. från 10.00 till 12.00.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Inge förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>",
                "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>The workshop will be held on Tuesdays from 14 January to 27 May from 1:30 PM to 3:30 PM.</p><p>The workshop will be held on Thursdays from 16 January to 22 May from 10 AM to 12 PM.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a change to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>"
            },
            "location_extra_info": null,
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65351/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}