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&hide_recurring_children=true&page=51
{ "meta": { "count": 22811, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=52", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=50" }, "data": [ { "id": "kulke:68415", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:28.232165Z", "last_modified_time": "2026-04-21T05:14:13.280030Z", "date_published": null, "start_time": "2026-09-04T14:15:00Z", "end_time": "2026-12-04T17: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EDC675FAB684E4EAE01EA7B4962F204F/Aurea_Tanttu_Oljyvarimaalauskurssi_englanniksi", "sv": "http://www.annantalo.fi/sv/evenemang/event/EDC675FAB684E4EAE01EA7B4962F204F/Aurea_Tanttu_Oljyvarimaalauskurssi_englanniksi_Kurs_i_oljemalning_pa_engelska", "en": "http://www.annantalo.fi/en/events/event/EDC675FAB684E4EAE01EA7B4962F204F/Aurea_Tanttu_Oljyvarimaalauskurssi_englanniksi_Oil_Painting_in_English_" }, "location_extra_info": null, "name": { "fi": "Aurea Tanttu: Öljyvärimaalauskurssi englanniksi – 13–16-vuotiaat, 2010-2013 syntyneet", "sv": "Aurea Tanttu: Öljyvärimaalauskurssi englanniksi – Kurs i oljemålning på engelska – 13–16-åringar, född 2010-2013", "en": "Aurea Tanttu: Öljyvärimaalauskurssi englanniksi – Oil Painting in English – 13–16-year-olds, born 2010-2013" }, "short_description": { "fi": "Löydä öljyvärimaalauksen ja piirtämisen ilo englanninkielisellä kurssilla, jota opettaa Aurea Tanttu. 13 oppitunnin aikana tutustut erilaisiin maalaustekniikoihin sekä tapoihin kehittää omaa luovaa ilmaisua.", "sv": "Upptäck glädjen i oljemålning och teckning i en kurs som hålls på engelska av Aurea Tanttu. Under 13 lektioner får du bekanta dig med ett brett utbud av måleritekniker samt olika sätt att utveckla ditt kreativa uttryck.", "en": "Discover the joy of oil painting and drawing in a course taught in English by Aurea Tanttu. Over 13 lessons, you will be introduced to a wide range of painting techniques and ways of developing your creative voice." }, "provider_contact_info": null, "description": { "fi": "<p>Löydä öljyvärimaalauksen ja piirtämisen ilo englanninkielisellä kurssilla, jota opettaa Aurea Tanttu. 13 oppitunnin aikana tutustut erilaisiin maalaustekniikoihin sekä tapoihin kehittää omaa luovaa ilmaisua.</p><p>Kurssin aikana tutkimme sekä maalaamisen teknisiä että kokeellisia puolia. 9. lokakuuta teemme lyhyen retken joko museoon tai taiteilijan ateljeeseen.</p><p>Kankaiden pingottaminen, värioppi, värien sekoittaminen, maalaaminen havainnosta sekä valokuvista, ja sommittelu ovat kurssin keskeisiä aihealueita. Jokainen oppitunti alkaa myös noin 10 minuutin mittaisella esityksellä, jossa käsitellään jotakin taidehistorian ajanjaksoa, ja opiskelijoita kannustetaan tutustumaan muiden taiteilijoiden teoksiin.<br>Kurssilla käytät vesiliukoisia öljyvärejä, maalausnestettä, siveltimiä, hiiltä, paperia, kangasta ja gessoa. Kurssin aikana ehdit maalata noin 3–4 öljyvärimaalausta sekä useita piirustuksia, jotka saat mukaasi kotiin.</p><p>Kurssin opettaa englanniksi suomalainen taidemaalari Aurea Tanttu (MFA, Konstfack; BFA, University of the Arts London).</p><p>Kurssimaksu on 380 euroa. Yhden oppitunnin kesto on yhteensä 2 tuntia ja 15 minuuttia. Kaikki materiaalit sisältyvät kurssimaksuun.</p><p>Ilmoita sähköpostiosoitteeseen aurea.tanttu@gmail.com 01.08.2026 mennessä.</p>", "sv": "<p>Upptäck glädjen i oljemålning och teckning i en kurs som hålls på engelska av Aurea Tanttu. Under 13 lektioner får du bekanta dig med ett brett utbud av måleritekniker samt olika sätt att utveckla ditt kreativa uttryck.</p><p>Under kursen kommer vi att utforska både måleriets tekniska och experimentella aspekter. Den 9 oktober gör vi en kort utflykt till antingen ett museum eller en konstnärsateljé.</p><p>Uppspänning av målarduk, färglära, färgblandning, observations baserad måleri samt användning av fotografier som referens, och komposition kommer att vara våra huvudsakliga fokusområden. Varje lektion inleds också med en kort presentation på cirka 10 minuter som behandlar en period inom konsthistorien, och deltagarna uppmuntras att upptäcka andra konstnärers verk.</p><p>Under kursen kommer du att arbeta med vattenlösliga oljefärger, målarmedium, penslar, kol, papper, duk och gesso. Vid kursens slut kommer du att ha färdigställt 3–4 oljemålningar samt flera teckningar att ta med hem.</p><p>Kursen hålls på engelska av konstnären Aurea Tanttu (MFA, Konstfack; BFA, University of the Arts London).</p><p>Kursavgiften är 380 euro. Varje lektion pågår i totalt 2 timmar och 15 minuter. Allt material ingår i kursavgiften.</p><p>Anmäl dig via e-post till aurea.tanttu@gmail.com senast den 1 augusti 2026.</p>", "en": "<p>Discover the joy of oil painting and drawing in a course taught in English by Aurea Tanttu. Over 13 lessons, you will be introduced to a wide range of painting techniques and ways of developing your creative voice.</p><p>During the course, we will explore both the technical and experimental aspects of painting. On October 9th, we will go on a short field trip to either a museum or an artist’s studio.</p><p>Stretching canvases, colour theory, colour mixing, painting from life as well as from photographs, and composition will be our main areas of focus. Each lesson will also begin with a short 10-minute presentation covering a period of art history, and students will be encouraged to look at the work of other painters.</p><p>During the course, you will use water-soluble oil paints, medium, brushes, charcoal, paper, canvas, and gesso. By the end of the course, you will have completed 3–4 oil paintings, as well as several drawings to take home.</p><p>The course will be taught in English by Finnish painter Aurea Tanttu (MFA, Konstfack; BFA, University of the Arts London).</p><p>The course fee is 380 euros. Each lesson lasts a total of 2 hours and 15 minutes. All materials are included in the course fee.</p><p>Register by emailing aurea.tanttu@gmail.com by August 1, 2026.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68415/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68442", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:20.428662Z", "last_modified_time": "2026-04-21T05:14:11.987837Z", "date_published": null, "start_time": "2026-08-21T15:00:00Z", "end_time": "2027-05-21T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/29A7D9DDDF3DAF1253F953735A5B4F93/Kristiina_Leppanen_The_world_of_masks", "sv": "http://www.annantalo.fi/sv/evenemang/event/29A7D9DDDF3DAF1253F953735A5B4F93/Kristiina_Leppanen_The_world_of_masks_Maskernas_Varld", "en": "http://www.annantalo.fi/en/events/event/29A7D9DDDF3DAF1253F953735A5B4F93/Kristiina_Leppanen_The_world_of_masks" }, "location_extra_info": null, "name": { "fi": "Kristiina Leppänen: The world of masks – 15–18-vuotiaat, 2007–2011 syntyneet", "sv": "Kristiina Leppänen: The world of masks – Maskernas Värld – 15–18-åringar, född 2007-2011", "en": "Kristiina Leppänen: The world of masks – 15–18-year-olds, born 2007-2011" }, "short_description": { "fi": "Millaisen hahmon loisit, jos saisit rakentaa täysin uudet kasvot? Naamioiden maailma - kurssilla yhdistyvät mielikuvitus, kulttuurit ja käsillä tekeminen, kun suunnittelet ja toteutat oman maskisi.", "sv": "Vilken slags karaktär skulle du skapa om du fick bygga ett helt nytt ansikte? På kursen Maskernas värld möts fantasi, kulturer och skapande med händerna när du planerar och skapar din egen mask.", "en": "What kind of character would you create if you could design a completely new face? In the World of Masks course, imagination, cultures and hands-on making come together as you design and create your own mask." }, "provider_contact_info": null, "description": { "fi": "<p>Millaisen hahmon loisit, jos saisit rakentaa täysin uudet kasvot? Naamioiden maailma - kurssilla yhdistyvät mielikuvitus, kulttuurit ja käsillä tekeminen, kun suunnittelet ja toteutat oman maskisi.</p><p>The World of Masks -kurssilla tutustutaan naamioihin taiteen, kulttuurien ja identiteetin näkökulmista. Kurssilla pohditaan, miten eri yhteisöt ovat käyttäneet naamioita juhlaan, suojautumiseen ja tarinankerrontaan, ja mitä ne voivat kertoa meistä tänä päivänä.</p><p>Mahdollisuuksien mukaan teemme myös pieniä retkiä Helsingin kaupunkiympäristöön etsimään “piiloutuneita kasvoja” ja muotoja.<br>Kurssilla suunnitellaan ja valmistetaan omia maskeja alusta loppuun. Työskentelyyn kuuluu luonnostelua, muotoilua sekä paperimassan valmistamista kierrätysmateriaaleista.</p><p>Valmiit maskit maalataan ja viimeistellään yksilöllisesti, ja ne saa kurssin lopuksi mukaansa. Työskentelyssä korostuu kokeilu, oma ilmaisu ja rauhallinen tekeminen ilman suorituspaineita.<br>Opetuskieli on suomi ja englanti. Kurssin ohjaa arkkitehti, lavastaja ja taideohjaaja Kristiina Leppänen.</p><p>Kurssin hinta on 290 €, ja sen voi maksaa yhdessä tai kahdessa erässä (syyskuu ja marraskuu). Maksu onnistuu tilisiirrolla tai MobilePaylla, ja tarkemmat maksutiedot lähetetään ilmoittautumisen jälkeen.</p><p>Ilmoittautuminen on sitova, eikä kurssimaksua palauteta kurssin alettua. Kurssi voi peruuntua, mikäli ilmoittautuneita ei ole riittävästi viimeistään 5 arkipäivää ennen aloitusta. Mahdollisesta peruuntumisesta ilmoitetaan sähköpostitse.</p><p>Ilmoittautuminen 7.8.2026 mennessä suomeksi: https://forms.gle/FSciYMdgiYDNAspf9</p>", "sv": "<p>Vilken slags karaktär skulle du skapa om du fick bygga ett helt nytt ansikte? På kursen Maskernas värld möts fantasi, kulturer och skapande med händerna när du planerar och skapar din egen mask.</p><p>I kursen ”Maskeras värld” utforskar vi masker ur ett konstnärligt, kulturellt och identitetsmässigt perspektiv. På kursen funderar vi över hur olika samhällen har använt masker för fest, skydd och berättande, och vad de kan berätta om oss idag. Om möjligt gör vi även små utflykter i Helsingfors stadsmiljö för att leta efter ”dolda ansikten” och former.</p><p>Under kursen planerar och tillverkar vi våra egna masker från början till slut. Arbetet omfattar skissning, formgivning samt tillverkning av pappersmassa av återvunnet material. De färdiga maskerna målas och finputsas individuellt, och du får ta med dig dem hem när kursen är slut. I arbetet läggs tonvikten på experimenterande, eget uttryck och ett lugnt skapande utan prestationspress.</p><p>Undervisningsspråken är finska och engelska. Kursen leds av arkitekten, scenografen och konstpedagogen Kristiina Leppänen.<br>Kursavgiften är 290 €, och den kan betalas i en eller två omgångar (september och november). Betalning sker via banköverföring eller MobilePay, och mer detaljerade betalningsuppgifter skickas efter anmälan.</p><p>Anmälan är bindande och kursavgiften återbetalas inte efter att kursen har börjat. Kursen kan ställas in om det inte finns tillräckligt många anmälda senast 5 arbetsdagar före start. Eventuell inställning meddelas via e-post.</p><p>Anmäl dig på finska senast den 7 augusti: https://forms.gle/FSciYMdgiYDNAspf9</p>", "en": "<p>What kind of character would you create if you could design a completely new face? In the World of Masks course, imagination, cultures and hands-on making come together as you design and create your own mask.</p><p>The \"World of Masks\" course explores masks from the perspectives of art, culture, and identity. The course explores how different communities have used masks for celebration, protection, and storytelling, and what they can tell us about ourselves today. Whenever possible, we’ll also take short excursions into Helsinki’s urban environment to search for “hidden faces” and shapes.</p><p>In the course, participants will design and create their own masks from start to finish. The process involves sketching, shaping, and making papier-mâché from recycled materials. The finished masks will be painted and finished individually, and you’ll get to take them home at the end of the course. The work emphasizes experimentation, personal expression, and a relaxed approach without pressure to perform.</p><p>The course is taught in Finnish and English. The course is led by architect, set designer, and art director Kristiina Leppänen.<br>The course fee is €290 and can be paid in one or two instalments (September and November). Payment can be made via bank transfer or MobilePay, and detailed payment instructions will be sent after registration.</p><p>Registration is binding, and the course fee is non-refundable once the course has begun. The course may be cancelled if there are not enough registrants at least 5 business days before the start date. You will be notified of any cancellation via email.</p><p>Register in Finnish by August 7: https://forms.gle/FSciYMdgiYDNAspf9</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68442/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68431", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:19.925600Z", "last_modified_time": "2026-04-21T05:14:11.564986Z", "date_published": null, "start_time": "2026-08-21T13:15:00Z", "end_time": "2027-05-14T14:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DA24510E635713100D5F5B3B803E2A60/Seed_Art_Studio_Varikas_Elainmaailma_taidetta_englanniksi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/DA24510E635713100D5F5B3B803E2A60/Seed_Art_Studio_Varikas_Elainmaailma_taidetta_englanniksi_Fargstark_Djurvarld_konst_pa_engelska_", "en": "http://www.annantalo.fi/en/events/event/DA24510E635713100D5F5B3B803E2A60/Seed_Art_Studio_Varikas_Elainmaailma_taidetta_englanniksi_Amazing_Animal_Art_Art_in_English_" }, "location_extra_info": null, "name": { "fi": "Seed Art Studio: Värikäs Eläinmaailma (taidetta englanniksi) – 5–7-vuotiaat, 2019-2021 syntyneet", "sv": "Seed Art Studio: Värikäs Eläinmaailma (taidetta englanniksi) – Färgstark Djurvärld (konst på engelska) – 5–7-åringar, född 2019-2021", "en": "Seed Art Studio: Värikäs Eläinmaailma (taidetta englanniksi) – Amazing Animal Art (Art in English) – 5–7-year-olds, born 2019-2021" }, "short_description": { "fi": "Valmis eläinseikkailuun? Läiskytämme läpi jokien ja vaellamme syvälle viidakkoon luodaksemme eläimiä kuten hassuja pandoja, trooppisia lintuja & omia suloisia lemmikkejä. Samalla opimme ja harjoittelemme englantia ystävällisessä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin oppijat että äidinkielenään puhuvat ovat tervetulleita.", "sv": "Är du redo för ett djuräventyr? Vi plaskar genom floder & vandrar djupt in i djungeln för att skapa djur som tokiga pandabjörnar, tropiska fåglar och till och med våra egna söta husdjur. Samtidigt lär vi oss och övar engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.", "en": "Are you ready for an animal adventure? We’ll splash through rivers and trek deep into jungles to make animals like silly panda bears, tropical birds, and even our cute household pets. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome." }, "provider_contact_info": null, "description": { "fi": "<p>Valmis eläinseikkailuun? Läiskytämme läpi jokien ja vaellamme syvälle viidakkoon luodaksemme eläimiä kuten hassuja pandoja, trooppisia lintuja & omia suloisia lemmikkejä. Samalla opimme ja harjoittelemme englantia ystävällisessä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin oppijat että äidinkielenään puhuvat ovat tervetulleita.</p><p>Opimme eläimistä hauskoilla tavoilla, kuten katsomalla valokuvia, lukemalla lyhyitä tarinoita tai pelaamalla nopeita pelejä. Sen jälkeen sukellamme luovuuteen ja piirrämme, maalaamme sekä luomme upeita eläinteoksia käyttäen erilaisia korkealaatuisia materiaaleja ja tekniikoita.</p><p>Ryhmä pidetään pienenä ja viihtyisänä, jotta jokainen lapsi saa yksilöllistä huomiota. Luomme jopa räätälöityjä oppitunteja pienten taiteilijoiden omien lempparieläinten perusteella! Suomea käytetään tarvittaessa.</p><p>Jos lapsesi rakastaa eläimiä, taidetta ja hauskanpitoa, tervetuloa mukaan!</p><p>*Rushan Seed Art Studiosta on Kaliforniasta kotoisin ja TEFL-sertifioitu opettaja, jolla on yli 25 vuoden kokemus lasten luovuuden tukemisesta.</p><p>Syyslukukausi 390€<br>Kevätlukukausi 450€</p><p>Ilmoittaudu sekä syys- että kevätlukukaudelle Seed Art Studion verkkosivujen kautta: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "sv": "<p>Är du redo för ett djuräventyr? Vi plaskar genom floder & vandrar djupt in i djungeln för att skapa djur som tokiga pandabjörnar, tropiska fåglar och till och med våra egna söta husdjur. Samtidigt lär vi oss och övar engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.</p><p>Vi lär oss om djur på roliga sätt genom att titta på foton, läsa korta berättelser eller spela ett snabbt spel. Sedan dyker vi ner i vår kreativitet för att rita, måla och skapa fantastiska djurkonstverk med kvalitetsmaterial & olika tekniker.</p><p>Gruppen hålls liten & trivsam för att ge en personlig och noggrant utformad upplevelse – varje barn får gott om uppmärksamhet. Vi skapar till och med specialanpassade lektioner baserat på de små konstnärernas favoritdjur! Finska används vid behov.</p><p>Om ditt barn älskar djur, konst & att ha kul, är den här klassen en perfekt matchning!</p><p>*Rushan från Seed Art Studio är en infödd kalifornier och TEFL-certifierad instruktör med över 25 års erfarenhet av att vårda barns kreativitet.</p><p>Hösttermin 390€<br>Vårtermin 450€</p><p>Anmäl dig till höst- och vårterminen på Seed Art Studios webbplats: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "en": "<p>Are you ready for an animal adventure? We’ll splash through rivers and trek deep into jungles to make animals like silly panda bears, tropical birds, and even our cute household pets. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome.</p><p>We’ll learn about animals in fun ways like looking at photos, reading short stories, or playing a quick game. Then we dive into our creativity to draw, paint and build amazing animal artwork using a variety of quality materials and techniques.</p><p>This class is kept small and cozy to ensure a personalized and specially curated experience. Each child gets plenty of attention, and we’ll even create specially tailored lessons based on the little artists’ favorite animals! Finnish is used as necessary.</p><p>If your child loves animals, art and having lots of fun, this class is a perfect match!</p><p>*Rushan of Seed Art Studio is a native Californian and TEFL certified instructor with over 25 years of experience nurturing children’s creativity.</p><p>Fall term 390€<br>Spring term 450€</p><p>Register for the autumn and spring semesters on Seed Art Studio's website: https://www.seedartstudio.com/classes-at-annantalo.html</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68431/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68430", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T12:13:17.330298Z", "last_modified_time": "2026-04-21T05:14:10.960828Z", "date_published": null, "start_time": "2026-08-19T14:30:00Z", "end_time": "2027-05-19T16: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_Konst_jorden_runt_konst_pa_engelska_", "en": "http://www.annantalo.fi/en/events/event/54A5AED6BD7F15140C619D9D5069D008/Seed_Art_Studio_Taide_ympari_maailmaa_taidetta_englanniksi_Art_Around_the_World_Art_in_English_" }, "location_extra_info": null, "name": { "fi": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – 7–9-vuotiaat, 2017-2019 syntyneet", "sv": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – Konst jorden runt (konst på engelska) – 7–9-åringar, född 2017-2019", "en": "Seed Art Studio: Taide ympäri maailmaa (taidetta englanniksi) – Art Around the World (Art in English) – 7–9-year-olds, born 2017-2019" }, "short_description": { "fi": "Ota passi ja seikkailumieli mukaan! Lähdemme unohtumattomalle matkalle ympäri maailma luomaan upeaa taidetta eri kulttuurien ja kiehtovien maisemien inspiroimina. Samalla opimme & harjoittelemme englantia lämpimässä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin kielen oppijat että sitä äidinkielenään puhuvat ovat tervetulleita.", "sv": "Ta med pass och äventyrslust! Vi ger oss ut på en resa jorden runt för att skapa fantastisk konst inspirerad av olika kulturer, konstformer och fascinerande landskap. Samtidigt övar vi engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.", "en": "Grab your passport and sense of adventure! We’re going on an unforgettable journey around the world to make amazing art inspired by different cultures, art forms, and fascinating landscapes. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome." }, "provider_contact_info": null, "description": { "fi": "<p>Ota passi ja seikkailumieli mukaan! Lähdemme unohtumattomalle matkalle ympäri maailma luomaan upeaa taidetta eri kulttuurien ja kiehtovien maisemien inspiroimina. Samalla opimme & harjoittelemme englantia lämpimässä ja itseluottamusta vahvistavassa ympäristössä. Sekä englannin kielen oppijat että sitä äidinkielenään puhuvat ovat tervetulleita.</p><p>Kulttuuriesineiden, kirjojen ja musiikin avulla opimme aiheista, kuten Australian aboriginaalien pistemaalauksesta ja meksikolaisen taiteilijan Frida Kahlon rakkaudesta eksoottisiin eläimiin.</p><p>Maalaamme, piirrämme ja luomme laadukkailla taidemateriaaleilla ja kokeilemme hauskoja tekniikoita.</p><p>Ryhmä pidetään pienenä ja viihtyisänä, jotta jokainen lapsi saa yksilöllistä huomiota. Lapset auttavat suunnittelemaan matkoja ehdottamalla kohteita, joita he ovat kiinnostuneita tutkimaan. Suomea käytetään tarvittaessa.</p><p>Katsotaan, minne taiteellinen matkamme vie – tule mukaan!</p><p>*Rushan Seed Art Studiosta on Kaliforniasta kotoisin ja TEFL-sertifioitu opettaja, jolla on yli 25 vuoden kokemus lasten luovuuden tukemisesta.</p><p>Syyslukukausi 450€<br>Kevätlukukausi 500€</p><p>Ilmoittaudu sekä syys- että kevätlukukaudelle Seed Art Studion verkkosivujen kautta viimeistään 13.08.2026\thttps://www.seedartstudio.com/classes-at-annantalo.html</p>", "sv": "<p>Ta med pass och äventyrslust! Vi ger oss ut på en resa jorden runt för att skapa fantastisk konst inspirerad av olika kulturer, konstformer och fascinerande landskap. Samtidigt övar vi engelska i en vänlig och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.</p><p>Genom kulturföremål, böcker och musik lär vi oss om allt från australiska aboriginernas punktmålning till den mexikanska konstnären Frida Kahlos kärlek till exotiska djur. Vi skapar med konstnärsmaterial av hög kvalitet och provar på roliga tekniker. Barnen hjälper till att planera våra framtida resor genom att föreslå destinationer som de är nyfikna på att utforska.</p><p>Gruppen hålls liten & trivsam för att ge en personlig och noggrant utformad upplevelse – varje barn får gott om uppmärksamhet. Finska används vid behov.</p><p>Låt oss se var i världen vår konstnärliga resa tar oss!</p><p>*Rushan från Seed Art Studio är en infödd kalifornier och TEFL-certifierad instruktör med över 25 års erfarenhet av att vårda barns kreativitet.</p><p>Hösttermin 450€<br>Vårtermin 500€</p><p>Anmäl dig till höst- och vårterminen på Seed Art Studios webbplats senast den 13 augusti 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "en": "<p>Grab your passport and sense of adventure! We’re going on an unforgettable journey around the world to make amazing art inspired by different cultures, art forms, and fascinating landscapes. All the while, we learn and practice English in a friendly and confidence-building environment. Both English learners & native speakers are warmly welcome.</p><p>Using inspiring cultural objects, books and even music, we learn about topics like Australian Aboriginal dot painting and Mexican artist Frida Kahlo’s love for exotic animals.<br>We paint, draw, and build with quality art materials and try out fun techniques and tools.</p><p>This class is kept small & cozy to ensure a personalized and specially curated experience–each child gets plenty of attention. Kids help plan our future travels by suggesting destinations they are curious about exploring. Finnish is used as necessary.</p><p>Let’s see where in the world our artful trip takes us!</p><p>*Rushan of Seed Art Studio is a native Californian and TEFL certified instructor with over 25 years of experience nurturing children’s creativity</p><p>Fall term 450€<br>Spring term 500€</p><p>Register for the autumn and spring semesters on Seed Art Studio's website by August 13, 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68430/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68429", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T12:13:16.877384Z", "last_modified_time": "2026-04-21T05:14:10.538012Z", "date_published": null, "start_time": "2026-08-18T15:00:00Z", "end_time": "2026-12-08T17: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/82D9A54E82772F67D88B68318D35E239/Seed_Art_Studio_Varilaboratorio_Villi_pohjoismaiset_varimusteet_taidetta_englanniksi_", "sv": "http://www.annantalo.fi/sv/evenemang/event/82D9A54E82772F67D88B68318D35E239/Seed_Art_Studio_Varilaboratorio_Villi_pohjoismaiset_varimusteet_taidetta_englanniksi_Farglabb_Nordiska_naturblack_konst_pa_engelska_", "en": "http://www.annantalo.fi/en/events/event/82D9A54E82772F67D88B68318D35E239/Seed_Art_Studio_Varilaboratorio_Villi_pohjoismaiset_varimusteet_taidetta_englanniksi_Color_Lab_Wild_Nordic_Inks_Art_in_English_" }, "location_extra_info": null, "name": { "fi": "Seed Art Studio: Värilaboratorio: Villi pohjoismaiset värimusteet (taidetta englanniksi) – 7–11-vuotiaat, 2015-2019 syntyneet", "sv": "Seed Art Studio: Värilaboratorio: Villi pohjoismaiset värimusteet (taidetta englanniksi) – Färglabb: Nordiska naturbläck (konst på engelska) – 7–11-åringar, född 2015-2019", "en": "Seed Art Studio: Värilaboratorio: Villi pohjoismaiset värimusteet (taidetta englanniksi) – Color Lab: Wild Nordic Inks (Art in English) – 7–11-year-olds, born 2015-2019" }, "short_description": { "fi": "Tämä ainutlaatuinen kurssi on johdatus luonnonvärien kiehtovaan maailmaan – vain lapsille! Testaamme salaisia reseptejä, teemme hauskoja kokeita & opimme uusia taitoja vanhoista perinteistä. Samalla harjoittelemme englantia lämpimässä & itseluottamusta vahvistavassa ympäristössä. Sekä englannin oppijat että äidinkielenään puhuvat ovat tervetulleita.", "sv": "Denna unika kurs är en introduktion till magin i att skapa färg av naturen – bara för barn! Vi provar hemliga recept, gör roliga experiment och lär oss nya färdigheter från uråldriga traditioner. Samtidigt övar vi engelska i en varm och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.", "en": "This one-of-a-kind class is an introduction to the magical world of making color from nature–just for kids! We test secret recipes, try fun experiments & learn new skills from ancient traditions. All the while, we learn & practice English in a warm, friendly and confidence-building environment. Both English learners & native speakers are welcome." }, "provider_contact_info": null, "description": { "fi": "<p>Tämä ainutlaatuinen kurssi on johdatus luonnonvärien kiehtovaan maailmaan – vain lapsille! Testaamme salaisia reseptejä, teemme hauskoja kokeita & opimme uusia taitoja vanhoista perinteistä. Samalla harjoittelemme englantia lämpimässä & itseluottamusta vahvistavassa ympäristössä. Sekä englannin oppijat että äidinkielenään puhuvat ovat tervetulleita.</p><p>Tällä kurssilla tutustumme hienoihin paikallisiin kasveihin, jotka kätkevät värikkäitä salaisuuksia, sekä jännittävään prosessiin, jossa niistä yhdessä valmistetaan luonnonmusteita. Hyödynnämme värejä ja muita inspiroivia luonnonmateriaaleja: maalaamme, tulostamme, rakennamme ja harjoittelemme tekniikoita kuten kollaasi, kutomista & kirjansidontaa.</p><p>Ryhmä pidetään pienenä ja viihtyisänä, jotta jokainen lapsi saa yksilöllistä ohjausta & huomiota. Suomea käytetään tarvittaessa.</p><p>Luontoyhteyden vahvistamisesta luonnonvärien salaisuuksien löytämiseen – luvassa on villin hauskaa tekemistä!</p><p>*Rushan Seed Art Studiosta on Kaliforniasta kotoisin ja TEFL-sertifioitu opettaja, jolla on yli 25 vuoden kokemus lasten luovuuden tukemisesta.</p><p>Syyslukukausi: 450€</p><p>Ilmoittaudu syyslukukaudelle verkkosivujen kautta viimeistään 12.08.2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "sv": "<p>Denna unika kurs är en introduktion till magin i att skapa färg av naturen – bara för barn! Vi provar hemliga recept, gör roliga experiment och lär oss nya färdigheter från uråldriga traditioner. Samtidigt övar vi engelska i en varm och självförtroendeskapande miljö. Både de som lär sig engelska och de med det som modersmål är varmt välkomna.</p><p>På denna kurs lär vi känna fantastiska lokala växter som bär på färgstarka hemligheter, samt den spännande processen att skapa naturligt bläck av dem. Med de färger vi gör tillsammans och andra inspirerande naturmaterial målar vi, trycker, bygger och övar tekniker som collage, vävning och bokbindning.</p><p>Gruppen hålls liten och trivsam för att ge en personlig och noggrant utformad upplevelse – varje barn får gott om uppmärksamhet. Finska används vid behov.</p><p>Från att knyta an till naturen till att upptäcka naturfärgernas mysterier – vi kommer att ha riktigt roligt!</p><p>*Rushan från Seed Art Studio är en infödd kalifornier och TEFL-certifierad instruktör med över 25 års erfarenhet av att vårda barns kreativitet.</p><p>Hösttermin 450€</p><p>Anmäl dig till höstterminen via webbplatsen senast på den 12 augusti 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>", "en": "<p>This one-of-a-kind class is an introduction to the magical world of making color from nature–just for kids! We test secret recipes, try fun experiments & learn new skills from ancient traditions. All the while, we learn & practice English in a warm, friendly and confidence-building environment. Both English learners & native speakers are welcome.</p><p>In this class, we get to know the wonderful native plants which hold colorful secrets and the exciting processes of making wild ink from them. Using the natural colors we make together as well as other inspiring natural materials, we paint, print, build and practice techniques like collaging, weaving and bookbinding.</p><p>This class is kept small & cozy to ensure a personalized and specially curated experience – each child gets plenty of attention. Finnish is used as necessary.</p><p>From connecting with nature to discovering the mysteries of natural color, we’re going to have wild fun!</p><p>*Rushan of Seed Art Studio is a native Californian and TEFL certified instructor with over 25 years of experience nurturing children’s creativity.</p><p>Fall term 450€</p><p>Register for the autumn semester online by August 12, 2026: https://www.seedartstudio.com/classes-at-annantalo.html</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68429/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68327", "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:30/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://taidepajakipina.fi/", "sv": "https://taidepajakipina.fi/", "en": "https://taidepajakipina.fi/" }, "price": { "fi": "27,50 € aikuinen ja lapsi", "sv": "27,50 € aikuinen ja lapsi", "en": "27,50 € aikuinen ja lapsi" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1721679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T12:13:55.922602Z", "last_modified_time": "2026-03-24T12:13:55.922616Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787437.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721679/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T12:13:55.786712Z", "last_modified_time": "2026-04-21T05:14:09.503547Z", "date_published": null, "start_time": "2026-07-15T07:00:00Z", "end_time": "2026-07-15T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4AEB6D009923CD9B73EEE30F535E37DE/Taidepaja_Kipina_Vauvojen_varikylpy", "sv": "http://www.annantalo.fi/sv/evenemang/event/4AEB6D009923CD9B73EEE30F535E37DE/Taidepaja_Kipina_Babyfargbad", "en": "http://www.annantalo.fi/en/events/event/4AEB6D009923CD9B73EEE30F535E37DE/Taidepaja_Kipina_Baby_Colour_Bath" }, "location_extra_info": null, "name": { "fi": "Taidepaja Kipinä: Vauvojen värikylpy – 4-24 kk ikäisille vauvoille aikuisen kanssa", "sv": "Taidepaja Kipinä: Babyfärgbad – För spädbarn i åldern 4–24 månader i sällskap med en vuxen", "en": "Taidepaja Kipinä: Baby Colour Bath – For babies aged 4–24 months accompanied by an adult" }, "short_description": { "fi": "Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.", "sv": "Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.", "en": "Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult." }, "provider_contact_info": null, "description": { "fi": "<p>Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.</p><p>Työskentelyn alussa virittäydytään päivän teemaan erilaisia materiaaleja, taidetta, valoa ja värejä tutkien, mistä edetään itse tuotettuun jälkeen.</p><p>Työpajoissa maaliaineina käytetään turvallisia elintarvikepohjaisia aineita. Yhteen työpajaan mahtuu 9 lapsi-aikuinen paria. Työpaja on suunnattu 4 kk – 2 vuotta täyttäneille. Yksi lippu on tarkoitettu yhdelle aikuinen ja lapsi parille.</p><p>Työpajaa ohjaa koulutettu ohjaaja Ruusu-Maria Lappalainen.</p><p>Kesän Värikylpyjen teemana on: Aurinko</p><p>Lisätiedot ja ilmoittautuminen: https://taidepajakipina.fi/</p>", "sv": "<p>Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.</p><p>I början av arbetet stämmer man in sig i dagens tema genom att undersöka olika material, konst, ljus och färger, varefter man går vidare till eget skapande.</p><p>I verkstäderna används säkra, livsmedelsbaserade färgämnen. I en verkstad ryms 9 barn–vuxen-par. Verkstaden riktar sig till barn i åldern 4 månader till 2 år. En biljett gäller för ett barn och en vuxen tillsammans.</p><p>Verkstaden leds av den utbildade handledaren Ruusu-Maria Lappalainen.</p><p>Sommarens Babyfärgbad är: Solen.</p><p>Mer information och anmälan: https://taidepajakipina.fi/</p>", "en": "<p>Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult.</p><p>At the beginning of the session, participants tune into the day’s theme by exploring different materials, art, light, and colours, after which they move on to creating their own work.</p><p>Safe, food-based substances are used as paints in the workshops. Each workshop can accommodate 9 child–adult pairs. The workshop is intended for children aged 4 months to 2 years. One ticket is for one adult and one child pair.</p><p>The workshop is led by a trained instructor, Ruusu-Maria Lappalainen.</p><p>The theme of the summer Colour Baths is: Sun.</p><p>More information and registration: https://taidepajakipina.fi/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68327/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68326", "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:30/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://taidepajakipina.fi/", "sv": "https://taidepajakipina.fi/", "en": "https://taidepajakipina.fi/" }, "price": { "fi": "27,50€ aikuinen+lapsi", "sv": "27,50€ aikuinen+lapsi", "en": "27,50€ aikuinen+lapsi" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1721678, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T12:13:55.496218Z", "last_modified_time": "2026-03-24T12:13:55.496233Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787436.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721678/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T12:13:55.366684Z", "last_modified_time": "2026-04-21T05:14:09.233059Z", "date_published": null, "start_time": "2026-07-08T07:00:00Z", "end_time": "2026-07-08T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CC8FE0DCBF4BF95016E7A0C9CFAE5314/Taidepaja_Kipina_Vauvojen_varikylpy", "sv": "http://www.annantalo.fi/sv/evenemang/event/CC8FE0DCBF4BF95016E7A0C9CFAE5314/Taidepaja_Kipina_Babyfargbad", "en": "http://www.annantalo.fi/en/events/event/CC8FE0DCBF4BF95016E7A0C9CFAE5314/Taidepaja_Kipina_Baby_Colour_Bath" }, "location_extra_info": null, "name": { "fi": "Taidepaja Kipinä: Vauvojen värikylpy – 4-24 kk ikäisille vauvoille aikuisen kanssa", "sv": "Taidepaja Kipinä: Babyfärgbad – För spädbarn i åldern 4–24 månader i sällskap med en vuxen", "en": "Taidepaja Kipinä: Baby Colour Bath – For babies aged 4–24 months accompanied by an adult" }, "short_description": { "fi": "Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.", "sv": "Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.", "en": "Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult." }, "provider_contact_info": null, "description": { "fi": "<p>Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.</p><p>Työskentelyn alussa virittäydytään päivän teemaan erilaisia materiaaleja, taidetta, valoa ja värejä tutkien, mistä edetään itse tuotettuun jälkeen.</p><p>Työpajoissa maaliaineina käytetään turvallisia elintarvikepohjaisia aineita. Yhteen työpajaan mahtuu 9 lapsi-aikuinen paria. Työpaja on suunnattu 4 kk – 2 vuotta täyttäneille. Yksi lippu on tarkoitettu yhdelle aikuinen ja lapsi parille.</p><p>Työpajaa ohjaa koulutettu ohjaaja Ruusu-Maria Lappalainen.</p><p>Kesän Värikylpyjen teemana on: Aurinko</p><p>Lisätiedot: https://taidepajakipina.fi/</p>", "sv": "<p>Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.</p><p>I början av arbetet stämmer man in sig i dagens tema genom att undersöka olika material, konst, ljus och färger, varefter man går vidare till eget skapande.</p><p>I verkstäderna används säkra, livsmedelsbaserade färgämnen. I en verkstad ryms 9 barn–vuxen-par. Verkstaden riktar sig till barn i åldern 4 månader till 2 år. En biljett gäller för ett barn och en vuxen tillsammans.</p><p>Verkstaden leds av den utbildade handledaren Ruusu-Maria Lappalainen.</p><p>Sommarens Babyfärgbad är: Solen.</p><p>Mer information: https://taidepajakipina.fi/</p>", "en": "<p>Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult.</p><p>At the beginning of the session, participants tune into the day’s theme by exploring different materials, art, light, and colours, after which they move on to creating their own work.</p><p>Safe, food-based substances are used as paints in the workshops. Each workshop can accommodate 9 child–adult pairs. The workshop is intended for children aged 4 months to 2 years. One ticket is for one adult and one child pair.</p><p>The workshop is led by a trained instructor, Ruusu-Maria Lappalainen.</p><p>The theme of the summer Colour Baths is: Sun.</p><p>More information : https://taidepajakipina.fi/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68325", "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:30/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://taidepajakipina.fi/", "sv": "https://taidepajakipina.fi/", "en": "https://taidepajakipina.fi/" }, "price": { "fi": "27,50€ aikuinen+lapsi", "sv": "27,50€ aikuinen+lapsi", "en": "27,50€ aikuinen+lapsi" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1721677, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-24T12:13:55.021139Z", "last_modified_time": "2026-03-24T12:13:55.021152Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787427.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1721677/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-24T12:13:54.877336Z", "last_modified_time": "2026-04-21T05:14:08.639111Z", "date_published": null, "start_time": "2026-06-24T07:00:00Z", "end_time": "2026-06-24T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E758E3D145F72AFAA38A62E467CFEC59/Taidepaja_Kipina_Vauvojen_varikylpy", "sv": "http://www.annantalo.fi/sv/evenemang/event/E758E3D145F72AFAA38A62E467CFEC59/Taidepaja_Kipina_Babyfargbad", "en": "http://www.annantalo.fi/en/events/event/E758E3D145F72AFAA38A62E467CFEC59/Taidepaja_Kipina_Baby_Colour_Bath" }, "location_extra_info": null, "name": { "fi": "Taidepaja Kipinä: Vauvojen värikylpy – 4-24 kk ikäisille vauvoille aikuisen kanssa", "sv": "Taidepaja Kipinä: Babyfärgbad – För spädbarn i åldern 4–24 månader i sällskap med en vuxen", "en": "Taidepaja Kipinä: Baby Colour Bath – For babies aged 4–24 months accompanied by an adult" }, "short_description": { "fi": "Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.", "sv": "Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.", "en": "Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult." }, "provider_contact_info": null, "description": { "fi": "<p>Vauvojen värikylpy on vauvaperheille suunnattu moniaistinen taidetyöpaja, jossa tutkitaan ja ihmetellään yhdessä aikuisen kanssa.</p><p>Työskentelyn alussa virittäydytään päivän teemaan erilaisia materiaaleja, taidetta, valoa ja värejä tutkien, mistä edetään itse tuotettuun jälkeen.</p><p>Työpajoissa maaliaineina käytetään turvallisia elintarvikepohjaisia aineita. Yhteen työpajaan mahtuu 9 lapsi-aikuinen paria. Työpaja on suunnattu 4 kk – 2 vuotta täyttäneille. Yksi lippu on tarkoitettu yhdelle aikuinen ja lapsi parille.</p><p>Työpajaa ohjaa koulutettu ohjaaja Ruusu-Maria Lappalainen.</p><p>Kesän Värikylpyjen teemana on: Aurinko</p><p>Lisätiedot:<br>https://taidepajakipina.fi/</p>", "sv": "<p>Babyfärgbad är en multisensorisk konstverkstad för småbarnsfamiljer, där man utforskar och upplever tillsammans med en vuxen.</p><p>I början av arbetet stämmer man in sig i dagens tema genom att undersöka olika material, konst, ljus och färger, varefter man går vidare till eget skapande.</p><p>I verkstäderna används säkra, livsmedelsbaserade färgämnen. I en verkstad ryms 9 barn–vuxen-par. Verkstaden riktar sig till barn i åldern 4 månader till 2 år. En biljett gäller för ett barn och en vuxen tillsammans.</p><p>Verkstaden leds av den utbildade handledaren Ruusu-Maria Lappalainen.</p><p>Sommarens Babyfärgbad är: Solen.</p><p>Mer information: https://taidepajakipina.fi/</p>", "en": "<p>Baby Colour Bath is a multisensory art workshop designed for families with babies, where participants explore and wonder together with an adult.</p><p>At the beginning of the session, participants tune into the day’s theme by exploring different materials, art, light, and colours, after which they move on to creating their own work.</p><p>Safe, food-based substances are used as paints in the workshops. Each workshop can accommodate 9 child–adult pairs. The workshop is intended for children aged 4 months to 2 years. One ticket is for one adult and one child pair.</p><p>The workshop is led by a trained instructor, Ruusu-Maria Lappalainen.</p><p>The theme of the summer Colour Baths is: Sun.</p><p>More information: https://taidepajakipina.fi/</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68325/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67500", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494175, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:31.213517Z", "last_modified_time": "2025-12-10T12:13:31.213538Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781607.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494175/?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-10T12:13:31.123089Z", "last_modified_time": "2026-04-21T05:14:02.007034Z", "date_published": null, "start_time": "2026-05-16T08:00:00Z", "end_time": "2026-05-16T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4E81D44F4ED4BDACF091196616D6C87/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/B4E81D44F4ED4BDACF091196616D6C87/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b></p><p>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?</p><p>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67500/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68492", "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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582286/", "sv": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582286/", "en": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582286/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824208, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T05:13:58.607147Z", "last_modified_time": "2026-04-21T05:13:58.607168Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789849.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824208/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T05:13:58.499865Z", "last_modified_time": "2026-04-21T05:13:58.743159Z", "date_published": null, "start_time": "2026-05-02T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/E967559127533476CBC40FD2396C25BF/Undertale_Musikaali_toiveista_ja_unelmista", "sv": "http://www.malmitalo.fi/sv/evenemang/event/E967559127533476CBC40FD2396C25BF/Undertale_Musikaali_toiveista_ja_unelmista", "en": "http://www.malmitalo.fi/en/events/event/E967559127533476CBC40FD2396C25BF/Undertale_Musikaali_toiveista_ja_unelmista" }, "location_extra_info": null, "name": { "fi": "Undertale – Musikaali toiveista ja unelmista – Rakastetun fanimusikaalin viimeiset esitykset!", "sv": "Undertale – Musikaali toiveista ja unelmista", "en": "Undertale – Musikaali toiveista ja unelmista" }, "short_description": { "fi": "Undertale - Musikaali toiveista ja unelmista on suomalainen faniproduktio, joka perustuu Toby Foxin vuonna 2015 julkaisemaan Undertale-videopeliin." }, "provider_contact_info": null, "description": { "fi": "<p>Undertale - Musikaali toiveista ja unelmista on suomalainen faniproduktio, joka perustuu Toby Foxin vuonna 2015 julkaisemaan Undertale-videopeliin.</p><p>Tarinamme alkaa siitä, kun ihmislapsi nimeltä Frisk putoaa alas Ebottin vuorelta suoraan Alamaailmaan, hirviöiden tyyssijaan. Friskillä on vain yksi toive; löytää tie takaisin kotiin. Mutta matka ei olekaan niin yksinkertainen, sillä vastassa on kaikenlaisia hirviöitä kaikenlaisista elämäntilanteista ja jokaisella on mielipiteensä ihmisistä. Friskin on pysyttävä päättäväisenä, jos mielii selvitä halki Alamaailman, kohdata hirviökuningas Asgore Dreemurr ja päästä hänen ohitseen takaisin ihmisten maailmaan.</p><p>Matkallaan hän kohtaa suuria vaaroja ja jännittäviä tilanteita, mutta myös ystävyyttä, sekä toiveita ja unelmia.</p><p>Kesto: 2 t 15 min, sis 20 min väliajan</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68492/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68491", "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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582285/", "sv": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582285/", "en": "https://www.lippu.fi/event/malmitalo-undertale-musikaali-toiveista-ja-unelmista-malmitalo-21582285/" }, "price": { "fi": "14€", "sv": "14€", "en": "14€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1824207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-21T05:13:58.091984Z", "last_modified_time": "2026-04-21T05:13:58.091999Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789848.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-21T05:13:57.967895Z", "last_modified_time": "2026-04-21T05:13:58.283298Z", "date_published": null, "start_time": "2026-05-02T10: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/451CE90B565765537F42ADD4E0FA81EC/Undertale_Musikaali_toiveista_ja_unelmista", "sv": "http://www.malmitalo.fi/sv/evenemang/event/451CE90B565765537F42ADD4E0FA81EC/Undertale_Musikaali_toiveista_ja_unelmista", "en": "http://www.malmitalo.fi/en/events/event/451CE90B565765537F42ADD4E0FA81EC/Undertale_Musikaali_toiveista_ja_unelmista" }, "location_extra_info": null, "name": { "fi": "Undertale – Musikaali toiveista ja unelmista – Rakastetun fanimusikaalin viimeiset esitykset!", "sv": "Undertale – Musikaali toiveista ja unelmista", "en": "Undertale – Musikaali toiveista ja unelmista" }, "short_description": { "fi": "Undertale - Musikaali toiveista ja unelmista on suomalainen faniproduktio, joka perustuu Toby Foxin vuonna 2015 julkaisemaan Undertale-videopeliin." }, "provider_contact_info": null, "description": { "fi": "<p>Undertale - Musikaali toiveista ja unelmista on suomalainen faniproduktio, joka perustuu Toby Foxin vuonna 2015 julkaisemaan Undertale-videopeliin.</p><p>Tarinamme alkaa siitä, kun ihmislapsi nimeltä Frisk putoaa alas Ebottin vuorelta suoraan Alamaailmaan, hirviöiden tyyssijaan. Friskillä on vain yksi toive; löytää tie takaisin kotiin. Mutta matka ei olekaan niin yksinkertainen, sillä vastassa on kaikenlaisia hirviöitä kaikenlaisista elämäntilanteista ja jokaisella on mielipiteensä ihmisistä. Friskin on pysyttävä päättäväisenä, jos mielii selvitä halki Alamaailman, kohdata hirviökuningas Asgore Dreemurr ja päästä hänen ohitseen takaisin ihmisten maailmaan.</p><p>Matkallaan hän kohtaa suuria vaaroja ja jännittäviä tilanteita, mutta myös ystävyyttä, sekä toiveita ja unelmia.</p><p>Kesto: 2 t 15 min, sis 20 min väliajan</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68491/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67505", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494649, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T11:13:08.471193Z", "last_modified_time": "2026-01-27T11:13:08.471215Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781613.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494649/?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-27T11:13:08.353468Z", "last_modified_time": "2026-04-21T05:13:57.861462Z", "date_published": null, "start_time": "2026-05-02T08:00:00Z", "end_time": "2026-05-02T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E40831796619500107B59BE84D983F17/Annantalon_taidelauantai_Kampilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/E40831796619500107B59BE84D983F17/Annegardens_konstlordagar_Kampilla_I_folks_lyor_", "en": "http://www.annantalo.fi/en/events/event/E40831796619500107B59BE84D983F17/Annantalo_Art_Saturdays_In_the_apartment_" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Kämpillä", "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor", "en": "Annantalo Art Saturdays: In the apartment" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67505/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67502", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494282, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T09:14:28.478001Z", "last_modified_time": "2025-12-22T09:14:28.478017Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781609.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494282/?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-22T09:14:28.365338Z", "last_modified_time": "2026-04-21T05:13:52.993225Z", "date_published": null, "start_time": "2026-04-18T08:00:00Z", "end_time": "2026-04-18T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalon_taidelauantai_Hyvan_unen_apurit", "sv": "http://www.annantalo.fi/sv/evenemang/event/43E96A2C24D12BBA79ECA7FA80313A29/Annegardens_konstlordagar_Medhjalpare_for_god_somn", "en": "http://www.annantalo.fi/en/events/event/43E96A2C24D12BBA79ECA7FA80313A29/Annantalo_Art_Saturdays_Good_sleep_helpers" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Hyvän unen apurit", "sv": "Annegårdens konstlördagar: Medhjälpare för god sömn", "en": "Annantalo Art Saturdays: Good sleep helpers" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Hyvän unen apurit</b></p><p>Mikä avuksi, kun uni ei meinaa tulla ja mielessä pyörii askarruttavia ajatuksia? Tule Annantalon taidelauantaihin rakentamaan pieni tyynyn alle yöksi laitettava nukkekaveri. Guatemalan vuoristossa asuneiden Maya -intiaanien tarinan mukaan nuket murehtivat huolet yön aikana piiloon taaten unennäkijälle rauhalliset yöunet. Nuket tehdään puutikuista ja rautalangasta, eri värisistä langoista ja kangastilkuista. Tule tekemään oma huolinukkesi ja nuku hyvin!</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Medhjälpare för god sömn</b><br>Vad kan hjälpa när du inte kan somna och tankarna snurrar i huvudet? Kom till Annegårdens konstlördagar och bygg en liten dockvän som du kan lägga under kudden till natten. Enligt en berättelse från mayaindianerna i bergen i Guatemala tar dockor hand om alla bekymmer under natten och garanterar en fridfull natts sömn för sovaren. Dockorna tillverkas av träpinnar, järntråd, olikfärgade garner och tygbitar. Kom och gör din egen orosdocka och sov gott!</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Good sleep helpers</b><br>What can you do if you are unable to fall asleep and have things weighing on your mind? Come to Annantalo’s Art Monday to build a little doll friend that you can put under your pillow for the night. According to a Mayan legend from the mountains of Guatemala, such dolls would hide the sleeper’s worries for the night, ensuring a peaceful night’s sleep. The dolls are made from wooden sticks and wire, different coloured yarns and fabric patches. Come make your own worry doll and sleep well!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67502/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67501", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1644063, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-16T15:13:30.779982Z", "last_modified_time": "2026-03-16T15:13:30.780001Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781608.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1644063/?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-03-16T15:13:30.681865Z", "last_modified_time": "2026-04-21T05:13:46.752352Z", "date_published": null, "start_time": "2026-03-28T09:00:00Z", "end_time": "2026-03-28T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki", "sv": "http://www.annantalo.fi/sv/evenemang/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_", "en": "http://www.annantalo.fi/en/events/event/690B72008A53B2F51E3992CB21CB1053/Annantalon_taidelauantai_Tunneduunarin_kunniamerkki_" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "sv": "Annantalon taidelauantai: Tunneduunarin kunniamerkki", "en": "Annantalon taidelauantai: Tunneduunarin kunniamerkki" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Tunneduunarin kunniamerkki</b><br>Työpajassa valmistetaan väripapereista, metallikartongeista ja nauhoista askarrellen upea tunneduunarin arvomerkki. Onko se sinulle, vai haluatko antaa sen jollekulle toiselle, joka myös on ansioitunut tunnetaitotreenissä? Missä merkin saaja on onnistunut?</p><p>Työpaja liittyy Annantalon kahvilan Tunnemuskelit-kuvitusnäyttelyyn ja sen ohjaajana toimii kuvittaja Satu Kettunen.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67501/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67499", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494174, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-10T12:13:27.641592Z", "last_modified_time": "2025-12-10T12:13:27.641607Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781606.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494174/?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-10T12:13:27.550583Z", "last_modified_time": "2026-04-21T05:13:43.804796Z", "date_published": null, "start_time": "2026-03-21T09:00:00Z", "end_time": "2026-03-21T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalon_taidelauantai_Fragmentit_framille", "sv": "http://www.annantalo.fi/sv/evenemang/event/0A69CF3E4C62E3C642C84F140B53111B/Annegardens_konstlordagar_Fram_med_fragmenten", "en": "http://www.annantalo.fi/en/events/event/0A69CF3E4C62E3C642C84F140B53111B/Annantalo_Art_Saturdays_Fragments_to_the_front" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Fragmentit framille", "sv": "Annegårdens konstlördagar: Fram med fragmenten", "en": "Annantalo Art Saturdays: Fragments to the front" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Fragmentit framille</b><br>Annantalon kakkoskerrokseen on ilmestynyt kuvia vanhoista taideteoksista. Millaisia yksityiskohtia taideteoksissa on piilossa? Millaisia kuvia syntyisi, jos yhdistelisimmekin eri teosten palasia?<br>Työpajassa katsotaan taideteoksia tarkasti ja leikitään sommittelulla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Fram med fragmenten</b><br>På Annegårdens andra våning har det dykt upp bilder på gamla konstverk. Vilken typ av detaljer döljer sig i konstverken? Hurdana bilder uppstår om vi kombinerar delar av olika verk?<br>Under verkstaden undersöker vi konstverken noga och leker med kompositionerna.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p><p>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Fragments to the front</b><br>Pictures of old works of art have appeared on the second floor of Annantalo. What kind of details are hidden in the artworks? What kind of images would we get if we were to combine pieces of different works?<br>This workshop involves examining artworks and playing with image composition.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.</p><p>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67506", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494294, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T14:13:41.702341Z", "last_modified_time": "2025-12-22T14:13:41.702356Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781614.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494294/?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-22T14:13:41.590534Z", "last_modified_time": "2026-04-21T05:13:40.641268Z", "date_published": null, "start_time": "2026-03-14T09:00:00Z", "end_time": "2026-03-14T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/32CD792B81F72AF0C4D3C2365500487E/Annantalon_taidelauantai_Poytateatterin_taikaa", "sv": "http://www.annantalo.fi/sv/evenemang/event/32CD792B81F72AF0C4D3C2365500487E/Annegardens_konstlordag_Bordsteaterns_magi", "en": "http://www.annantalo.fi/en/events/event/32CD792B81F72AF0C4D3C2365500487E/Annantalo_Art_Saturday_Magic_of_tabletop_theatre_" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Pöytäteatterin taikaa", "sv": "Annegårdens konstlördag: Bordsteaterns magi", "en": "Annantalo Art Saturday: Magic of tabletop theatre!" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Pöytäteatterin taikaa!</b></p><p>Mitä ihmettä? Linnan puutarha ja piha ovat tyhjillään. Missä kaikki asukkaat ovat? Tule piirtämään ja suunnittelemaan oma hahmosi. Lentääkö linnan puutarhassa perhoset ja linnut? Asuuko linnassa mörkö ja kana, vai joku muu?</p><p>Työpajan ohjaa Anne Lihavainen ja se on osa Bravo! -Festivaalin ohjelmaa Annantalossa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Bordsteaterns magi!</b><br>Men vad nu? Slottets gård och trädgård är helt tomma. Var är alla som brukar bo där? Kom med och rita och designa en egen figur. Flyger det fjärilar och fåglar i slottets trädgård? Bor det ett monster och en höna i slottet, eller kanske någon annan?</p><p>Välkommen att delta i workshoppar och skapa konst!</p><p>Ledare Anne Lihavainen<br>Workshoppen ingår i Bravo! -festivalens program.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>Magic of tabletop theatre</b><br>What on earth? The castle garden and courtyard are all empty. Where are all the residents? Come along to design and draw your own character. Do birds and butterflies fly around the castle garden? Is the castle a home to a bogeyman and a chicken or to something else?</p><p>Join the workshop and make some art!</p><p>Hosted by Anne Lihavainen<br>The workshop is part of the programme of Sampo Festival.</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67506/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67498", "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:30/?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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494291, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T14:13:39.043729Z", "last_modified_time": "2025-12-22T14:13:39.043751Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781605.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494291/?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-22T14:13:38.942892Z", "last_modified_time": "2026-04-21T05:13:37.917782Z", "date_published": null, "start_time": "2026-03-07T09:00:00Z", "end_time": "2026-03-07T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/42996AFC72CDB97F4160456779FFA7A6/Annantalon_taidelauantai_Kampilla", "sv": "http://www.annantalo.fi/sv/evenemang/event/42996AFC72CDB97F4160456779FFA7A6/Annegardens_konstlordagar_Kampilla_I_folks_lyor_", "en": "http://www.annantalo.fi/en/events/event/42996AFC72CDB97F4160456779FFA7A6/Annantalo_Art_Saturdays_In_the_apartment_" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Kämpillä", "sv": "Annegårdens konstlördagar: Kämpillä – I folks lyor", "en": "Annantalo Art Saturdays: In the apartment" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Kämpillä</b></p><p>Kenen koira on karannut naapuriin? Mitä piileskelee ullakolla? Keneltä on unohtunut puurokattila liedelle?</p><p>Annantalon taidelauantain avoimessa työpajassa pääset piirtämään oman huoneen yhteiseen kerrostaloon, jonka ikkunoiden takaa avautuu mitä kummallisempia tapahtumia. Mitä kummaa sinun kämpässäsi tapahtuu? Yhteinen teos jää osaksi Annantalon 2krs käytävän näyttelyä.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Kämpillä – I folks lyor</b><br>Vems hund har sprungit till grannen? Vad är det som gömmer sig på vinden? Vem har glömt grötkastrullen på spisen?</p><p>I den öppna verkstaden under Annegårdens konstlördag kan du rita ditt eget rum i ett gemensamt höghus, där de märkligaste saker händer bakom fönstren. Vad för konstigt händer i din lya? Det gemensamma verket blir en del av utställningen i korridoren på andra våningen i Annegården.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b>In the apartment</b><br>Whose dog has run away and gone next door? What is hiding in the attic? Who forgot their porridge pot on the stove? <br>At this Annantalo Art Monday open workshop, you will get to draw your own room in a shared apartment building, where the strangest things can be seen happening outside through the windows. What strange things are going on in your apartment? The resulting joint work will be featured in an exhibition in the second-floor corridor of Annantalo.</p><p>Annantalo Art Saturday <br>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises. The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.<br>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67498/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67497", "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:30/?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: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:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494645, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-01-27T08:13:00.233390Z", "last_modified_time": "2026-01-27T08:13:00.233410Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781604.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494645/?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-27T08:13:00.144327Z", "last_modified_time": "2026-04-21T05:13:35.275711Z", "date_published": null, "start_time": "2026-02-28T09:00:00Z", "end_time": "2026-02-28T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/230927E0E7D4B562A3BD87B0143473B8/Annantalon_taidelauantai_Nastat_kortit", "sv": "http://www.annantalo.fi/sv/evenemang/event/230927E0E7D4B562A3BD87B0143473B8/Annegardens_konstlordag", "en": "http://www.annantalo.fi/en/events/event/230927E0E7D4B562A3BD87B0143473B8/Annantalo_Art_Saturday_Pin_Me_a_Picture" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Nastat kortit", "sv": "Annegårdens konstlördag", "en": "Annantalo Art Saturday: Pin Me a Picture" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Nastat kortit</b></p><p>Pistele reikiä paperikorttiin luodaksesi kauniita pitsimäisiä kuvioita. Rauhallista ja piikikästä puuhaa!<br> <br>Alle kouluikäisille aikuisen kanssa.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaa Chloé Mahy.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p>Gör hål i ett papperskort för att skapa vackra spetsliknande mönster. En rogivande och lite stickig aktivitet!<br> <br>För barn under 7 år i sällskap av en vuxen.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen led av Chloé Mahy.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Pin Me a Picture</b></p><p>Punch holes on a paper card to create beautiful lacey patterns. Soothing and prickly business!</p><p>For kids under 7 with an adult.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by Chloé Mahy.</p><p>A warm welcome to Annantalo on Saturdays!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67496", "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:30/?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/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494288, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-22T13:14:03.140827Z", "last_modified_time": "2025-12-22T13:14:03.140848Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_781603.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494288/?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-22T13:14:03.023796Z", "last_modified_time": "2026-04-21T05:13:32.375074Z", "date_published": null, "start_time": "2026-02-21T09:00:00Z", "end_time": "2026-02-21T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalon_taidelauantai_Aarrejahti", "sv": "http://www.annantalo.fi/sv/evenemang/event/1F5D550069EF1AB758B5711D7BBA08BD/Annegardens_konstlordagar_Skattjakt", "en": "http://www.annantalo.fi/en/events/event/1F5D550069EF1AB758B5711D7BBA08BD/Annantalo_Art_Saturdays_Treasure_hunt" }, "location_extra_info": null, "name": { "fi": "Annantalon taidelauantai: Aarrejahti", "sv": "Annegårdens konstlördagar: Skattjakt", "en": "Annantalo Art Saturdays: Treasure hunt" }, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "provider_contact_info": null, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Aarrejahti</b></p><p>Mikä on sinun aarteesi? Miten hyvä piilottaja olet? Työpajassa tehdään omalle aarteelle salaperäinen rasia, sekä sen luo johdattava tarunhohtoinen aarrekartta! Pääset piirtämään eri välineillä ja tutkimaan kuinka paperiin loihditaan ajan patinaa. Saat kotiin vietäväksi välineet jännittävään aarrejahtileikkiin.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton ja sopii kaiken kielisille.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p><p>P.S. Annnasalissa vierailee Teatteri Rollo: Köpöttäjät esitys klo 14!</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p><p><b>Skattjakt</b><br>Vad är din skatt? Hur bra är du på att gömma saker? I verkstaden tillverkar du en mystisk låda för din skatt och en sagoomspunnen skattkarta som leder till den! Du får rita med olika redskap och utforska hur man ger papper patina. Du får med dig verktyg hem för en spännande skattjakt.</p><p>Inga förhandskunskaper behövs för att delta, och alla är välkomna. För barn finns hörselskydd och andra sinneshjälpmedel vid behov. Det finns också ett tyst rum. Annegårdens konstlördag är avgiftsfri och passar alla, oavsett vilket språk man talar.<br>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkommen till Annegården på lördagarna!</p><p>P.S. Teatteri Rollo besöker Annansali kl.14 med Köpöttäjät föreställningen ( ordlös)</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p><p><b> Treasure hunt</b><br>What is your treasure? How good are you at hiding things? At this workshop, you will get to make a mysterious box for your treasure and a legendary treasure map that leads to it! You will get to draw with different media and explore how you can create a patina of time on paper. After the workshop, you will have the equipment for an exciting treasure hunt game at home!</p><p>No advance skills are needed to participate, and all are welcome. Hearing protection and other sensory aids are available for children when needed. There is also a quiet room in the premises.</p><p>The Annantalo Art Saturday is free-of-charge and suits participants from all language backgrounds.</p><p>The workshop will be hosted by Annantalo art educators.<br>We look forward to seeing you at Annantalo on Saturdays!</p><p>P.S. In Annansali at 2 pm Köpöttäjät by Teatteri Rollo, a wordless humoristic play.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:ago2wenalu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 1824206, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-03T08:39:11.272697Z", "last_modified_time": "2024-04-03T08:39:11.272719Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/woman-wearing-cute-white-dress-with-ukelele_1.jpg", "name": "", "cropping": "672,0,3359,2688", "photographer_name": "", "alt_text": "ukulele keväisessä maisemassa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-20T12:17:28.008497Z", "last_modified_time": "2026-04-20T12:17:28.008518Z", "date_published": null, "start_time": "2026-05-28T14:00:00Z", "end_time": "2026-05-28T15: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, "info_url": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "name": { "fi": "Ukuleleryhmien kevätkonsertti", "sv": "Ukulele vårkonsert", "en": "Spring concert of ukulele groups" }, "short_description": { "fi": "Tervetuloa kuuntelemaan ukuleleryhmien kevätkonserttia Lippulaivan kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät.", "sv": "Välkommen till ukulelegruppernas vårkonsert på Lippulaivabiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.", "en": "Welcome to the spring concert of ukulele groups on the stage of Lippulaiva library! The concert will be performed by the Espoo City Library's ukulele groups." }, "provider_contact_info": null, "description": { "fi": "<p>Ukuleleryhmien kevätkonsertti Lippulaivan kirjaston Salongissa 28.5 kello 17.00</p><p>Tervetuloa kuuntelemaan ukuleleryhmien kevätkonserttia Lippulaivan kirjaston lavalle! Konsertissa esiintyy Espoon kaupunginkirjaston ukuleleryhmät. Konsertissa kuulemme tunnettuja suomen- ja englanninkielisiä kappaleita. Tilaisuus on yhteislaulutyyppinen ja kaikkien kappaleiden sanat projisoidaan seinään. Konsertin lopuksi soitamme muutaman yhteislaulun, jossa kaikki halukkaat pääsevät soittamaan. Lämpimästi tervetuloa!</p><p>#musiikki #konsertti #ukulele</p>", "sv": "<p>Välkommen till ukulelegruppernas vårkonsert på Lippulaivabiblioteket! Konserten framförs av Esbo stadsbiblioteks ukulelegrupper.</p>", "en": "<p>Welcome to the spring concert of ukulele groups on the stage of Lippulaiva library! The concert will be performed by the Espoo City Library's ukulele groups. You can sing along during the concert. At the end of the concert we will play a few songs together, where everyone can join in. You are warmly welcome!</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:ago2wenalu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }