Event List
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
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
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
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
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
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
event/?start=now&end=today
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
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
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
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
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
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
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
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
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
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
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
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
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
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
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
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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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
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
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
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
event/?suitable_for=12,14
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
event/?publisher_ancestor=ahjo:00001
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
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
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
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
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
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
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
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
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
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
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
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
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
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
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
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
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
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
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
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
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
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
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
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=8
{ "meta": { "count": 27762, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=9", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=7" }, "data": [ { "id": "kulke:67737", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494500, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-15T13:13:49.469269Z", "last_modified_time": "2026-01-15T13:13:49.469285Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782668.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494500/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T13:13:49.356370Z", "last_modified_time": "2026-03-20T01:13:55.222051Z", "date_published": null, "start_time": "2026-04-08T14:00:00Z", "end_time": "2026-04-08T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ekologinen eväspakkaus: Mehiläisvahakääre – Taidetauko-työpajat", "sv": "Ekologisk matsäck: Bivaxduk – Konstpaus-verkstäder", "en": "Eco-friendly food wrap: Beeswax wrap – Taidetauko art workshops" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Nyt valmistaudutaan piknik-kauteen! Muovikelmua ekologisempi vaihtoehto on olemassa: mehiläisvahakääre.</p><p>Se kestää useita käyttöjä, on helposti puhdistettava ja sopii ruoan pakkaamiseen. Pajan aikana jokainen saa luoda yhden mehiläisvahakääreen.</p><p>Alle 10-vuotiaat työskentelevät yhdessä aikuisen kanssa. Huom! Mukaan mahtuu max. 40 osallistujaa, kerrallaan noin 20 henkilöä.</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Stoan ravintolassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Stoan Ravintola<br>Kesto: 120 min per kerta<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!</p><p>I Konstpaus-verkstäderna berikas din vardag med stressfria hantverkstekniker som är lätta att lära sig. Kvällste och saft serveras för deltagarna i Stoas restaurang.</p><p>ons 8.4 Ekologisk matsäck: Bivaxduk<br>Vi förbereder oss för picknicksäsongen! Det finns ett mera ekologiskt alternativ än plastfolie, nämligen en bivaxduk. Den kan användas flera gånger, är lätt att rengöra och passar för att förpacka mat. I verkstaden får alla göra en egen bivaxduk.</p><p>Barn under 10 år arbetar tillsammans med en vuxen. Obs! Högst 40 deltagare, ca 20 i taget, får plats.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Stoas restaurang<br>Längd: 120 min. per session<br>Verkstäderna leds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan krävs. Stoa bjuder deltagarna på kvällste.</p>", "en": "<p>Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!</p><p>Taidetauko workshops enrich your everyday life with easy-to-learn, unhurried crafts. Participants will be served evening tea or juice at Stoa’s restaurant.</p><p>Wed 8 April Eco-friendly food wrap: Beeswax wrap<br>Let's get ready for picnic season! There is a more ecological alternative to plastic wrap: beeswax wrap. It can be used several times and it is easy to clean and suitable for food packaging. During the workshop, everyone will get to create one beeswax wrapper.</p><p>Children under the age of 10 must work together with an adult. Please note! There is room for around 40 participants, 20 participants at a time.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Stoa restaurant<br>Duration: 120 min per session<br>Instructions in Finnish, French and English <br>Free entry. No advance registration required. Stoa will provide evening tea for participants.</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/420EF29D63AFF289FCFCB8DD006D6BB6/Ekologinen_evaspakkaus_Mehilaisvahakaare", "sv": "http://www.stoa.fi/sv/evenemang/event/420EF29D63AFF289FCFCB8DD006D6BB6/Ekologisk_matsack_Bivaxduk", "en": "http://www.stoa.fi/en/events/event/420EF29D63AFF289FCFCB8DD006D6BB6/Eco-friendly_food_wrap_Beeswax_wrap" }, "location_extra_info": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!", "sv": "Ta en kreativ paus i vardagen och sätt dig ner en stund i Stoas restaurang för lite kvällste!", "en": "Take a creative break from everyday life and sit down in Stoa’s restaurant for some evening tea!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67737/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67299", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494781, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-06T09:13:13.621620Z", "last_modified_time": "2026-02-06T09:13:13.621633Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780861.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494781/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-06T09:13:13.510786Z", "last_modified_time": "2026-03-20T01:13:55.096100Z", "date_published": null, "start_time": "2026-04-08T14:00:00Z", "end_time": "2026-04-08T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kantsun kahvit", "sv": "Kantsun kahvit", "en": "Kantsun kahvit" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa.</p><p>Tule tapaamaan ihmisiä ja keskustelemaan ajankohtaisista asioista kahvittelun lomassa. Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Lapset ovat tervetulleita vanhempiensa kanssa.</p><p>Kantsun kahvien sisällöt suunnitellaan yhdessä asukasaktiivien kanssa. Osallistu keskusteluun Kantsun kahvit -Facebook-ryhmässä: https://www.facebook.com/groups/875036451503848</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.</p><p>Paikka: Kanneltalon kahvilan stage</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/3051D3ED0CB20A11937C7639EAAD84EF/Kantsun_kahvit" }, "location_extra_info": null, "short_description": { "fi": "Kantsun kahvit on avoin kohtaamispaikka, johon järjestetään yhdessä vaihtuvaa ohjelmaa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68249", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1643631, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T14:14:01.576540Z", "last_modified_time": "2026-03-16T14:14:01.576555Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786461.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643631/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T14:14:01.482548Z", "last_modified_time": "2026-03-20T01:13:54.860375Z", "date_published": null, "start_time": "2026-04-08T08:00:00Z", "end_time": "2026-04-08T09: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, "name": { "fi": "Made in Vuosaari – Työpajat koululaisille", "sv": "Made in Vuosaari – Työpajat koululaisille", "en": "Made in Vuosaari – Työpajat koululaisille" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita? <br>Työpajat on suunnattu 3–6-luokkalaisille.</p><p>Koululaisia pyydetään tuomaan työpajaan kotoa tarpeettomia tavaroita. Tavara voi olla mikä tahansa pienehkö esine, esimerkiksi virheostos, lelu tai astia. Tavaroista rakennetaan veistoksia.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Lue lisää: https://anneroininen.com/</p><p>Ilmoita luokkasi työpajaan osoitteessa kultus.hel.fi!</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_", "en": "http://www.vuotalo.fi/en/events/event/7D36F842AD3635E00D11D733FB497349/Made_in_Vuosaari_" }, "location_extra_info": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68249/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67891", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494305, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:55.348092Z", "last_modified_time": "2025-12-23T09:13:55.348108Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781416.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494305/?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-12-23T09:13:55.246920Z", "last_modified_time": "2026-03-20T01:13:54.758157Z", "date_published": null, "start_time": "2026-04-08T07: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, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen. Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/EFC36E08E23D892094BE8CCC5A55D80B/Ko-kollektiivi_Tanssikorttipakka" }, "location_extra_info": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67891/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67875", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494510, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T13:13:43.090068Z", "last_modified_time": "2026-01-16T13:13:43.090085Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494510/?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": "2026-01-16T13:13:42.934000Z", "last_modified_time": "2026-03-20T01:13:54.572584Z", "date_published": null, "start_time": "2026-04-08T07:00:00Z", "end_time": "2026-04-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, "name": { "fi": "Taideleikit – leikin oma tila – 0–3-v lapset aikuisen kanssa", "sv": "Konstlekar – en egen plats för lek – Barn 0–3 år tillsammans med en vuxen", "en": "Art games – a space for play – Children aged 0–3 with an adult" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!</p><p>Taideleikeissä rikastutetaan leikkiä ja tarjoillaan leikki-ideoita kotiin viemisiksi. Leikille luodaan sysäys joka voi jatkua missä tahansa. Eri aistit huomioivat kokonaisuudet, leikittelevät taiteella ja asettavat asioiden mittasuhteita uudelleen.</p><p>Tilat jakautuvat kahteen osaan. Pesässä rauhoitutaan ja laskeudutaan maadoittavaan tunnelmaan. Aktivoivissa leikeissä leikitään vaihtuvien teemojen maailmoissa.</p><p>Molemmat tilat tarjoavat mahdollisuuden tukea lapsen ja aikuisen vuorovaikutusta sekä tutustumista toisiin aikuisiin ja lapsiin. Aktiivisessa tilassa toimii lisäksi leikittäjä.</p><p>Taideleikit on suunnattu 0-3-vuotiaille lapsille sekä heidän omalle vanhemmalle tai aikuiselle.</p><p>Ohjaus: Noora Puranen <br>Aika: 10–12 (nonstop) <br>Ikäryhmä: 0-3v<br>Kieli: suomi <br>Maksuton</p><p>Taideleikit Annantalossa<br>4.2. klo 10–12<br>18.2. klo 10–12<br>4.3. klo 10–12<br>25.3. klo 10–12<br>8.4. klo 10–12<br>22.4. klo 10–12</p>", "sv": "<p>I fantasifullt utformade lekmiljöer får leken fritt spelrum!</p><p>Konstlekarna gör leken rikare och ger idéer som deltagarna kan ta med sig hem. Leken får en skjuts framåt som kan fortsätta var som helst. Sinnena uppfattar helheter, leker med konsten och omdefinierar proportionerna för saker och ting.</p><p>Lokalerna är indelade i två delar. Boet är en plats där man kan lugna ner sig och komma till ro i en jordande atmosfär. I de aktiverande lekarna leker deltagarna i världar med olika teman. Båda utrymmena erbjuder möjligheter att stödja samspelet mellan barnet och den vuxna samt lära känna andra barn och vuxna. I det aktiva utrymmet finns det också en lekledare.</p><p>Konstlekarna riktar sig till barn i åldern 0–3 år och deras egen förälder eller en annan vuxen. <br>Regi: Noora Puranen <br>Tid: kl. 10–12 (non-stop) <br>Åldersgrupp: 0–3 år<br>Språk: finska</p><p>Avgiftsfritt</p>", "en": "<p>In these imaginatively modified play environments, play gets to run wild!</p><p>These art games enrich play and provide play ideas to take home. Play will get boosted with a drive that can continue anywhere. The different senses will perceive wholes, play with art and redefine the proportions of things.</p><p>The facilities will be divided into two spaces: one will be a nest, a place for calming down and settling into a grounding atmosphere, the other will host activating games that involve playing in worlds with changing themes. Both spaces will provide an opportunity to support child-adult interaction and to meet other adults and children. The active space will also feature a play instructor.</p><p>The art games are aimed at children aged 0–3 and their own parent or adult.</p><p>Instruction: Noora Puranen <br>Time: 10.00–12.00 (non-stop) <br>Age group: 0–3<br>Language: Finnish <br>Free of charge</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84460F68B9C6061812325F93A9D5CA6B/Taideleikit_leikin_oma_tila", "sv": "http://www.annantalo.fi/sv/evenemang/event/84460F68B9C6061812325F93A9D5CA6B/Konstlekar_en_egen_plats_for_lek", "en": "http://www.annantalo.fi/en/events/event/84460F68B9C6061812325F93A9D5CA6B/Art_games_a_space_for_play" }, "location_extra_info": null, "short_description": { "fi": "Mielikuvituksella muokatuissa leikkiympäristöissä leikki pääsee valloilleen!", "sv": "I fantasifullt utformade lekmiljöer får leken fritt spelrum!", "en": "In these imaginatively modified play environments, play gets to run wild!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67875/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67983", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-16T14:13:36.340664Z", "last_modified_time": "2026-01-16T14:13:36.340693Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781415.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494522/?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": "2026-01-16T14:13:36.249488Z", "last_modified_time": "2026-03-20T01:13:54.445149Z", "date_published": null, "start_time": "2026-04-08T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen. Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/0475A99ED8C7066395D7C866239921CA/Ko-kollektiivi_Tanssikorttipakka" }, "location_extra_info": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67983/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68248", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1643630, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T14:14:01.043801Z", "last_modified_time": "2026-03-16T14:14:01.043822Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786460.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1643630/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-16T14:14:00.907307Z", "last_modified_time": "2026-03-20T01:13:54.337740Z", "date_published": null, "start_time": "2026-04-08T06:00:00Z", "end_time": "2026-04-08T07: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, "name": { "fi": "Made in Vuosaari – Työpajat koululaisille", "sv": "Made in Vuosaari – Työpajat koululaisille", "en": "Made in Vuosaari – Työpajat koululaisille" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä.</p><p>Projektin tarkoitus on kurottaa kohti alueen asukkaita ja saada tutkimaan omia kodin tavaroita. Mistä ne ovat lähtöisin? Onko niillä käyttöä? Minne ne tulevat päätymään, kun niitä ei enää tarvita?</p><p>Työpajat on suunnattu 3–6-luokkalaisille.</p><p>Koululaisia pyydetään tuomaan työpajaan kotoa tarpeettomia tavaroita. Tavara voi olla mikä tahansa pienehkö esine, esimerkiksi virheostos, lelu tai astia. Tavaroista rakennetaan veistoksia.</p><p>Anne Roininen on kuvanveistäjä, joka työskentelee usein paikkasidonnaisesti ja prosessipohjaisesti. Kohtaamiset ihmisten kanssa ovat tärkeä osa Roinisen työskentelyä, ja teosten taustalla on usein poliittinenkin lataus.</p><p>Lue lisää: https://anneroininen.com/</p><p>Ilmoita luokkasi työpajaan osoitteessa kultus.hel.fi!</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari", "en": "http://www.vuotalo.fi/en/events/event/6830D1CE2C88B318BE2DD2D1DBFEBB24/Made_in_Vuosaari" }, "location_extra_info": null, "short_description": { "fi": "Made in Vuosaari on kuvataiteilija Anne Roinisen moniosainen puheenvuoro tavarasta ja sen alkuperästä." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68248/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68189", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1585993, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-10T08:12:57.076294Z", "last_modified_time": "2026-03-10T08:12:57.076316Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782246.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1585993/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-10T08:12:56.878532Z", "last_modified_time": "2026-03-20T01:13:54.109397Z", "date_published": null, "start_time": "2026-04-07T12:00:00Z", "end_time": "2026-04-07T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "sv": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa", "en": "Roskasta kaunista -työpajat – Roskaa!-näyttelyn oheisohjelmaa" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tule mukaan tekemään roskasta kaunista! Pääset harjoittamaan kädentaitojasi ja kokeilemaan, miten erilaiset materiaalit taipuvat uuteen käyttöön.</p><p>Huhtikuussa järjestetään kolme työpajaa Roskaa!-näyttelyn keskellä, Vuotalon aulassa. Saat kaikki tarvittavat materiaalit paikan päältä. Työpajat eivät maksa mitään. Työpajat sopivat kaiken ikäisille, mutta alle kouluikäiset voivat osallistua vain oman aikuisen seurassa.</p><p>Roskasta kaunista -pajat toteutetaan yhteistyössä Työväenopiston kanssa. Työpajoja ohjaa Kristiina Tergujeff. Ohjauskieli on suomi.</p><p>Ohjelma:</p><p>ti 7.4. klo 15.00-18.15<br>Kukkia karkkipaperista</p><p>ti 14.4. klo 15.00-18.15<br>Napit kiertoon</p><p>ti 21.4. klo 15.00-18.15<br>Kierrätä pitsejä</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat", "en": "http://www.vuotalo.fi/en/events/event/A455DB910FD9E5B42E4DFE6854F54E05/Roskasta_kaunista_-tyopajat" }, "location_extra_info": null, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68189/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67890", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494304, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:51.551249Z", "last_modified_time": "2025-12-23T09:13:51.551263Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781413.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494304/?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-12-23T09:13:51.458151Z", "last_modified_time": "2026-03-20T01:13:53.988999Z", "date_published": null, "start_time": "2026-04-07T07: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, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/7BB6EF5BB96A6FFF558817B403EE947F/Ko-kollektiivi_Tanssikorttipakka" }, "location_extra_info": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67890/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67889", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494303, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T09:13:51.205118Z", "last_modified_time": "2025-12-23T09:13:51.205133Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781412.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494303/?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-12-23T09:13:51.089331Z", "last_modified_time": "2026-03-20T01:13:53.880870Z", "date_published": null, "start_time": "2026-04-07T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ko-kollektiivi: Tanssikorttipakka", "sv": "Ko-kollektiivi: Tanssikorttipakka – Danskortlek", "en": "Ko-kollektiivi: Tanssikorttipakka" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.</p><p>Kortit sisältävät käytännönläheisiä tanssitehtäviä, jotka kannustavat lapsia tanssimiseen, taiteelliseen ilmaisuun ja kehollisuuteen.</p><p>Tanssikorttipakka-esitykset pohjaavat improvisaatioon, mielikuvituksen vapauttamiseen ja vahvaan vuorovaikutukseen. Esityksissä lapset osallistuvat esitykseen ammattitanssijan ja muusikon kanssa ja saavat itse vaikuttaa esityksen kulkuun.</p><p>Mukana: <br>Amandine Doat: tanssi<br>Riku Kantola: Musiikki</p><p>Tanssikorttipakka on tarkoitettu päiväkotiryhmille (4+) max. 20 lasta ja heidän ohjaajansa.</p><p>Ilmoittautuminen kultus.hel.fi</p>", "sv": "<p>Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.</p><p>Korten innehåller praktiska dansövningar som uppmuntrar barn till dans, konstnärligt uttryck och kroppslighet. Föreställningarna bygger på improvisation, frigörande av fantasin och stark interaktion. I föreställningarna deltar barnen tillsammans med en professionell dansare och en musiker samt får vara med och påverka föreställningens gång.</p><p>Medverkar:</p><p>Amandine Doat: dans<br>Riku Kantola: musik</p><p>Föreställningarna Tanssikorttipakka är avsedda för dagisgrupper (4+), högst 20 barn och deras lärare.</p><p>Anmälan: kultus.hel.fi</p>", "en": "<p>Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children.</p><p>The cards contain practical dance exercises that encourage children to engage in dance, artistic expression and bodiliness. The Tanssikorttipakka performances are based on improvisation, letting imagination run wild and strong interaction. In the performances, children can participate with a professional dancer and a musician and have a say in the course of the performance.</p><p>Team:</p><p>Amandine Doat: dance<br>Riku Kantola: music</p><p>Tanssikorttipakka is intended for daycare groups (age 4+) with max. 20 children and their instructor.</p><p>Registration: kultus.hel.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka", "sv": "http://www.annantalo.fi/sv/evenemang/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka_Danskortlek", "en": "http://www.annantalo.fi/en/events/event/287E952F42DAFB57FAA11282366545A1/Ko-kollektiivi_Tanssikorttipakka" }, "location_extra_info": null, "short_description": { "fi": "Tanssikorttipakka on osallistava tanssiesitys, joka toteutetaan tanssitehtäväkorttien avulla yhdessä lasten kanssa.", "sv": "Tanssikorttipakka är en deltagande dansföreställning, som genomförs med hjälp av dansaktivitetskort tillsammans med barn.", "en": "Tanssikorttipakka (‘Dance Card Deck’) is a participatory dance performance implemented with the help of dance exercise cards, together with children." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67242", "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:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-30T12:13:06.133817Z", "last_modified_time": "2025-12-30T12:13:06.133830Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780320.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-12-30T12:13:06.027463Z", "last_modified_time": "2026-03-20T01:13:53.481679Z", "date_published": null, "start_time": "2026-04-02", "end_time": "2026-06-13", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kalmakumpu – Kuvitusnäyttely kahvila Naperossa", "sv": "Kalmakumpu – Dödens kulle – Illustrationsutställning på kafé Napero", "en": "Kalmakumpu – Illustration exhibition at Café Napero" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.</p><p>Sarjakuvan hahmot perustuvat suurimmalta osin lukijoiden ehdotuksiin. Ensimmäiset hahmot kerättiin Annantalon sarjakuvakurssien oppilailta. Kalmakumpu ilmestyy kahdesti vuodessa. Sen ensimmäinen osa julkaistiin syksyllä 2025.<br> <br>Kalmakummun tavoitteena on syventää lasten suhdetta sarjakuvaan siinä käytetyn laajan tunnespektrin avulla. Teos pyrkii kehittämään lukijoiden empatiaa sekä vahvistamaan lapsen asemaa lukijana. Teoksessa luotetaan lapsen kykyyn käsitellä myös vakavia asioita luetun kautta. Kalmakummussa käsitellään kuoleman eri ulottuvuuksia turvallisessa ja lempeässä ympäristössä.<br> <br>Näyttely esittelee sarjakuvan hahmoja ja tunnelmia. Se juhlistaa toisen Kalmakumpu-albumin ilmestymistä.</p><p>Työskentelyä on tukenut Koneen Säätiö.</p><p><a href=\"https://www.kalmakumpu.fi/\"><b>www.kalmakumpu.fi</b></a></p><p>_</p><p>Tervetuloa näyttelyn avajaisiin ja Kalmakumpu 2:n julkkareihin Annantalon Kahvila Naperoon 2.4. klo 17-19!</p><p>Klo 18 auditoriossa Markus Koistisen Kalmakumpu-aiheinen pelikonsertti!</p>", "sv": "<p>Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.</p><p>Karaktärerna i serien är till stor del baserade på förslag från läsarna. De första figurerna samlades in från deltagarna i Annegårdens seriekurser. Kalmakumpu utkommer två gånger per år. Den första delen publicerades hösten 2025.<br> <br>Kalmakumpu syftar till att fördjupa barns relation till tecknade serier genom det breda känslospektrum som används i dem. Verket syftar till att utveckla läsarnas empati och stärka barnets roll som läsare. Verket förlitar sig på barnets förmåga att hantera allvarliga frågor genom läsning. Kalmakumpu behandlar dödens olika dimensioner i en trygg och vänlig miljö.<br> <br>Utställningen presenterar den tecknade seriens karaktärer och stämningar. Den firar utgivningen av det andra Kalmakumpu-albumet.</p><p>Arbetet har fått stöd av Konestiftelsen.</p><p>www.kalmakumpu.fi</p>", "en": "<p>Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants.</p><p>The characters of the comic are largely based on suggestions from readers. The ideas for the first characters were collected from students of Annantalo’s comic courses. Kalmakumpu is published twice a year. The first issue was published in autumn 2025.<br> <br>Kalmakumpu aims to deepen children’s relationship with comics through the broad emotional spectrum that it uses. The work aims to develop empathy among readers and strengthen the role of children as readers. It trusts that children are also able to process serious matters through what they read. Kalmakumpu deals with different dimensions of death in a safe and gentle environment.<br> <br>This exhibition presents the characters and moods of the comic. It celebrates the release of the second Kalmakumpu album.</p><p>The work has been supported by the Kone Foundation.</p><p>www.kalmakumpu.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu", "sv": "http://www.annantalo.fi/sv/evenemang/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu_Dodens_kulle", "en": "http://www.annantalo.fi/en/events/event/8603C2FEB0E380EBEBE32171FD1542AE/Kalmakumpu" }, "location_extra_info": null, "short_description": { "fi": "Kalmakumpu on Roope Erosen kokeellinen lastensarjakuva lumotusta lemmikkieläinten hautausmaasta ja sen asukkaista.", "sv": "Kalmakumpu är en experimentell tecknad serie för barn av Roope Eronen om en förtrollad djurkyrkogård och dess invånare.", "en": "Kalmakumpu is Roope Eronen’s experimental children’s comic about an enchanted pet cemetery and its inhabitants." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67242/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68260", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1663445, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T13:13:55.583058Z", "last_modified_time": "2026-03-18T13:13:55.583073Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785558.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1663445/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T13:13:55.429720Z", "last_modified_time": "2026-03-20T01:13:53.148164Z", "date_published": null, "start_time": "2026-04-01T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn", "sv": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn", "en": "Helsinki Cine Aasia x Vuotalo: Ky Nam Inn" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Ky Nam Inn, Leon Le, Vietnam Quán Kỳ Nam, 2025, 140 min, K12</p><p>Vietnam<br>Nuori lupaus Khang muuttaa Saigoniin 1980-luvun sodanjälkeisessä yhdistyneessä Vietnamissa tehtävänään kääntää uudestaan Pikku prinssi. Samassa asuintalossa asuva leski Ky Nam elättää itsensä pyörittämällä pientä ruokabisnestä, ja näiden kahden tiet risteävät muiden naapurusten silmien alla. Pidätettyjä tunteita, surua, kaipuuta ja varautuneisuutta patoava koreografia on kuin hienostunut hatunnosto Wong Kar-wain klassikolle In the Mood for Love.</p><p>Leon Le ihastutti HCA-yleisöä jo aikaisemmalla elokuvallaan Song Lang (2018) ja maalaa jälleen kankaalle tyylitellyn ajankuvan sille ominaisine sosiaalisine jännitteineen ja asetelmineen nyt 35 mm filmille kuvattuna.</p><p>Jenni Peisa & Thu Nguyen</p><p>Tekstitys: englanti.</p><p>Vapaa sisäänpääsy</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn", "en": "http://www.vuotalo.fi/en/events/event/36472C559BCB7A2D73ED2FEF3E93F59F/Helsinki_Cine_Aasia_x_Vuotalo_Ky_Nam_Inn" }, "location_extra_info": null, "short_description": { "fi": "Ky Nam Inn, Leon Le, Vietnam Quán Kỳ Nam, 2025, 140 min, K12" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68260/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68033", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494646, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T09:13:02.966594Z", "last_modified_time": "2026-01-27T09:13:02.966608Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_778318.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494646/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-27T09:13:02.819654Z", "last_modified_time": "2026-03-20T01:13:52.656388Z", "date_published": null, "start_time": "2026-04-01T13:00:00Z", "end_time": "2026-04-01T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Luova hetki - avoin taidepaja – Sikin sokin", "sv": "Kreativ stund – öppen konstworkshop – Huller om buller", "en": "Creative Moment – Open Art Workshop – Helter-skelter" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.</p><p>Työpajassa opit taittelemaan pienen kirjasen. Kirjaseen piirretään erilaisia hahmoja, joiden osat sekoittuvat, kun sivuja kääntelee.</p><p>Järjestämme eriteemaisia taidepajoja Vuotalon aulassa. Taidepajat sopivat lapsille ja aikuisille. Työpajoja ohjaa Chloé Mahy-Hulkko.</p><p>Kevään ohjelma<br>ke 4.2. klo 16–18 Paperipitsiä<br>ke 4.3. klo 16–18 Muovipussit uuteen käyttöön!<br>ke 1.4. klo 16–18 Sikin sokin<br>ke 6.5. klo 16–18 Kangaskassille uusi ilme</p><p>Kieli: suomi, englanti, ranska<br>Työpajoihin on vapaa pääsy!</p>", "sv": "<p>Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.</p><p>I verkstaden får du lära dig att vika ett litet häfte. I häftet får du rita olika figurer, vars delar blandas när man vänder blad.</p><p>Vårens program<br>ons 4.2 kl. 16–18 Pappersspets<br>ons 4.3 kl. 16–18 Återanvänd plastpåsar!<br>ons 1.4. kl. 16–18 Huller om buller<br>ons 6.5 kl. 16–18 Gör om en tygpåse</p><p>Vi ordnar konstverkstäder med olika teman i Nordhusets aula. Konstverkstäderna är lämpliga för både barn och vuxna.</p><p>Chloé Mahy-Hulkko leder verkstäderna</p><p>Språk: finska, engelska, franska</p><p>Konstverkstäderna är kostnadsfria!</p>", "en": "<p>Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship.</p><p>At this workshop, you will learn how to make a small booklet. We will draw different characters onto the booklet, and their parts will get mixed when we turn the pages.</p><p>Spring programme<br>Wed 4 February 16.00–18.00: Paper lace<br>Wed 4 March 16.00–18.00: New use for plastic bags!<br>Wed 1 April 16.00–18.00: Helter-skelter<br>Wed 6 May 16.00–18.00: New look for a fabric bag</p><p>We will hold art workshops with varying themes in the Vuotalo lobby. The art workshops are suitable for children and adults alike.</p><p>The workshops are led by Chloé Mahy-Hulkko.<br>Language: Finnish, English, French</p><p>The art workshops are free of charge!</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7323AEE73B1D46EFED8A0BB19C6A5BAF/Luova_hetki_-_avoin_taidepaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7323AEE73B1D46EFED8A0BB19C6A5BAF/Kreativ_stund_oppen_konstworkshop", "en": "http://www.vuotalo.fi/en/events/event/7323AEE73B1D46EFED8A0BB19C6A5BAF/Creative_Moment_Open_Art_Workshop" }, "location_extra_info": null, "short_description": { "fi": "Ollaan yhdessä luovia! Tule tekemään kauniita ja tarpeellisia koristeita sekä kehittämään kädentaitoja.", "sv": "Vi är kreativa tillsammans! Kom och laga vackra och användbara dekorationer och utveckla dina kunskaper i konsthantverk.", "en": "Let’s get creative together! Come and make beautiful, necessary decorations and develop your craftsmanship." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68033/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68255", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1661361, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-18T08:13:53.131723Z", "last_modified_time": "2026-03-18T08:13:53.131744Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786507.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1661361/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-18T08:13:53.009510Z", "last_modified_time": "2026-03-20T01:13:52.422497Z", "date_published": null, "start_time": "2026-04-01", "end_time": "2026-04-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Haagan Taideseura: Terhi Sallinen - Tutkielmia ajatusten maailmoista", "sv": "Haagan Taideseura: Terhi Sallinen - Tutkielmia ajatusten maailmoista", "en": "Haagan Taideseura: Terhi Sallinen - Tutkielmia ajatusten maailmoista" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tutkielmat taideteoksista ovat hauskaa salapoliisityötä, jossa tutkitaan taiteilijan tekniikoita, ratkaisuja teoksen rakenteesta, sommittelusta ja väreistä ja näiden yhteyttä teoksen aiheen symboliikkaan, allegoriaan, mytologiaan tai uskonnollisen aiheen kerrontaan. Niiden kautta piirtyy myös syvempi ymmärrys taiteilijasta.</p><p>Sain opiskella vuoden ajan Venetsiassa perinteikkäässä taideakatemiassa osana yliopistotutkintoani.</p><p>Tutkin piirtäen, maalaten ja kuvaten kaupungin taideaarteita, ja kiinnostus kaupunkiin ja venetsialaisten taiteilijoiden työhön jatkuu ja näkyy työssäni yhä.</p><p>Tutkimuksen kautta löydän yhtymäkohtia omaan taiteeseeni, jolla rakennan siltaa ajan yli peilatessani teosten maailmaa tämän ajan maailman tapahtumiin ja sen kuvaamiseen.</p><p>Tämän näyttelyn tutkielmilla haluan tuoda näkyväksi tutkimuksen visuaalisen vaiheen, joka jää usein näkymättömiin muistiinpanojen ja luonnoskirjojen uumeniin.</p><p>Ne on toteutettu sekatekniikoilla, yhdistäen mm. öljymaalausta, pastelliliitua ja akvarellia. Tutkielmia tehdessä toisaalta pitäydyn alkuperäisessä aiheessa, mutta annan jo omien ideoideni kerrostua siihen.</p><p>Olen helsinkiläinen taiteilija, töitäni on ollut esillä Haagan Taideseuran näyttelyiden lisäksi muualla Suomessa ja mm. Japanissa ja Walesissa.</p><p>Lisää töistäni: https://www.terhisallinen.fi/</p><p>Haagan Taideseura on Helsingissä vuodesta 1966 toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura.</p><p>Lisätiedot Haagan Taideseura ry</p><p>Kahvilan vitriinit</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/B0B2B0C58BBFBA35343622BF0412E132/Haagan_Taideseura_Terhi_Sallinen_-_Tutkielmia_ajatusten_maailmoista_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/B0B2B0C58BBFBA35343622BF0412E132/Haagan_Taideseura_Terhi_Sallinen_-_Tutkielmia_ajatusten_maailmoista_", "en": "http://www.kanneltalo.fi/en/events/event/B0B2B0C58BBFBA35343622BF0412E132/Haagan_Taideseura_Terhi_Sallinen_-_Tutkielmia_ajatusten_maailmoista_" }, "location_extra_info": null, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68255/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68019", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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-793/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494625, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-26T10:12:55.037369Z", "last_modified_time": "2026-01-26T10:12:55.037381Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777682.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494625/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-26T10:12:54.952720Z", "last_modified_time": "2026-03-20T01:13:51.194217Z", "date_published": null, "start_time": "2026-03-30T13:00:00Z", "end_time": "2026-03-30T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nuorten suunnittelemat iltapäivät – Operaatio Pulssi", "sv": "Eftermiddagar planerade av unga – Operaatio Pulssi", "en": "Afternoons planned by young people – Operation Pulse!" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.</p><p>Vuosaarelaiset nuoret ovat ideoineet tekemistä koulu- tai työpäivän päätteeksi. Kaikki ovat tervetulleita, ikään katsomatta. Iltapäivät ovat ilmaisia ja tarvittavat materiaalit saa paikan päältä. Pistäydy tai viihdy vaikka koko aika!</p><p>Työpajoja ohjaavat nuorisotyöntekijä sekä nuoret itse. Tarkemmasta ohjelmasta kerrotaan Vuotalon aulassa ja somekanavissa viimeistään viikkoa ennen.</p><p>Vapaa pääsy</p><p>Huom! Ei järjestetä 6.4.2026.</p>", "sv": "<p>På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.</p><p>Ungdomar i Nordsjö har kommit med idéer om vad man kan göra när skol- eller arbetsdagen är slut. Alla är välkomna, oavsett ålder. Eftermiddagarna är kostnadsfria och det nödvändiga materialet finns tillgängligt på plats. Titta in eller stanna hela tiden!</p><p>Workshopparna leds av en ungdomsledare och ungdomarna själva. Det detaljerade programmet publiceras i Nordhusets aula och på sociala medier minst en vecka innan.</p>", "en": "<p>On Monday afternoons, we will be doing arts and crafts and spending fun time together.</p><p>Young people in Vuosaari have come up with ideas for things to do at the end of the school or workday. All are welcome, regardless of age. The afternoons are free of charge and the materials needed are available on-site. Drop by for a moment or stay the whole time!</p><p>The workshops are run by a youth worker and the young people themselves. The detailed programme will be posted in the Vuotalo lobby and on social media at least one week in advance.</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7124989700A7DB6DFC9085EE4D6E2AF3/Nuorten_suunnittelemat_iltapaivat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7124989700A7DB6DFC9085EE4D6E2AF3/Eftermiddagar_planerade_av_unga", "en": "http://www.vuotalo.fi/en/events/event/7124989700A7DB6DFC9085EE4D6E2AF3/Afternoons_planned_by_young_people" }, "location_extra_info": null, "short_description": { "fi": "Maanantai-iltapäivisin on luvassa askartelua, kädentaitoja ja mukavaa yhdessäoloa.", "sv": "På måndagseftermiddagarna utlovas pyssel, hantverk och trevlig samvaro.", "en": "On Monday afternoons, we will be doing arts and crafts and spending fun time together." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68019/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67243", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494295, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-23T07:13:48.157866Z", "last_modified_time": "2025-12-23T07:13:48.157881Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780384.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494295/?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-12-23T07:13:48.009840Z", "last_modified_time": "2026-03-20T01:13:50.993202Z", "date_published": null, "start_time": "2026-03-29T10:00:00Z", "end_time": "2026-03-29T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Aistit avoinna 2026 – Autisminkirjon perheiden oma yksityinen tapahtuma", "sv": "Aistit avoinna 2026 – Med öppna sinnen 2026 – Ett privat evenemang för familjer med barn med autismspektrumtillstånd", "en": "Senses Open 2026 – A private event for families with autism" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.</p><p>Päivän ohjelma on suunniteltu autismikirjon näkökulmasta autismiystävälliseksi. Jokaisella lapsella tulee olla mukana oma aikuinen. Tapahtumaan ei ole ala- tai yläikärajaa. <br>Tapahtuma on maksuton.</p><p>Klikkaa tästä ja ilmoittaudu mukaan: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Ilmoittaudu mukaan!</b></a></p><p>Lähetämme ennen tapahtumaa sähköpostitse saapumisohjeet Annantalolle. <br>Paikalle saapuessa Autismisäätiön oppaat ovat sinua vastassa Annantalon ala-aulassa. <br>Tapahtumassa on rauhallinen huone, jossa voit rauhoittua ja levähtää.</p><p>Annantalon Kahvila Napero on auki koko tapahtuman ajan. Voit halutessasi ostaa aistiystävällistä lounasta, kahvia sekä suolaisia ja makeita herkkuja.</p><p>Tapahtuman kieli on suomi. Myös muunkieliset osallistujat ovat lämpimästi tervetulleita.</p><p>Tapahtuman järjestävät yhteistyössä Lasten ja nuorten taidekeskus Annantalo, Autismiliitto, Autismisäätiö sekä Autismiyhdistys PAUT ry.</p><p>Tutustu ohjelmaan! <br> <br><b>Esitykset: </b></p><p><b>Musiikkiteatteriesitys: Hinni–Hiiri </b><br>klo 13.30 ja 15.00 <br>Tule laulamaan ja tutustumaan erilaisiin soittimiin!<br>Muskariope Tuuli Paasolainen tuo tapahtumaan interaktiivisen ja innostavan musiikkiteatteriesityksen, joka ilostuttaa kaiken ikäisiä. Vähäsanainen esitys sopii kaikille, kielestä tai erityistarpeista riippumatta. <br>Osallistumisliput infosta tapahtuman aikana.</p><p><b>Esiintymistuokio: Lavalla Mauno </b><br>klo 14.15 <br>Kirjolla–sarjasta tuttu 18-vuotias Mauno tuo lavalle musiikkia ja merkityksiä. Esiintymistuokiossa kuullaan hänen omia kappaleitaan sekä cover-biisejä. Musiikin lomassa Mauno jakaa ajatuksiaan neuroepätyypillisyydestä – rehellisesti, rohkeasti ja omasta näkökulmastaan. <br>Osallistumisliput infosta tapahtuman aikana. <br> <br><b>Työpajat: </b><br>klo 13-16. Työpajoissa voit piipahtaa tai viipyä pidempään.</p><p><b>Varjoteatteria -työpaja </b><br>Tilassa on varjoteatterikangas ja värivalot. Liiku ja tutki, millaisia varjoja sinusta muodostuu. Muuttuvat värit ja rauhallinen musiikki luovat tunnelmaa.Ohjaajina taidekasvattajat Karoliina Helminen ja Sari Tupamäki.</p><p><b>Aistipolku: Koe aisteilla </b><br>Aistipolun pisteellä voi pysähtyä kokemaan ja tutkimaan aisteja eri tavoin. Tarjolla on aisteihin liittyviä kokemuksia, joita voi kokeilla ja tunnustella omaan tahtiin. Osallistu juuri sillä tavalla kuin itselle tuntuu sopivalta. Aistipolun toteuttaa Autismiyhdistys PAUT ry.</p><p><b>Sirkustyöpaja </b><br>Tule testaamaan vanteen pyörittämistä, jonglööraamaan erilaisilla välineillä, tasapainottelemaan tasapainolaudalla ja pyörittelemään voimistelunauhoja. Sirkuspajaa ohjaavat Sirkus Magentan sosiaalisen sirkuksen ohjaajat.</p><p><b>Kuvantekijän ateljee </b><br>Tervetuloa tutustumaan Jenni Horton taidenäyttelyyn! Inspiroidutaan Jennin teoksista ja kokeillaan minkälaisia kuvia saamme aikaiseksi, kun käytössämme ovat liidut, sitruuna ja mustikka. Ohjaajina taidekasvattajat Anne Rossi-Horto ja Santtu Koivu.</p><p><b>Pop-up-kirjasto </b><br>Helsingin kaupunginkirjaston pisteellä voi lukea ja lainata autismiin ja neuromoninaisuuteen liittyviä kirjoja kaikenikäisille. Paikalla on rauhallisia lukumajoja, joissa voi pysähtyä lukemaan. Pääset myös itse rakentamaan majan.</p><p><b>Toiveiden tapahtuma </b><br>Työpajassa jutellaan haaveista ja toiveista, ja tutustutaan toisiin. Toteutamme yhteisen Toiveiden tapahtuma -kollaasityön: piirrä, kirjoita, leikkaa, liimaa tai vain juttele. Kollaasityö on osa yhteisöpedagogiopiskelija Mona Kuusiston opinnäytetyötä.</p><p><b>Pinssipiste </b><br>Pinssipisteellä voi suunnitella ja tehdä itselleen pinssin. Pisteellä voi piirtää, kirjoittaa tai toteuttaa oman idean ja valmistaa siitä pinssin omaan tahtiin. Pinssipisteen toteuttaa Autismiyhdistys PAUT ry.</p><p>Tapahtumassa on mukana Autismiliiton edustaja – voit poiketa kysymään asiantuntijaneuvoja matalalla kynnyksellä.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Med öppna sinnen eller Aistit avoinna är ett privat evenemang för familjer med barn med autismspektrumtillstånd vid en tidpunkt då det inte finns någon annan verksamhet på Annegården.</p><p>Programmet för dagen är utformat autismvänligt. Varje barn bör ha en ledsagare eller en närstående med sig. Det finns ingen nedre eller övre åldersgräns för evenemanget. Evenemanget är avgiftsfritt.</p><p>Klicka här för att anmäla dig: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Anmäl dig nu!</b></a></p><p>Vi skickar anvisningar för ankomst till Annegården per e-post före evenemanget. <br>Vid ankomsten möts du av guider från Autismstiftelsen i Annegårdens nedre foajé. <br>Under evenemanget finns ett lugnt rum där du kan varva ner och vila en stund.</p><p>Annegårdens egna ljuvliga Café Napero är öppet under hela evenemanget. Du kan köpa sinnesvänlig och näringsrik lunch, kaffe samt salta och söta godsaker om du vill.</p><p>OBS! Evenemanget går på finska. Deltagare med annat modersmål är också varmt välkomna.</p><p>Evenemanget ordnas i samarbete mellan Annegårdens konstcentrum för barn och unga, AutismFinland, Autismisäätiö och Autismiyhdistys PAUT ry. <br> <br>Program för dagen: <br> <br><b>Föreställningar: </b></p><p><b>Musikteaterföreställning – Hinni–Musen</b> <br>kl. 13.30 och 15.00 <br>Sjung och upptäck olika musikinstrument! Musikpedagogen Tuuli Paasolainen bjuder på en interaktiv och inspirerande föreställning som gläder alla åldrar. Föreställningen är lågmäld och passar alla, oavsett språk eller särskilda behov. <br>Biljetter för deltagande finns vid informationsdisken under evenemanget.</p><p><b>Scenframträdande – Mauno på scenen </b><br>kl. 14.15 <br>Mauno, 18 år och känd från serien Kirjolla, tar med musik och mening till scenen. Under framträdandet får du höra hans egna låtar samt covers. Mellan musiken delar Mauno sina tankar om neurodiversitet – ärligt, modigt och ur sitt eget perspektiv. <br>Biljetter för deltagande finns vid informationsdisken under evenemanget.</p><p><b>Verkstäder: </b><br>kl. 13–16 <br>Du kan delta en stund eller stanna längre i verkstäderna.</p><p><b>Skuggteater </b><br>I rummet finns en skuggteaterskärm och färgade ljus. Rör dig och utforska vilka skuggor du kan skapa. Föränderliga färger och lugn musik skapar en mysig atmosfär. Välkommen att leka med ljus och skugga! Ledare: konstpedagogerna Karoliina Helminen och Sari Tupamäki.</p><p><b>Sensorisk stig: Upplev med sinnena</b> <br>På den sensoriska stigen kan du stanna upp och uppleva samt utforska sinnena på olika sätt. Här erbjuds sensoriska upplevelser som du kan prova och känna i din egen takt. Du deltar på det sätt som känns bäst för dig. Den sensoriska stigen arrangeras av Autismförbundet PAUT ry.</p><p><b>Cirkusverkstad </b><br>I verkstaden du kan testa att snurra med ringar, jonglera med olika redskap, balansera på balansbräda och snurra gymnastikband. Verkstaden leds av instruktörer från Circus Magentas sociala cirkus.</p><p><b>Bildskaparnas ateljé på Annegården </b><br>Välkommen att utforska Jenni Hortons konstutställning! Låt dig inspireras av Jennis verk och prova att skapa egna bilder med kritor, citron och blåbär. Ledare: konstpedagogerna Anne Rossi-Horto och Santtu Koivu.</p><p><b>Pop-up-bibliotek</b><br>På Helsingfors stadsbiblioteks pop-up-bibliotek kan du läsa och låna böcker om autism och neurodiversitet för alla åldrar. Det finns lugna lästält där du kan läsa i egen takt.</p><p><b>Önskemål och drömmar </b><br>Vi skapar tillsammans ett gemensamt Önskans evenemang-collage. Du kan delta på det sätt du vill: rita, skriva, klippa, klistra eller bara prata. Collaget är en del av studeranden i samhällspedagogi Mona Kuusistos examensarbete.</p><p><b>Knappstation </b><br>På knappstationen kan du designa och göra din egen knapp. Du kan rita, skriva eller förverkliga din idé och skapa knappen lugnt i egen takt. Stationen arrangeras av Autismförbundet PAUT ry.</p><p>En representant från Autism Finland rf. finns också på plats – du kan stanna till för att prata och få expertråd på ett lågt tröskelnivå.</p><p>Välkomna!</p>", "en": "<p>Senses Open is a dedicated private event for families with autism spectrum disorder, during which there will be no other activities at Annantalo.</p><p>The day’s programme was designed from an autism-friendly perspective. Every child should arrive and participate in the events in the company of an adult. The event has no age restrictions. The event is free of charge.</p><p>Click here to register: <br><a href=\"https://link.webropolsurveys.com/EP/1FB923EAAED7AA11\"><b>Register now!</b></a></p><p>Before the event, we will send arrival instructions to Annantalo by email. Upon arrival, guides from the Autism Foundation Finland will welcome you in the main lobby of Annantalo. A quiet room will be available during the event for rest and calming down. <br> <br>Annantalo’s Café Napero will be open throughout the event. You can purchase sensory-friendly lunch, coffee, as well as sweet and savoury treats if you wish.</p><p>The event will be held in Finnish. People speaking other languages are also warmly welcome.</p><p>The event is organised in cooperation between the Annantalo Arts Centre for Children and Young People, Autism Finland, Autism Foundation Finland and the Autism Association of Greater Helsinki Area PAUT.</p><p>Check out the program below! <br> <br><b>Performances:</b></p><p><b>Music Theatre Performance – Hinni the Mouse</b><br>at 1:30 pm and 3:00 pm <br>Tuuli Paasolainen brings an interactive and inspiring music theatre performance that delights audiences of all ages. This low-verbal performance is suitable for everyone, regardless of language or special needs. <br>Participation tickets available at the info desk during the event.</p><p><b>Performance – Mauno on Stage</b><br>at 2:15 pm <br>Mauno, 18, known from the Kirjolla series, brings music and meaning to the stage. During this performance, you’ll hear his own songs as well as cover songs. Between songs, Mauno shares his thoughts on neurodivergence — honestly from his own perspective. <br>Participation tickets available at the info desk during the event.</p><p><b>Workshops:</b><br>from 1:00 pm to 4:00 pm <br>You can drop by briefly or stay longer at the workshops.</p><p><b>Shadow Theatre -workshop</b><br>The space features a shadow theatre screen and colourful lights, inviting you to move and explore your own shadows. Changing colours and calm music set the mood. Facilitators: art educators Karoliina Helminen and Sari Tupamäki.</p><p><b>Sensory Path: Experience Through the Senses</b> <br>At the sensory path, you can pause to experience and explore the senses in different ways. Participate in whatever way feels right for you. The sensory path is organized by the Autism Association of Greater Helsinki Area PAUT.</p><p><b>Circus Workshop</b><br>Come and test hoop spinning, juggle with various props, balance on a balance board and twirl rhythmic ribbons. The workshop is led by social circus instructors from Circus Magenta.</p><p><b>The Painter’s Atelier</b><br>Welcome to explore artist Jenni Horto’s art exhibition! Let’s get inspired by Jenni’s works and experiment with chalk, lemon, and blueberry to create images. Facilitators: art educators Anne Rossi-Horto and Santtu Koivu.</p><p><b>Pop-Up Library</b><br>At the Helsinki City Library’s pop-up library, books on autism and neurodiversity are available to read and borrow for all ages. Reading nooks invite you to read and relax.</p><p><b>The Event of Wishes Collage</b><br>In this workshop, we talk about dreams and wishes and get to know each other. Together, we will create a shared Event of Wishes collage. Draw, write, cut, glue, or simply chat. The collage is part of community pedagogy student Mona Kuusisto’s thesis project.</p><p><b>Pin Badge Station</b><br>At the pin badge station, you can design and create your own pin badge at your own pace. Bring your own idea to life. The Pin Badge station is organized by Autism Association of Greater Helsinki Area PAUT.</p><p>An Autism Finland representative will be present at the event — feel free to stop by for a chat and friendly expert advice.</p><p>A warm welcome!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1FA6B47FD8EC53CAB015CDC6C7100182/Aistit_avoinna_2026", "sv": "http://www.annantalo.fi/sv/evenemang/event/1FA6B47FD8EC53CAB015CDC6C7100182/Aistit_avoinna_2026_Med_oppna_sinnen_2026", "en": "http://www.annantalo.fi/en/events/event/1FA6B47FD8EC53CAB015CDC6C7100182/Senses_Open_2026" }, "location_extra_info": null, "short_description": { "fi": "Aistit avoinna on oma yksityinen tapahtuma autisminkirjon perheille, jolloin Annantalossa ei ole muuta toimintaa.", "sv": "Med öppna sinnen eller Aistit avoinna är ett privat evenemang för familjer med barn med autismspektrumtillstånd vid en tidpunkt då det inte finns någon annan verksamhet på Annegården.", "en": "Senses Open is a dedicated private event for families with autism spectrum disorder, during which there will be no other activities at Annantalo." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68143", "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:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494932, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-24T08:13:02.670934Z", "last_modified_time": "2026-02-24T08:13:02.670947Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785770.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494932/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-24T08:13:02.610426Z", "last_modified_time": "2026-03-20T01:13:50.880758Z", "date_published": null, "start_time": "2026-03-29T09:00:00Z", "end_time": "2026-03-29T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kudontakioski", "sv": "VävKiosk", "en": "The Weaving Kiosk" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!</p><p>Kudonta on käsityötaito, joka yhdistää kulttuureja ja ihmisiä ympäri maailmaa. Kudontakioski on kaikille avoin ja tilapäinen julkinen tila, jossa kudontatyökalut ja -materiaalit ovat helposti saatavilla.</p><p>Voit viihtyä niin pitkään kuin haluat ja nauttia käsillä tekemisen ilosta. Kangaspuut ovat kaikkien käytössä saapumisjärjestyksen mukaan.</p><p>Kudontakioski on Suomessa asuvan tanskalaisen tekstiilitaiteilijan, Rosa Tolnov Clausenin, eri puolilla maailmaa kiertänyt projekti, jonka avulla hän tutkii kudontatiloja ja kudonnan tulevaisuutta.</p><p>Lämpimästi tervetuloa!</p>", "sv": "<p>Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!</p><p>Handvävning är ett hantverk som förenar kulturer och människor över hela världen. Vävkiosken är en öppen och tillfällig offentlig plats där vävredskap och material är lättillgängliga för alla.</p><p>Du kan stanna så länge du vill och njuta av glädjen i att arbeta med händerna. Vävstolarna används i turordning enligt principen först till kvarn.</p><p>Vävkiosken är ett projekt av den danska textilkonstnären Rosa Tolnov Clausen, bosatt i Finland. Den har rest runt i världen som ett sätt att utforska vävplatser och vävningens framtid.</p><p>Plats: Östra centrums bibliotek</p>", "en": "<p>Come and try weaving on the looms – whether you have prior experience or not!</p><p>Hand-weaving is a craft that connects cultures and people around the world. The Weaving Kiosk is an open and temporary public space where weaving tools and materials are easily available to everyone.</p><p>You can stay as long as you wish and enjoy the joy of working with your hands. The looms are available on a first-come, first-served basis.</p><p>The Weaving Kiosk is a project by Danish textile artist Rosa Tolnov Clausen, based in Finland. It has travelled across the world as a way of exploring weaving spaces and the future of weaving.</p><p>Place: Itäkeskus Library</p><p>We look forward to welcoming you!</p>" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/Kudontakioski", "sv": "http://www.stoa.fi/sv/evenemang/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/VavKiosk", "en": "http://www.stoa.fi/en/events/event/1888DBC5FDCF4A9AA8DAC9E719E7494B/The_Weaving_Kiosk" }, "location_extra_info": null, "short_description": { "fi": "Tule kokeilemaan kudontaa kangaspuilla – olipa sinulla aiempaa kokemusta tai ei!", "sv": "Kom och prova på vävning i vävstolarna – oavsett om du har tidigare erfarenhet eller inte!", "en": "Come and try weaving on the looms – whether you have prior experience or not!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67678", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493980, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-01T13:14:18.846484Z", "last_modified_time": "2025-12-01T13:14:18.846499Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782327.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493980/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T13:14:18.755849Z", "last_modified_time": "2026-03-20T01:13:49.748525Z", "date_published": null, "start_time": "2026-03-28T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kaikkien lasten tanssitunti – kaikenikäisille", "sv": "Danslektion för alla barn – för alla åldrar", "en": "All children's dance class – for all ages" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!</p><p>Inklusiiviset kaikkien lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Tunteja ohjaavat tanssiin, vammaisuuteen, pedagogiikkaan ja esteettömyyteen perehtyneet ammattilaiset, joilla kaikilla on erilainen taiteellis-pedagoginen tausta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen: opetus@kaaoscompany.fi</p><p>Osallistujamäärä: max. 18 (lasta ja aikuista yhdessä)</p>", "sv": "<p>Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!</p><p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar.</p><p>Lektionerna leds av yrkesverksamma som är insatta i dans, funktionsnedsättning, pedagogik och tillgänglighet, som alla har olika konstnärlig-pedagogisk bakgrund.</p><p>Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning via e-post: opetus@kaaoscompany.fi</p><p>Antal deltagare: max. 18 (barn och vuxna tillsammans)</p>", "en": "<p>How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!</p><p>Children’s Inclusive Dance Classes offer children and their adults the joy of togetherness, movement and an opportunity to meet new people of similar and different backgrounds.</p><p>During the classes we play with movement together and each in our own way.<br>The classes are free and open to children of all ages, their siblings and adults, regardless of disability or non-disability.</p><p>The classes are taught by professionals with expertise in dance, theatre, disability, pedagogy and accessibility, all with different artistic-pedagogical backgrounds.</p><p>The lesson lasts one hour. The space is accessible.</p><p>Free admission, pre-registration required by email: opetus@kaaoscompany.fi</p><p>Number of participants: max. 18 (children and adults together)<br>Sat 18.10.2025 at 14.00<br>Tanssiluokka<br>Annankatu 30, Helsinki<br>Free entry</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/335125E662B455D0600F3B512DA3BAA8/Kaikkien_lasten_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/335125E662B455D0600F3B512DA3BAA8/Danslektion_for_alla_barn", "en": "http://www.annantalo.fi/en/events/event/335125E662B455D0600F3B512DA3BAA8/All_children_s_dance_class" }, "location_extra_info": null, "short_description": { "fi": "Miten liikkua kuin tuulenpuuska puiden lehdissä? Entä kuinka robotit tanssivat matkalla avaruuteen? Tervetuloa hauskojen liikkeellisten harjoitusten pariin!", "sv": "Hur rör man sig som en vindpust i trädens löv? Och hur dansar robotar på väg till rymden? Välkommen på roliga rörelseövningar!", "en": "How to move like a gust of wind in the leaves of trees? And how do robots dance their way through space? Welcome to fun movement exercises!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67678/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68135", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?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:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494950, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-02-25T14:13:03.305999Z", "last_modified_time": "2026-02-25T14:13:03.306012Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_785700.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494950/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-25T14:13:03.152827Z", "last_modified_time": "2026-03-20T01:13:49.503687Z", "date_published": null, "start_time": "2026-03-28T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Koko perheen kevätfestivaali", "sv": "Koko perheen kevätfestivaali", "en": "Koko perheen kevätfestivaali" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Kuulo- ja viittomakielialan järjestöt järjestävät yhdessä Koko perheen kevätfestivaalin lauantaina 28.3.2026 Malmitalolla. Kevätfestivaali tarjoaa maksutonta, kivaa puuhaa kaikenikäisille viittoville ja/tai kuulovammaisille perheineen, kieli- tai kulttuuritaustasta riippumatta.</p><p>Ohjelmassa on luvassa mm.</p><p>Viittomakieliartisti Miguel Peltomaan esitys ja meet & greet Malmisalissa klo 12.30-13.30<br>Karkkiaskartelua (tarjolla myös liivatteettomia/vegaanisia karkkeja)<br>Kasvomaalausta<br>Viittoma-kuvamuistipelejä<br>Reaktiopelejä<br>ja paljon muuta!<br>Tapahtumaan ei tarvitse ilmoittautua etukäteen, paikalle voi tulla milloin vain. Puuhapisteet löytyvät Malmitalon aulasta ja parvelta, Miguel Peltomaan esitys pidetään Malmisalissa.</p><p>Tapahtuman järjestävät yhteistyössä LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry ja Suomen Kuurosokeat ry.</p><p>Vapaa pääsy, tervetuloa!</p>", "sv": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p>", "en": "<p>Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!</p><p>Welcome to the Spring Family Fest!<br>Hearing and sign language organisations are hosting a Spring Family Fest on Saturday, 28 March 2026, 12-3 pm at Malmitalo in Helsinki (address: Ala-Malmi Square 1).</p><p>The Spring Festival offers free, fun activities for all ages for signing and/or deaf people and their families, regardless of language or cultural background.</p><p>What’s in store:</p><p>A performance by sign language artist Miguel Peltomaa + a meet & greet in Malmisali 12.30-1.30 pm<br>Candy crafts (gelatin-free and vegan options available)<br>Face painting<br>Sign and picture memory games<br>Reaction games<br>And much more!</p><p>No registration is required. You can arrive at any time during the event. Activities and stands can be found in the Malmitalo lobby and balcony, and Miguel Peltomaa’s performance will take place in Malmisali.</p><p>The event is held in collaboration with LapCI ry, Kuuloliitto, KLVL ry, Kuurojen Liitto, Kuurojen palvelusäätiö sr, SKUL ry and Suomen Kuurosokeat ry.</p><p>Free of charge. Welcome!</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali", "sv": "http://www.malmitalo.fi/sv/evenemang/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali", "en": "http://www.malmitalo.fi/en/events/event/083E5523C27FEBA6AF9875B7FC789F1D/Koko_perheen_kevatfestivaali" }, "location_extra_info": null, "short_description": { "fi": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!", "sv": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!", "en": "Välkomna! Welcome! Soo dhawoow! أهلاً وسهلاً! Chào mừng! خوش آمدید ! Ласкаво просимо!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68211", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1611074, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-13T12:13:31.319165Z", "last_modified_time": "2026-03-13T12:13:31.319179Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786238.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1611074/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-13T12:13:31.186755Z", "last_modified_time": "2026-03-20T01:13:49.401230Z", "date_published": null, "start_time": "2026-03-28T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Soitinesittelykonsertit ja soitinkokeilua – Pohjois-Helsingin musiikkiopisto", "sv": "Soitinesittelykonsertit ja soitinkokeilua", "en": "Soitinesittelykonsertit ja soitinkokeilua" }, "provider": null, "provider_contact_info": null, "description": { "fi": "<p>Pohjois-Helsingin musiikkiopisto antaa opetusta orkesterisoittimissa, bändisoittimissa sekä pianossa, laulussa ja kitarassa.</p><p>Tule kokeilemaan soittimia klo 11–14! Soitinesittelykonsertit klo 11.30 ja 12.30</p><p>Vapaa pääsy, tervetuloa!</p>" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua", "en": "http://www.malmitalo.fi/en/events/event/3A313964CEE49B426B92C221F4246EFC/Soitinesittelykonsertit_ja_soitinkokeilua" }, "location_extra_info": null, "short_description": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68211/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }