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&page=121&weekday=6%2C7
{ "meta": { "count": 6602, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=122&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=120&weekday=6%2C7" }, "data": [ { "id": "kulke:66234", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://teatteri.sampofestival.fi/esityskalenteri/", "sv": "https://teatteri.sampofestival.fi/esityskalenteri/", "en": "https://teatteri.sampofestival.fi/esityskalenteri/" }, "price": { "fi": "15€", "sv": "15€", "en": "15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1209731, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T08:12:48.043274Z", "last_modified_time": "2025-07-08T08:12:48.043287Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772898.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1209731/?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-07-08T08:12:47.961263Z", "last_modified_time": "2025-07-08T08:12:48.180178Z", "date_published": null, "start_time": "2025-08-30T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Astu sisään löytöretkelle varjojen maailmaan.", "sv": "Kom med på en upptäcktsfärd i skuggornas värld.", "en": "A discovery tour into the world of shadows" }, "description": { "fi": "<p>Astu sisään löytöretkelle varjojen maailmaan.</p><p>Matka lumotun kaupungin läpi johdattaa meidät hyvin erityiseen huoneeseen. Sen seinät ovat valkoista kangasta ja keskellä on pöytä, pieni piano, erilaisia esineitä ja kaksi taskulamppua. Yhtäkkiä valo muuttuu ja kaksi näyttelijää johdattaa meidät varjojen taianomaiseen maailmaan. Näillä yllättävillä poluilla fysiikan lait eivät päde ja kaikki odotukset menevät päälaelleen.<br> <br>Varjot tulevat takaapäin ja varastavat tavaramme! Arkisten esineiden varjot alkavat yhtäkkiä elää omaa elämäänsä esittäen omaa pientä vapauden tanssiaan. Ne pitenevät ja kutistuvat, jakautuvat ja yhdistyvät! Jopa näyttelijän varjot moninkertaistuvat ja käyvät vuoropuhelua. Varjoista tulee sellaisia, mitä ne aina kuvittelivat olevansa. Kehoista tulee varjoja, varjoista kehoja, ja yhtäkkiä yksin oleminen onkin paljon vähemmän yksinäistä.</p><p>Varjoseikkailu ei ole mikään tavallinen varjoteatteriteos. Se on oodi mielikuvituksen voimalle! Se kertoo varjon ja kehon välisestä suhteesta ja vuoropuhelusta ja kyseenalaistaa siten leikkisästi varjon roolia. Se kiinnittää huomiomme tähän mustaan, outoon olentoon, joka seuraa meitä kaikkialle, tarttuu jalkoihimme kuin purukumi. Sitä emme voi paeta, vaikka olisimme supernopeita.</p><p>Esitys voitti Fox-palkinnon innovaatiosta nukketeatterissa vuonna 2020 HIP-festivaaleilla Hvammstangissa/Islannissa ja oli Augenblick mal! 2021-palkinnon ehdokaslistalla.</p><p>Työryhmä: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes<br>Kesto: 35 minuuttia<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Yhteistuotannossa Osnabrückin nukketeatterin kanssa<br>Landesverband Freie Tanz und Theaterschaffende Baden-Württemberg e.V. Baden-Württembergin tiede-, tutkimus- ja taideministeriön rahoittamana</p>", "sv": "<p>Kom med på en upptäcktsfärd i skuggornas värld.</p><p>Resan genom en förtrollad stad leder oss till ett väldigt speciellt rum. Dess väggar är av vitt tyg och mitt i rummet står ett bord, ett litet piano, olika föremål och två ficklampor. Plötsligt förändras ljuset, och två skådespelare leder oss in i skuggornas magiska värld. På dessa överraskande stigar gäller inte fysikens lagar, och alla förväntningar ställs på ända.</p><p>Skuggorna kommer bakifrån och stjäl våra saker! Vardagsföremålens skuggor börjar plötsligt leva sitt eget liv och framföra en liten frihetsdans. De växer och krymper, delar på sig och slår ihop sig. Till och med skådespelarnas skuggor blir mångdubbelt fler och talar med varandra. Skuggorna blir sådana som de föreställer sig att de är. Kropparna blir skuggor, skuggorna kroppar, och plötsligt är det mycket mindre ensamt att vara ensam.</p><p>Skuggäventyret är inget vanligt skuggteaterverk. Det är ett ode till fantasins kraft! Det berättar om relationen och dialogen mellan skuggan och kroppen och ifrågasätter på ett lekfullt sätt skuggans roll. Den uppmärksammar oss på den här märkliga mörka varelsen som följer oss överallt och sitter fast i våra fötter som ett tuggummi. Vi kan inte fly från den, fastän vi skulle vara supersnabba.</p><p>Föreställningen tilldelades Fox-priset för innovation inom dockteatern vid HIP-festivalen i Hvammstangi, Island 2020 och var nominerad till Augenblick mal! 2021-priset.<br>Arbetsgrupp: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes</p><p>Längd: 35 minuter<br>Åldersrekommendation: 4 +<br>Språk: ordlöst</p><p>Samproduktion med Osnabrücks dockteater<br>Landesverband Freie Tanz und Theaterschaffende Baden-Württemberg e.V. Finansierad av Baden-Württembergs ministerium för vetenskap, forskning och konst</p>", "en": "<p>A discovery tour into the world of shadows</p><p>A Trip through an enchanted City leads us to a very special chamber. Three white Canvases are creating a room and space for projections. Inside the Chamber, a table, a small Piano, some objects and two flashlights. Suddenly the light changes and two puppetry players lead us on surprising paths into the magical universe of shadows. Laws of Physics don´t apply, expectations are crossed.</p><p>Shadows entering through the backdoor and stealing our Stuff! Everyday object shadows are running wild for their own little dance of freedom. They are getting bigger, and smaller, they split and they merge. Even the puppeteers' shadows multiply and are creating a dialogue. Shadows become whatever they imagined to be. Shadows become bodies, bodies become shadows and then for a second being alone feels a lot less lonely.</p><p>”Schattenwerfer“ isn't your everyday Shadow Piece. It’s an ode to the power of Imagination! It’s about the relationship and the dialogue between a Shadow and his Body, and questions playfully the hierarchy of this relation. It sharpens our view for these black strange things that follow us everywhere and stick to our feet like gum, that we can´t run away from even if we are superfast.</p><p>Team: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes<br>Duration: 35 Minutes<br>Age recommendation: 4+<br>Nonverbal</p><p>In co-production with Puppet theatre Osnabrück<br>Grant-aided by the Landesverband Freie Tanz und Theaterschaffende Baden- Württemberg e.V. with money from the Ministery for Science, Research and Art Baden- Württemberg</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5EBEC376C67D0B58B70DEB78ECA0A93/TANGRAM_Kollektiv_DE_Varjoseikkailu_Schattenwerfer", "sv": "http://www.annantalo.fi/sv/evenemang/event/B5EBEC376C67D0B58B70DEB78ECA0A93/TANGRAM_Kollektiv_DE_Skuggaventyret_Schattenwerfer", "en": "http://www.annantalo.fi/en/events/event/B5EBEC376C67D0B58B70DEB78ECA0A93/TANGRAM_Kollektiv_Germany_Shades_of_Shadows_Schattenwerfer" }, "name": { "fi": "TANGRAM Kollektiv (DE): Varjoseikkailu – Schattenwerfer – Sampo Festivaali 2025", "sv": "TANGRAM Kollektiv (DE): Skuggäventyret – Schattenwerfer – Sampo-festivalen 2025", "en": "TANGRAM Kollektiv (Germany): Shades of Shadows – Schattenwerfer – Sampo Festival 2025" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 992192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-11T06:12:36.928690Z", "last_modified_time": "2025-06-11T06:12:36.928710Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765240.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/992192/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-11T06:12:36.873533Z", "last_modified_time": "2025-07-08T08:12:47.794167Z", "date_published": null, "start_time": "2025-08-30T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Laulaja Riikka Keränen ja pianisti Juho Valjakka esittävät Reidar Särestöniemen taiteesta ja elämästä innoituksensa saanutta, uutta jazzmusiikkia.", "sv": "Sångaren Riikka Keränen och pianisten Juho Valjakka framför ny jazzmusik inspirerad av Reidar Särestöniemis konst och liv.", "en": "Singer Riikka Keränen and pianist Juho Valjakka perform new jazz music inspired by the art and life of artist Reidar Särestöniemi." }, "description": { "fi": "<p>Laulaja Riikka Keränen ja pianisti Juho Valjakka esittävät Reidar Särestöniemen taiteesta ja elämästä innoituksensa saanutta, uutta jazzmusiikkia.</p><p>100-vuotisjuhlavuottaan viettävän Särestöniemen vaikuttava värien käyttö ja perinteisistä metodeista poikkeavat maalaustekniikat ovat inspiroineet duoa kokeilemaan erilaisten, jazzmusiikin konventioita haastavien harmonioiden ja tekstuurien käyttöä uusien sävellyksiensä tulkinnassa. <br> <br>On Canvas-konsertissa Keräsen lämmin ääni, Valjakan hienostunut sävelkieli ja heidän valloittava yhteissoittonsa vievät kuulijan matkalle lumoavien, musiikillisten sävyjen maailmaan.</p><p>Vuonna 2022 debyyttialbuminsa julkaisseet Riikka Keränen (A Vision of a Garden) ja Juho Valjakka (Liminal Spaces) kuuluvat suomalaisen musiikkikentän vaikuttavimpiin, nouseviin jazzartisteihin. Oman kokoonpanonsa lisäksi Keränen on tunnettu mm. yhtyeistä Signe ja Megasakki, ja Valjakkaa on puolestaan voinut kuulla johtamansa Juho Valjakka Trion ohella mm. Lassy–Eskola Nordic Stew’n sekä UMO Helsinki Jazz Orchestran riveissä.</p><p>Riikka Keränen – laulu <br> Juho Valjakka – piano</p>", "sv": "<p>Sångaren Riikka Keränen och pianisten Juho Valjakka framför ny jazzmusik inspirerad av Reidar Särestöniemis konst och liv.</p><p>Särestöniemi, som firar 100-års jubileum, använde färger och målningstekniker på ett imponerande sätt som avviker från traditionella metoder, vilket har inspirerat duon att experimentera med olika harmonier och texturer som utmanar jazzmusikens konventioner i tolkningen av sina nya kompositioner.</p><p>I konserten On Canvas hör vi Keränens varma röst, Valjakkas sofistikerade tonspråk och deras fängslande samspel, som tar lyssnaren på en resa till en värld av förtrollande, musikaliska nyanser.</p><p>Riikka Keränen och Juho Valjakka som gav ut sina debutalbum 2022 (Keränen: A Vision of a Garden, Valjakka: Liminal Space) hör till de mest imponerande, stigande jazzartisterna på det finländska musikfältet. Utöver sin egen sammansättning är Keränen känd från bland annat banden Signe och Megasakki, och Valjakka har vi förutom i Juho Valjakka Trio, som han leder, kunnat höra i bland annat Lassy-Eskola Nordic Stew och UMO Helsinki Jazz Orchestra.</p><p>Riikka Keränen – sång<br>Juho Valjakka – piano</p>", "en": "<p>Singer Riikka Keränen and pianist Juho Valjakka perform new jazz music inspired by the art and life of artist Reidar Särestöniemi.</p><p>Singer Riikka Keränen and pianist Juho Valjakka perform new jazz music inspired by the art and life of artist Reidar Särestöniemi. <br>A full hundred years after Särestöniemi’s birth, his impressive use of colour and painting techniques that differ from the traditional methods have inspired this duo to experiment with different harmonies and textures that challenge the conventions of jazz music and use them to express their new compositions.</p><p>In the On Canvas concert, the warm voice of Keränen, the delicate musical language of Valjakka and their captivating shared performance take the audience on a journey through an enchanting musical world.</p><p>After releasing their debut albums in 2022, Riikka Keränen (A Vision of a Garden) and Juho Valjakka (Liminal Spaces) have become some of the most impressive, rising jazz artists in the Finnish music scene. In addition to her own ensemble, Keränen is known from bands such as Signe and Megasakki, while Valjakka is familiar from his own Juho Valjakka Trio and many other ensembles, such as Lassy–Eskola Nordic Stew and UMO Helsinki Jazz Orchestra.</p><p>Riikka Keränen – vocals<br> Juho Valjakka – piano</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/84BFAE903246970B24B780E450960B82/Riikka_Keranen_Juho_Valjakka_On_Canvas", "sv": "http://www.espanlava.fi/sv/evenemang/event/84BFAE903246970B24B780E450960B82/Riikka_Keranen_Juho_Valjakka_On_Canvas", "en": "http://www.espanlava.fi/en/events/event/84BFAE903246970B24B780E450960B82/Riikka_Keranen_Juho_Valjakka_On_Canvas" }, "name": { "fi": "Riikka Keränen / Juho Valjakka – On Canvas – Espan lavan kauden päättäjäiset", "sv": "Riikka Keränen / Juho Valjakka – On Canvas – Säsongavslutning på Esplanadestraden", "en": "Riikka Keränen / Juho Valjakka – On Canvas – Espa Stage season’s closing party" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66354", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1146924, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-30T09:12:54.656199Z", "last_modified_time": "2025-06-30T09:12:54.656224Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773553.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1146924/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-30T09:12:54.515705Z", "last_modified_time": "2025-07-08T07:12:50.093362Z", "date_published": null, "start_time": "2025-11-08", "end_time": "2025-12-29", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Linda Bondestam loihtii kuvitusnäyttelyynsä jotain aivan uutta, mutta esillä on myös jotain vanhaa, varsin ajankohtaista ja ehdottomasti myös yllättävää!", "sv": "Linda Bondestam skapar något alldeles nytt till sin illustrationsutställning, men visar även något gammalt, något mycket aktuellt och något verkligen överraskande!", "en": "Linda Bondestam conjures up something entirely new for her illustration exhibition, but there will also be something old, surprisingly timely and most definitely unexpected!" }, "description": { "fi": "<p>Linda Bondestam loihtii kuvitusnäyttelyynsä jotain aivan uutta, mutta esillä on myös jotain vanhaa, varsin ajankohtaista ja ehdottomasti myös yllättävää!</p><p>”Hahmot vain syntyvät, kun minulla on paperi edessä ja kynä kädessä. En edes tiedä, mistä ne tulevat. Joskus istun vaikkapa junassa, katson keitä kanssani matkustaa ja piirrän salaa.”, Linda kertoo. <br> <br>Piirtämisen lisäksi Linda maalaa sekä käyttää vesivärejä ja liituja. Sen jälkeen hän jatkaa työstäen kuvat tietokoneella valmiiksi teoksiksi. Hänen mielestään lastenkirjallisuudessa pitää olla moninaisuutta, siksi hän miettii paljon sitä, keille antaa näkyvyyttä kirjoissaan. Linda uskaltaa käsitellä ihmisen toiminnan synkkiä vaikutuksia maapallollamme, kuvittaen kirjoihinsa kuitenkin lempeää toivoa paremmasta maailmasta.<br> <br>Linda Bondestam (s. 1977) on yksi Pohjoismaiden merkittävimmistä lastenkirjojen tekijöistä. Hänen kuvittamansa teokset on usein julkaistu samaan aikaan sekä ruotsiksi että suomeksi. Lisäksi hänen kuvittamiaan kirjoja on käännetty parillekymmenelle kielelle. Bondestam on palkittu muun muassa Pohjoismaiden neuvoston lasten- ja nuortenkirjapalkinnolla, ja hän on saanut lukuisia palkintoehdokkuuksia niin Suomessa kuin Ruotsissa. Vuonna 2024 Linda Bondestam voitti merkittävän ruotsalaisen August-palkinnon lasten- ja nuortenkirjallisuuden sarjan teoksellaan Chop chop. En tapper jordbos berättelse (Förlaget 2024). Hopi hopi. Reippaan robotin tarina. (Teos 2024). <br> <br>Lainaus Linda Bondestamin haastattelusta Suomen Kuvalehdessä 25.1.2025.</p>", "sv": "<p>Linda Bondestam skapar något alldeles nytt till sin illustrationsutställning, men visar även något gammalt, något mycket aktuellt och något verkligen överraskande!</p><p>”Figurerna bara uppstår när jag har papper framför mig och penna i handen. Jag vet inte ens var de kommer ifrån. Ibland sitter jag till exempel på tåget, kollar vem som reser med mig och tecknar i all hemlighet”, berättar Linda. <br> <br>Förutom att rita, målar Linda och använder vattenfärger och kritor. Sen fortsätter hon bearbeta bilderna på dator tills de är färdiga. Enligt henne ska det finnas mångfald i barnlitteraturen, och därför funderar hon mycket på vem som ska ges synlighet i hennes böcker. Linda vågar ta itu med de dystra konsekvenserna av mänsklig verksamhet på vår planet, men föreställer sig ändå behaglig förhoppning om en bättre värld.</p><p>Linda Bondestam (f. 1977) är en av de viktigaste barnboksskaparna i Norden. De verk som hon illustrerats har ofta publicerats samtidigt på både svenska och finska. Dessutom har de böcker som hon har illustrerat översatts till tjugo språk. Bondestam har prisbelönats bland annat med nordiskt rådets barn- och ungdomsbokpris och har fått flera priskandidater såväl i Finland som i Sverige. År 2024 vann Linda Bondestam det betydande svenska August-priset i barn- och ungdomslitteraturens serie med sitt verk Chop chop. En tapper jordbos berättelse (Förlaget 2024). Hopi hopi. Reippaan robotin tarina. (Teos 2024). <br> <br>*Citat från intervjun med Linda Bondestam i Suomen Kuvalehti 25.1.2025.</p>", "en": "<p>Linda Bondestam conjures up something entirely new for her illustration exhibition, but there will also be something old, surprisingly timely and most definitely unexpected!</p><p>\"The characters just appear when I have a piece of paper in front of me and a pencil in hand. I do not even know where they come from. Sometimes while sitting on a train, I watch my fellow passengers and secretly sketch them,\" says Linda.*</p><p>In addition to drawing, Linda also paints and uses watercolours and pastels. She then continues working on the images digitally to finalise her pieces. She believes that children's literature must embrace diversity, which is why she gives careful thought to whose stories are seen and heard in her books. Linda is not afraid to explore the darker effects of human activity on our planet, but she always includes a gentle thread of hope for a better world through her illustrations.</p><p>Linda Bondestam (b. 1977) is one of the most prominent creators of children's books in the Nordic countries. The books she has illustrated have often been published simultaneously in both Swedish and Finnish. In addition, her illustrated works have been translated into around twenty languages. Bondestam has received numerous awards, including the Nordic Council's Children and Young People's Literature Prize, and she has been nominated for several prestigious awards in both Finland and Sweden. In 2024, Linda Bondestam won the esteemed Swedish August Prize in the children's and young adult literature category with her book Chop Chop. En tapper jordbos berättelse (Förlaget, 2024). Hopi hopi. Reippaan robotin tarina. (Teos, 2024).</p><p>*Quote from Linda Bondestam's interview in Suomen Kuvalehti, 25 January 2025.</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/DF411E49AC730B2E25D693B2DA03F2A0/Linda_Bondestam_Hopi_hopi_-_toivoa_paremmasta_maailmasta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/DF411E49AC730B2E25D693B2DA03F2A0/Linda_Bondestam_Hopi_hopi_-_med_hopp_om_en_battre_varld", "en": "http://www.kanneltalo.fi/en/events/event/DF411E49AC730B2E25D693B2DA03F2A0/Linda_Bondestam_Chop_chop_Hope_for_a_Better_World" }, "name": { "fi": "Linda Bondestam: Hopi hopi - toivoa paremmasta maailmasta", "sv": "Linda Bondestam: Hopi hopi - med hopp om en bättre värld", "en": "Linda Bondestam: Chop chop – Hope for a Better World" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66354/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66235", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://teatteri.sampofestival.fi/esityskalenteri/", "sv": "https://teatteri.sampofestival.fi/esityskalenteri/", "en": "https://teatteri.sampofestival.fi/esityskalenteri/" }, "price": { "fi": "15€", "sv": "15€", "en": "15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1209404, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T07:12:45.479885Z", "last_modified_time": "2025-07-08T07:12:45.479899Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772897.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1209404/?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-07-08T07:12:45.383419Z", "last_modified_time": "2025-07-08T07:12:45.593808Z", "date_published": null, "start_time": "2025-08-30T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Astu sisään löytöretkelle varjojen maailmaan.", "sv": "Kom med på en upptäcktsfärd i skuggornas värld.", "en": "A discovery tour into the world of shadows" }, "description": { "fi": "<p>Astu sisään löytöretkelle varjojen maailmaan.</p><p>Matka lumotun kaupungin läpi johdattaa meidät hyvin erityiseen huoneeseen. Sen seinät ovat valkoista kangasta ja keskellä on pöytä, pieni piano, erilaisia esineitä ja kaksi taskulamppua. Yhtäkkiä valo muuttuu ja kaksi näyttelijää johdattaa meidät varjojen taianomaiseen maailmaan. Näillä yllättävillä poluilla fysiikan lait eivät päde ja kaikki odotukset menevät päälaelleen.</p><p>Varjot tulevat takaapäin ja varastavat tavaramme! Arkisten esineiden varjot alkavat yhtäkkiä elää omaa elämäänsä esittäen omaa pientä vapauden tanssiaan. Ne pitenevät ja kutistuvat, jakautuvat ja yhdistyvät! Jopa näyttelijän varjot moninkertaistuvat ja käyvät vuoropuhelua. Varjoista tulee sellaisia, mitä ne aina kuvittelivat olevansa. Kehoista tulee varjoja, varjoista kehoja, ja yhtäkkiä yksin oleminen onkin paljon vähemmän yksinäistä.</p><p>Varjoseikkailu ei ole mikään tavallinen varjoteatteriteos. Se on oodi mielikuvituksen voimalle! Se kertoo varjon ja kehon välisestä suhteesta ja vuoropuhelusta ja kyseenalaistaa siten leikkisästi varjon roolia. Se kiinnittää huomiomme tähän mustaan, outoon olentoon, joka seuraa meitä kaikkialle, tarttuu jalkoihimme kuin purukumi. Sitä emme voi paeta, vaikka olisimme supernopeita.</p><p>Esitys voitti Fox-palkinnon innovaatiosta nukketeatterissa vuonna 2020 HIP-festivaaleilla Hvammstangissa/Islannissa ja oli Augenblick mal! 2021-palkinnon ehdokaslistalla.</p><p>Työryhmä: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes<br>Kesto: 35 minuuttia<br>Ikäsuositus: 4+<br>Kieli: sanaton</p><p>Yhteistuotannossa Osnabrückin nukketeatterin kanssa<br>Landesverband Freie Tanz und Theaterschaffende Baden-Württemberg e.V. Baden-Württembergin tiede-, tutkimus- ja taideministeriön rahoittamana</p>", "sv": "<p>Kom med på en upptäcktsfärd i skuggornas värld.</p><p>Resan genom en förtrollad stad leder oss till ett väldigt speciellt rum. Dess väggar är av vitt tyg och mitt i rummet står ett bord, ett litet piano, olika föremål och två ficklampor. Plötsligt förändras ljuset, och två skådespelare leder oss in i skuggornas magiska värld. På dessa överraskande stigar gäller inte fysikens lagar, och alla förväntningar ställs på ända.</p><p>Skuggorna kommer bakifrån och stjäl våra saker! Vardagsföremålens skuggor börjar plötsligt leva sitt eget liv och framföra en liten frihetsdans. De växer och krymper, delar på sig och slår ihop sig. Till och med skådespelarnas skuggor blir mångdubbelt fler och talar med varandra. Skuggorna blir sådana som de föreställer sig att de är. Kropparna blir skuggor, skuggorna kroppar, och plötsligt är det mycket mindre ensamt att vara ensam.</p><p>Skuggäventyret är inget vanligt skuggteaterverk. Det är ett ode till fantasins kraft! Det berättar om relationen och dialogen mellan skuggan och kroppen och ifrågasätter på ett lekfullt sätt skuggans roll. Den uppmärksammar oss på den här märkliga mörka varelsen som följer oss överallt och sitter fast i våra fötter som ett tuggummi. Vi kan inte fly från den, fastän vi skulle vara supersnabba.</p><p>Föreställningen tilldelades Fox-priset för innovation inom dockteatern vid HIP-festivalen i Hvammstangi, Island 2020 och var nominerad till Augenblick mal! 2021-priset.</p><p>Arbetsgrupp: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes<br>Längd: 35 minuter<br>Åldersrekommendation: 4 +<br>Språk: ordlöst</p><p>Samproduktion med Osnabrücks dockteater<br>Landesverband Freie Tanz und Theaterschaffende Baden-Württemberg e.V. Finansierad av Baden-Württembergs ministerium för vetenskap, forskning och konst</p>", "en": "<p>A discovery tour into the world of shadows</p><p>A Trip through an enchanted City leads us to a very special chamber. Three white Canvases are creating a room and space for projections. Inside the Chamber, a table, a small Piano, some objects and two flashlights. Suddenly the light changes and two puppetry players lead us on surprising paths into the magical universe of shadows. Laws of Physics don´t apply, expectations are crossed.</p><p>Shadows entering through the backdoor and stealing our Stuff! Everyday object shadows are running wild for their own little dance of freedom. They are getting bigger, and smaller, they split and they merge. Even the puppeteers' shadows multiply and are creating a dialogue. Shadows become whatever they imagined to be. Shadows become bodies, bodies become shadows and then for a second being alone feels a lot less lonely.</p><p>”Schattenwerfer“ isn't your everyday Shadow Piece. It’s an ode to the power of Imagination! It’s about the relationship and the dialogue between a Shadow and his Body, and questions playfully the hierarchy of this relation. It sharpens our view for these black strange things that follow us everywhere and stick to our feet like gum, that we can´t run away from even if we are superfast.</p><p>Team: Sarah Chaudon, Clara Palau y Herrero, Tobias Tönjes<br>Duration: 35 Minutes<br>Age recommendation: 4+<br>Nonverbal</p><p>In co-production with Puppet theatre Osnabrück<br>Grant-aided by the Landesverband Freie Tanz und Theaterschaffende Baden- Württemberg e.V. with money from the Ministery for Science, Research and Art Baden- Württemberg</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7E9A494F85EEF1DB3E24A6FBFF166C9E/TANGRAM_Kollektiv_DE_Varjoseikkailu_Schattenwerfer", "sv": "http://www.annantalo.fi/sv/evenemang/event/7E9A494F85EEF1DB3E24A6FBFF166C9E/TANGRAM_Kollektiv_DE_Skuggaventyret_Schattenwerfer", "en": "http://www.annantalo.fi/en/events/event/7E9A494F85EEF1DB3E24A6FBFF166C9E/TANGRAM_Kollektiv_Germany_Shades_of_Shadows_-_Schattenwerfer" }, "name": { "fi": "TANGRAM Kollektiv (DE): Varjoseikkailu – Schattenwerfer – Sampo Festivaali 2025", "sv": "TANGRAM Kollektiv (DE): Skuggäventyret – Schattenwerfer – Sampo-festivalen 2025", "en": "TANGRAM Kollektiv (Germany): Shades of Shadows - Schattenwerfer – Sampo Festival 2025" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66235/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65866", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/name-20145515", "sv": "https://www.lippu.fi/event/name-20145515", "en": "https://www.lippu.fi/event/name-20145515" }, "price": { "fi": "29,90€", "sv": "29,90€", "en": "29,90€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1178695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-04T09:13:58.472137Z", "last_modified_time": "2025-07-04T09:13:58.472154Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767736.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-04T09:13:58.373254Z", "last_modified_time": "2025-07-08T06:14:04.661926Z", "date_published": null, "start_time": "2025-10-18T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kotimainen Emma Salokoski Voices yhdistää voimansa brittiläisen The Spooky Men’s Chorale -kuoron kanssa ja tuo kiertuneensa myös Kannelmäkeen!", "sv": "Inhemska Emma Salokoski Voices förenar sina krafter med den brittiska kören The Spooky Men s Chorale och kommer även på turné till Gamlas!", "en": "The Finnish group Emma Salokoski Voices joins forces with the British choir The Spooky Men's Chorale and brings their tour to Kannelmäki!" }, "description": { "fi": "<p>Kotimainen Emma Salokoski Voices yhdistää voimansa brittiläisen The Spooky Men’s Chorale -kuoron kanssa ja tuo kiertuneensa myös Kannelmäkeen!</p><p>Viime syksynä kuorot tekivät menestyskiertueen Suomessa ja nyt on uusinnan paikka! Kuorolaulun yhteisöllisyyttä, kotimaisen ja ulkomaisen kulttuurin yhdistymistä, sekä laulun voimaa - tämä on koettava paikan päällä!</p><p>Spooky Men's Chorale on valtava, jyrisevä, höyrykäyttöinen ja mustiin vaatteisiin pukeutunut kuoro, joka vahingossa kykenee saamaan yleisön silmät kostumaan tai kehot hykertelemään iloiseen riemuun. Spooky Men -yhtye pyrkii kommentoimaan nykyaikaisen miehen absurdiutta ja suuruutta, aseenaan vain lauluääni, hatut ja kokoelma kasvokarvoitusta.</p><p>Emma Salokoski Voices on lauluyhtye, kuoro ja kollektiivi, joka tekee musiikkia ennakkoluulottomasti ja genrerajoja rikkoen.<br>Alun perin Kuorosota -ohjelmaan perustettu Emma Salokoski Voices julkaisi syksyllä 2024 ensimmäisen levynsä. Levy koostuu kuorolle tilatuista uusista sävellyksistä suomalaiseen runouteen.</p><p>Kesto: 1 tunti 50 min (sisältäen väliajan)</p>", "sv": "<p>Inhemska Emma Salokoski Voices förenar sina krafter med den brittiska kören The Spooky Men s Chorale och kommer även på turné till Gamlas!</p><p>Förra hösten gjorde körerna en framgångsrik turné i Finland och nu är det dags för en repris! Körsångens gemenskap, sammanslagningen av den inhemska och den utländska kulturen samt sångens kraft – detta måste upplevas på plats!</p><p>Spooky Men's Chorale är enorm, dundrande, ångdriven kör klädd i svarta kläder som av misstag kan få publikens ögon att tåras eller deras kroppar att skaka av skratt. Spooky Men strävar efter att kommentera den moderna mannens absurditet och storhet, med endast sångrösten, hattar och en samling ansiktshår som vapen. Emma Salokoski Voices är en sånggrupp, en kör och ett kollektiv som skapar musik utan fördomar och bryter mot genrens gränser. Emma Salokoski Voices, som ursprungligen grundades för tv-programmet Kuorosota, gav hösten 2024 ut sin första skiva. Skivan består av nya kompositioner av finländsk poesi som beställts för kören.</p><p>Längd: 1 timme 50 min. (inklusive paus)</p>", "en": "<p>The Finnish group Emma Salokoski Voices joins forces with the British choir The Spooky Men's Chorale and brings their tour to Kannelmäki!</p><p>Last autumn, the choirs had a hugely successful tour in Finland, and now it is time for a much-awaited encore! Experience the communal power of choral singing, the fusion of domestic and international culture and the power of song – this must be felt in person!</p><p>The Spooky Men's Chorale is a massive, thunderous, steam-powered choir clad in black, which accidentally manages to make the audience either tear up or giggle with joyous delight. The Spooky Men's Chorale seeks to comment on the absurdity and grandeur of the modern man, armed only with their voices, hats and a variety of facial hair. Emma Salokoski Voices is a vocal ensemble, choir and collective that creates music boldly, breaking genre boundaries. Originally formed for the TV show Kuorosota (\"Choir Wars\"), Emma Salokoski Voices released its debut album in autumn 2024. The album features newly commissioned choral compositions of Finnish poetry.</p><p>Duration: Duration: 1 hour 50 minutes (incl. intermission)</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D0298E257E58E1C95E3DA49FF5C961FE/Emma_Salokoski_Voices_A_Spooky_Men_s_Chorale_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D0298E257E58E1C95E3DA49FF5C961FE/Emma_Salokoski_Voices_A_Spooky_Men_s_Chorale_", "en": "http://www.kanneltalo.fi/en/events/event/D0298E257E58E1C95E3DA49FF5C961FE/Emma_Salokoski_Voices_A_Spooky_Men_s_Chorale_" }, "name": { "fi": "Emma Salokoski Voices + A Spooky Men's Chorale", "sv": "Emma Salokoski Voices + A Spooky Men's Chorale", "en": "Emma Salokoski Voices + A Spooky Men's Chorale" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65866/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66232", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets", "sv": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets", "en": "https://teatteri.sampofestival.fi/__/sampo-festival-2025-kaunasin-nukketeatteri-leijona-ja-lintu-the-lion-and-the-bird/#tribe-tickets" }, "price": { "fi": "15€", "sv": "15€", "en": "15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T14:14:09.600307Z", "last_modified_time": "2025-07-07T14:14:09.600323Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772892.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203858/?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-07-07T14:14:09.464923Z", "last_modified_time": "2025-07-07T14:14:09.786922Z", "date_published": null, "start_time": "2025-08-29T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.", "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård.", "en": "A Puppet Theatre Performance About True and Genuine Friendship." }, "description": { "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan.</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>", "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård.</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.<br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>", "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship.</p><p>One day, Lion finds an injured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p>Director: Kata Csató<br>Scenographer & puppet artist– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/938EE5AE10D3B849B83DF17013505232/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis", "sv": "http://www.annantalo.fi/sv/evenemang/event/938EE5AE10D3B849B83DF17013505232/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis", "en": "http://www.annantalo.fi/en/events/event/938EE5AE10D3B849B83DF17013505232/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_" }, "name": { "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025", "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025", "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22n6pm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n3ji/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n3xu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n4ue/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n5dm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n5se/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n6au/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfi24wim/?format=api" } ], "images": [ { "id": 151294, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-05-22T11:46:30.237501Z", "last_modified_time": "2024-05-22T11:46:30.237522Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/biisity%C3%B6paja.jpg", "name": "", "cropping": "517,0,2583,2066", "photographer_name": "", "alt_text": "nuori tekee omaa musiikkia. Kitara, tietokone ja piano", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151294/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-07T11:12:04.980828Z", "last_modified_time": "2025-07-07T11:12:04.980845Z", "date_published": null, "start_time": "2025-09-10T14:00:00Z", "end_time": "2025-12-03T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Osallistuminen on maksutonta." }, "description": { "fi": "<p>Oletko aina halunnut tehdä oman kappaleen tai biitin, mutta et tiedä miten lähteä liikkeelle? Nyt siihen on oiva apu, nimittäin Tapiolan kirjaston nuortentilassa järjestetään biisipaja nuorille. Työvälineenä käytämme iPadeja ja syntetisaattorieta. Teemme myös sanoituksia valmistuneisiin biitteihin. Tapahtumaan ei ole ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p><br></p><p>Biisipaja järjestetään syksyn aikana seitsemän kertaa joka toinen keskiviikko klo 17.00-18.00</p><p>10.9, 24.9, 8.10, 22.10, 5.11, 19.11 ja 3.12</p><p><br></p><p>#musiikki #biisi #kappale #työpaja</p>" }, "info_url": null, "name": { "fi": "Biisityöpaja nuorille" }, "provider_contact_info": null, "location_extra_info": { "fi": "nuortentila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n6pm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22n66a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?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:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oafu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oasq/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-07T10:40:30.645221Z", "last_modified_time": "2025-07-07T10:45:20.290722Z", "date_published": null, "start_time": "2025-07-10T14:00:00Z", "end_time": "2025-12-18T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tule oppimaan ja pelaamaan Ligrettoa.", "sv": "Kom och lär dig och spela Ligretto.", "en": "Come learn and play the Ligretto." }, "description": { "fi": "<p>Haluatko pelata Ligrettoa?</p><p>Tai haluatko oppia pelaamaan Ligrettoa? Ligretto on hauska korttipeli, josta vauhtia ja jännitystä ei puutu.</p><p>Tule pelaamaan Ligrettoa torstaisin klo 16-18 Entressen kirjaston pajaan Ligrettokerhoon!</p><p><br></p><p>Kerhoa ohjaa vapaaehtoinen!</p>", "sv": "<p>Vill du spela Ligretto?</p><p>Eller vill du lära dig spela Ligretto? Ligretto är ett roligt kortspel som är fullt av fart och spänning.</p><p>Kom och spela Ligretto på torsdagar med klockan 16-18 på Ligrettoklubben på Entressebiblioteket!</p><p><br></p><p>Klubben drivs av en volontär!</p>", "en": "<p>Do you want to play Ligretto?</p><p>Or do you want to learn how to play Ligretto? Ligretto is a fun card game that is full of speed and excitement.</p><p>Come play Ligretto on Thursdays from 4-6pm at the Ligretto Club at the Entresse Library!</p><p><br></p><p>The club is run by a volunteer instructor.</p>" }, "info_url": null, "name": { "fi": "Ligretto-kerho ", "sv": "Ligrettoklubben", "en": "Ligretto Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "sv": "Paja", "en": "Paja" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22n66a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22odg4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oa7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22obre/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22occ4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ocva/?format=api" } ], "images": [ { "id": 150370, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:22:13.113892Z", "last_modified_time": "2024-03-15T10:22:13.113919Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/caleb-george-pH88tHG-1yw-unsplash.jpg", "name": "", "cropping": "520,0,2603,2082", "photographer_name": "", "alt_text": "soittimia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150370/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-07-07T10:29:30.635027Z", "last_modified_time": "2025-07-07T10:29:30.635050Z", "date_published": null, "start_time": "2025-09-08T14:00:00Z", "end_time": "2025-09-29T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Kurssi on suunnattu nuorille. Osallistuminen on maksutonta.", "sv": "Bandkurs för unga", "en": "Band course for young people" }, "description": { "fi": "<p>Tule mukaan Sellon kirjaston studiossa järjestettävään bändikurssiin! Kurssin aikana pääset soittamaan ja harjoittelemaan ohjatusti bändisoittimia. Pääset soittamaan rumpuja, bassoa, kitaraa ja pianoa. Tarkoituksena on harjoitella perusteet kaikista soittimista ja soittaa yhdessä nuorten toivomia kappaleita. Osallistuminen on maksutonta. Kurssille mahtuu kerralla 8 osallistujaa. Ei ennakkoilmoittautumista.</p><p>Kurssi järjestetään maanantaisin klo 17-18 neljä kertaa 8.9, 15.9, 22.9, 29.9</p><p><br></p><p>#musiikki #kitara #rummut #piano #bändi #kurssi</p><p>Kurssin vetäjänä toimii musiikkipedagogi Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p>", "sv": "<p>Bandkurs på Sello bibliotek! Under kursen kommer du att få spela och öva på bandinstrument. Kursen riktar sig till 12-20-åringar. Deltagandet är kostnadsfritt.</p><p><br></p><p>Kursen är fyra gånger på måndagar 8.9, 15.9, 22.9, 29.9 kl. 17.00-18.00.</p>", "en": "<p>Band course for young people at the Sello Library! During the course you will be able to play and practice band instruments. The course is aimed for 12-20 year olds. Participation is free of charge.</p><p>The course is four times on Mondays 8.9, 15.9, 22.9, 29.9 at 17.00-18.00. </p>" }, "info_url": null, "name": { "fi": "Bändisoittimia nuorille", "sv": "Bandkurs för unga", "en": "Band course for young people" }, "provider_contact_info": null, "location_extra_info": { "fi": "studio", "sv": "studio", "en": "studio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22odg4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66169", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163762, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T12:12:33.953979Z", "last_modified_time": "2025-07-02T12:12:33.953992Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772415.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163762/?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-07-02T12:12:33.907377Z", "last_modified_time": "2025-07-04T08:12:36.518526Z", "date_published": null, "start_time": "2025-10-04T08:00:00Z", "end_time": "2025-10-04T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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>Salarasia</b><br>Minne kätkisit pienet aarteesi tai säilöisit kauneimmat muistosi? Tällä kertaa Annantalon taidelauantain työpajassa koristellaan salarasia ja rakennetaan sen sisälle aarre.</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 kaikenkielisille.</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>Den hemliga lådan</b><br>Var skulle du gömma små skatter eller dina bästa minnen? Den här gången får vi under Annegårdens konstlördag dekorera en hemlig låda och bygga en skatt i den.</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.<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>Secret box</b><br>Where would you hide your small treasures or store your most beautiful memories? This time, the Annantalo Art Saturday’s workshop is for decorating a secret box and building a treasure inside it.</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.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalon_taidelauantai_Salarasia", "sv": "http://www.annantalo.fi/sv/evenemang/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annegardens_konstlordag_Den_hemliga_ladan", "en": "http://www.annantalo.fi/en/events/event/EA5FEC201D41CDC6BA74A6EDED72B44F/Annantalo_Art_Saturday_Secret_box" }, "name": { "fi": "Annantalon taidelauantai: Salarasia", "sv": "Annegårdens konstlördag: Den hemliga lådan", "en": "Annantalo Art Saturday: Secret box" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66169/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65947", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1050988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-18T10:13:48.726278Z", "last_modified_time": "2025-06-18T10:13:48.726294Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_769540.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1050988/?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-06-18T10:13:48.630580Z", "last_modified_time": "2025-07-04T08:12:33.233382Z", "date_published": null, "start_time": "2025-08-23T08:00:00Z", "end_time": "2025-08-23T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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>Omakuvakollaasi</b></p><p>Tervetuloa tutkimaan taidehistoriaa ja löytämään innostusta eri aikakausilta! Onko sinussa vivahdus rokokooromantiikkaa tai kubistista kulmikkuutta? Innostutko poptaiteen värikylläisyydestä? Viehättääkö sinua barokin mahtipontisuus vai minimalismi? Annantalon taidelauantaissa teemme omakuvakollaaseja hyödyntäen eri taidesuuntauksia edustavia kuvia. Leikkaamme, liimaamme ja yhdistelemme elementtejä esimerkiksi kubismista, poptaiteesta, surrealismista sekä impressionismista - kukin oman tyylinsä ja tunnelmansa mukaan.</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 kaikenkielisille.</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>Kollage med självporträtt</b></p><p>Välkommen att utforska konsthistorien och få inspiration från olika tider! Finns det en ton av rokokoromantik eller kubistisk kantighet i dig? Blir du inspirerad av popkonstens färgmättnad? Gillar du barockens svulstighet eller minimalism? Under Annegårdens konstlördagar gör vi kollage av självporträtt med bilder som representerar olika konstriktningar. Vi klipper, klistrar och kombinerar element från till exempel kubism, popkonst, surrealism och impressionism – var och en enligt sin egen stil och känsla.</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.<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>Self-portrait collage</b></p><p>Come by to explore art history and draw inspiration from the different eras! Maybe there’s a hint of Rococo romance in you, or a touch of cubistic edginess? Do the bright colours of pop art inspire you? Are you drawn to the bombastic baroque or to sleek minimalism? This Annantalo Art Saturday will be spent making self-portrait collages using images representing the different art trends. We will cut, mix and glue together elements from trends such as cubism, pop art, surrealism and impressionism – whichever suits your style and feeling.</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.<br>We look forward to seeing you at Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalon_taidelauantai_Omakuvakollaasi", "sv": "http://www.annantalo.fi/sv/evenemang/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annegardens_konstlordagar_Kollage_med_sjalvportratt_", "en": "http://www.annantalo.fi/en/events/event/0509E5312D49EB3AFB96C85EBC2AE3BA/Annantalo_Art_Saturdays_Self-portrait_collage_" }, "name": { "fi": "Annantalon taidelauantai: Omakuvakollaasi", "sv": "Annegårdens konstlördagar: Kollage med självporträtt", "en": "Annantalo Art Saturdays: Self-portrait collage" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22ozva", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22otsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oudi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ouuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ovf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ovxq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22owhy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22owxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oxhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oxxi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oyhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22oywq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozga/?format=api" } ], "images": [ { "id": 153481, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-18T06:46:06.533953Z", "last_modified_time": "2024-12-18T06:46:06.534007Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5dbb9c6a-8073-4f93-a3e5-c2e9915ee19e.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Enter ry", "alt_text": "Kaksi senioria keskustelee tietokoneen ja puhelimen äärellä.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153481/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-04T07:15:28.619427Z", "last_modified_time": "2025-07-04T07:15:28.619443Z", "date_published": null, "start_time": "2025-09-17T07:00:00Z", "end_time": "2025-12-03T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "short_description": { "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.", "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.", "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones." }, "description": { "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa! Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.</p><p>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan. Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat! Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.</p><p>Opastusta 17.9.–3.12.2025 keskiviikkoisin klo 10:00–12:00.</p><p>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392</p><p>Lisätietoja: www.entersenior.fi</p><p><br></p><p>Tapiolan kirjasto</p><p>Kulttuuriaukio 2</p><p>02100 ESPOO</p>", "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.</p><p>Obs! Föreningen är huvudsakligen verksam på finska.</p>", "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.</p><p>Note! The event is mainly in Finnish.</p>" }, "info_url": { "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/" }, "name": { "fi": "Digiopastusta seniorilta seniorille", "sv": "IT-handledning", "en": "IT tutoring" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22ozva/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pcsa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?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:p2433/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o6dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o6ua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o7d4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22o7te/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pacq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pasa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pbcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pbta/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pccu/?format=api" } ], "images": [ { "id": 1490211, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-12-19T13:19:16.432135Z", "last_modified_time": "2024-12-19T13:20:33.620963Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/6ff2fddf-5c82-4a21-a885-b6db014e7fec.jpg", "name": "ihmiset soittavat rumpuja", "cropping": "0,252,1512,1764", "photographer_name": "Taru Mäkelä", "alt_text": "ihmiset soittavat rumpuja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490211/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2025-07-03T10:56:44.709107Z", "last_modified_time": "2025-07-03T10:56:44.709124Z", "date_published": null, "start_time": "2025-08-26T07:00:00Z", "end_time": "2025-12-16T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Senioreille suunnattu tapahtuma, jossa musiikki ja liikunta yhdistettynä sulavaksi kokonaisuudeksi. Sopii kaikenlaisille liikkujille. ", "en": "An event for seniors, combining music and exercise into a seamless whole. Suitable for all types of movers. " }, "description": { "fi": "<p>Tule mukaan inspiroivaan tapahtumaan, jossa keho ja mieli kohtaava. Tapahtumassa yhdistyvät monipuoliset liikuntaharjoitteet ja rytmikäs musiikki sulavaksi kokonaisuudeksi, joka virkistää niin aivoja kuin lihaksiakin. Harjoitteet kehittävät kehonhallintaa, tasapainoa, koordinaatiota ja muistia rennossa ja kannustavassa ilmapiirissä. Olitpa liikunnan harrastaja tai vasta-alkaja, tämä tapahtumasarja tarjoaa sinulle uudenlaisen tavan liikkua, rentoutua ja haastaa itseäsi. </p><p>Musiikillisesta puolesta vastaa musiikkipedagogi Lauri ja liikunnallisesta puolesta vastaa Art Zenter Academyn perustaja David. Tapahtumassa puhutaan suomea, englantia ja espanjaa.</p><p><br></p><p>Aikaisempia asiakaspalautteita </p><p>”Hienoa että senioreille on tarjolla muutakin kuin tuolijumppaa. Kurssin sisältö oli monipuolinen, huolellisesti suunniteltu ja siinä oli sopivasti haastetta mutta myös iloa ja rentoutta. Toivon että vastaavanlaisia kursseja järjestetään jatkossakin.”</p><p>Liiku. Ajattele. Nauti. </p><p><br></p><p><br></p><p>Tapahtuma järjestetään joka toinen viikko Sellon kirjaston Jaminurkassa. (viikot 35, 37, 39, 41, 43, 45, 47, 49, 51) </p><p>Ensimmäinen kerta on tiistaina 26.8 klo 10-11</p><p><br></p><p>Osallistuminen on maksutonta ja ei ennakkoilmoittautumista.</p>", "en": "<p>Join us for an inspiring event where body meets mind. The event combines a variety of physical exercises and rhythmic music to create a smooth experience that invigorates both the brain and the muscles. The exercises develop body control, balance, coordination and memory in a relaxed and supportive atmosphere. Whether you're an exercise enthusiast or a newcomer, this series of events offers you a new way to move, relax and challenge yourself.</p><p>Lauri, music educator, will be in charge of the musical side and David, founder of Art Zenter Academy, will be in charge of the physical side. We speak Finnish, English and Spanish at the event.</p><p><br></p><p>The event takes place every two weeks in the Jaminurka of the Sello library. </p><p>(weeks 35, 37, 39, 41, 43, 45, 47, 49, 51) </p><p>The first session will be on Tuesday 26.8 from 10-11am.</p><p><br></p><p>Participation is free of charge and no pre-registration is required.</p>" }, "info_url": null, "name": { "fi": "Aivojumppaa ja kehonhallintaa senioreille ", "en": "Brain training and body control for seniors" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka ", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pcsa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22pdby", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-03T09:03:09.472760Z", "last_modified_time": "2025-07-03T09:03:09.472777Z", "date_published": null, "start_time": "2025-08-23T08:00:00Z", "end_time": "2025-08-23T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Tervetuloa nauttimaan klassisen ja elokuvamusiikin helmistä läpi vuosisatojen! Esiintymässä klarinettisolisti jousikvartetin kanssa", "en": "Welcome to enjoy the gems of classical and film music through the centuries! Performed by a clarinet soloist with a string quartet" }, "description": { "fi": "<p>Tervetuloa nauttimaan klassisen ja elokuvamusiikin helmistä läpi vuosisatojen! Esiintymässä klarinettisolisti jousikvartetin kanssa. Tämä monipuolinen ohjelma juhlistaa uuden kouluvuoden alkua kietoen kuuntelijat tunnelmaan, joka henkii vuodenajan vaihtumista kesästä kohti syksyä.</p><p> </p><p>Solisti: Simopekka – Klarinetti</p><p>Kvartetti: Laura – Viulu I, Riikka – Viulu II, Hilla – Viola, Charis – Sello</p><p> </p>", "en": "<p>Welcome! Join us for a journey through the gems of classical and film music, performed by clarinet and string quartet. This uplifting program celebrates the joy of learning and the return to school, weaving melodies that reflect the spirit of new beginnings and the changing season.</p><p> </p><p>Soloist: Simopekka – Clarinet</p><p>Quartet: Laura – Violin I, Riikka – Violin II, Hilla – Viola, Charis – Cello</p>" }, "info_url": null, "name": { "fi": "Uusia alkuja - klassisen ja elokuvamusiikin helmiä ", "en": "New beginnings - classical and film music gems" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "en": "Lava" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22pdby/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66172", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1169716, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T06:13:56.301757Z", "last_modified_time": "2025-07-03T06:13:56.301773Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772418.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169716/?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-07-03T06:13:56.207217Z", "last_modified_time": "2025-07-03T06:13:56.448441Z", "date_published": null, "start_time": "2025-11-29T09:00:00Z", "end_time": "2025-11-29T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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>Mullan alla</b><br>Minkälaisia asioita voisi piileksiä mullan alla marraskuussa? Juuria, onkaloita, myyriä vai matojen makuuhuone? Annantalon taidelauantain työpajassa pääset piirtämään ruskan sävyisillä kuivapastelliiduilla oman tulkintasi maanalaisesta maailmasta.</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.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</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><b>Under jorden</b><br>Hurdana saker kan gömma sig under jorden i november? Rötter, håligheter, sorkar eller maskarnas sovrum? I den här workshoppen under Annegårdens konstlördag får du teckna din egen tolkning av den underjordiska världen med torrpastellkritor i höstfärger.</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.<br>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>Under the dirt</b><br>What kinds of things could hide under the dirt in November? Roots, burrows, voles or maybe a bedroom for worms? The Annantalo Art Saturday workshop lets you draw your vision of the underground world, using soft pastels in autumn colours.</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 art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6BF3FEE689F1D83E9B8CD03F18241F0B/Annantalon_taidelauantai_Mullan_alla", "sv": "http://www.annantalo.fi/sv/evenemang/event/6BF3FEE689F1D83E9B8CD03F18241F0B/Annegardens_konstlordag_Under_jorden", "en": "http://www.annantalo.fi/en/events/event/6BF3FEE689F1D83E9B8CD03F18241F0B/Annantalo_Art_Saturday_Under_the_dirt" }, "name": { "fi": "Annantalon taidelauantai: Mullan alla", "sv": "Annegårdens konstlördag: Under jorden", "en": "Annantalo Art Saturday: Under the dirt" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66172/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66171", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1169715, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-03T06:13:54.701785Z", "last_modified_time": "2025-07-03T06:13:54.701801Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772417.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1169715/?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-07-03T06:13:54.602896Z", "last_modified_time": "2025-07-03T06:13:54.851349Z", "date_published": null, "start_time": "2025-11-08T09:00:00Z", "end_time": "2025-11-08T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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 houkutin</b></p><p>Marraskuussa luonto asettuu talvilepoon. Useat eläimet vetäytyvät talviunille tai -horrokseen ja monet kasvit talvehtivat lepäämällä lumipeitteen tai maan alla. Talvella ihmisetkin kaipaavat usein enemmän unta ja lepoa kuin kesällä. Annantalon taidelauantain työpajassa rakennamme erilaisista talvensävyisistä materiaaleista hyvää unta houkuttelevia ja mieltä rauhoittavia, ripustettavia teoksia.</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.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</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><b>Sömnlockare</b><br>I november förbereder sig naturen för vintervilan. Många djur går i dvala eller vintersömn och många växter övervintrar genom att vila under snötäcket eller marken. Även människor behöver ofta mer sömn och vila på vintern än på sommaren. Under den här workshoppen under Annegårdens konstlördag bygger vi verk att hänga upp för att lugna sinnet och locka fram en god sömn av olika material i vintriga toner.</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.<br>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>Catching good dreams</b><br>Nature settles in for the winter in November. Many animals start their winter rest or hibernation, and several plants rest under the cover of snow or soil. Often, people also need more rest and sleep in winter. In this Annantalo Art Saturday workshop, we will create hangable decorations to attract good sleep and calm the mind, using various wintery materials.</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 art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/55FE9390E8B2201CEAEC3CA0726B7DA9/Annantalon_taidelauantai_Hyvan_unen_houkutin", "sv": "http://www.annantalo.fi/sv/evenemang/event/55FE9390E8B2201CEAEC3CA0726B7DA9/Annegardens_konstlordag_Somnlockare", "en": "http://www.annantalo.fi/en/events/event/55FE9390E8B2201CEAEC3CA0726B7DA9/Annantalo_Art_Saturday_Catching_good_dreams" }, "name": { "fi": "Annantalon taidelauantai: Hyvän unen houkutin", "sv": "Annegårdens konstlördag: Sömnlockare", "en": "Annantalo Art Saturday: Catching good dreams" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66171/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66168", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163761, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T12:12:33.392387Z", "last_modified_time": "2025-07-02T12:12:33.392400Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772414.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163761/?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-07-02T12:12:33.340676Z", "last_modified_time": "2025-07-02T12:12:33.471949Z", "date_published": null, "start_time": "2025-09-20T08:00:00Z", "end_time": "2025-09-20T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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>Keitossani on kärpänen</b><br>Tarjoilija, keitossani on kärpänen! Vai onko pizzaasi tipahtanut mutteri pizzauunista? Mitä sinun annoksessa lymyileekään? Keksimiseen tarvitaan mielikuvittelua ja usein hassutteluakin, jotta piileskelevät ideat tulevat esiin. Suunnittele oma ruoka-annos ja tarina siitä mitä sen sekaan onkaan eksynyt ja miksi. Rakennamme annokset kierrätysmateriaaleilla ja työskentelyn lopuksi ruoka-annokset kuvataan yhteiseksi animaatioksi.</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.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</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><b>Det är en fluga i min soppa</b><br>Kyparn, det är en fluga i min soppa! Eller har en mutter från pizzaugnen hamnat i din pizza? Vad är det som döljer sig i din mat? För att hitta på saker behöver man fantasi och ofta lite tokerier, så att de dolda idéerna kan komma fram. Planera en egen matportion och hitta på en historia om vad som har hamnat där och varför. Vi bygger portionerna av återvunnet material, och till slut fotograferar vi dem till en gemensam animation.</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>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>There’s a fly in my soup</b><br>Waiter, there’s a fly in my soup! Or maybe a bolt fell into your pizza in the oven? What surprises are there in your dish? Inventiveness requires imagination and maybe even having fun to coax the hidden ideas into light. Plan your own dish and create a story for what has ended up in it and why. We will create the dishes from recycled materials, and finally the dishes will be filmed together to make an animation.</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 art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1116F443AE3635D322317378D63B1C73/Annantalon_taidelauantai_Keitossani_on_karpanen", "sv": "http://www.annantalo.fi/sv/evenemang/event/1116F443AE3635D322317378D63B1C73/Annegardens_konstlordag_Det_ar_en_fluga_i_min_soppa", "en": "http://www.annantalo.fi/en/events/event/1116F443AE3635D322317378D63B1C73/Annantalo_Art_Saturday_There_s_a_fly_in_my_soup" }, "name": { "fi": "Annantalon taidelauantai: Keitossani on kärpänen", "sv": "Annegårdens konstlördag: Det är en fluga i min soppa", "en": "Annantalo Art Saturday: There’s a fly in my soup" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66168/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66167", "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:p16197/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163760, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T12:12:32.452074Z", "last_modified_time": "2025-07-02T12:12:32.452087Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772413.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163760/?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-07-02T12:12:32.391898Z", "last_modified_time": "2025-07-02T12:12:32.560402Z", "date_published": null, "start_time": "2025-09-06T08:00:00Z", "end_time": "2025-09-06T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "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." }, "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>Kuka haisee kellarissa</b></p><p>Annantalo on ihan ihmeellinen paikka. Siellä piileskelee kummallisia olentoja, jotka jättävät jälkiä ja hajuja pitkin taloa. Tule etsimään todistusaineistoa näistä eriskummallisista hahmoista ja käytä mielikuvitustasi tehdäksesi heidät näkyväksi. Työpaja on saanut innoituksen Tuutikki Tolosen ja Anne Vaskon (kuv.) kiehtovasta kuvakirjasta \"Salaiset\".</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.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</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><b>Vem luktar i källaren?</b><br>Annegården är en förunderlig plats. Där gömmer sig märkliga varelser, som lämnar spår och dofter över hela huset!<br> Kom och leta efter bevismaterial om dessa märkliga figurer och använd din fantasi för att göra dem synliga. Workshoppen är inspirerad av Tuutikki Tolonens och Anne Vaskos (bilden) fängslande bilderbok Salaiset.</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.<br>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>Who is stinking up the basement?</b><br>Annantalo is quite a wondrous place. Strange creatures hide inside, leaving strange marks and scents around the building!<br> Come and look for evidence on these odd characters and use your imagination to make them visible. The workshop was inspired by the fascinating illustrated book ‘Salaiset’ by Tuutikki Tolonen and Anne Vasko (illustrator).</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 art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4B0B42A4B7E9D4290457258CAE12F501/Annantalon_taidelauantai_Kuka_haisee_kellarissa_", "sv": "http://www.annantalo.fi/sv/evenemang/event/4B0B42A4B7E9D4290457258CAE12F501/Annegardens_konstlordag_Vem_luktar_i_kallaren_", "en": "http://www.annantalo.fi/en/events/event/4B0B42A4B7E9D4290457258CAE12F501/Annantalo_Art_Saturday_Who_is_stinking_up_the_basement_" }, "name": { "fi": "Annantalon taidelauantai: Kuka haisee kellarissa?", "sv": "Annegårdens konstlördag: Vem luktar i källaren?", "en": "Annantalo Art Saturday: Who is stinking up the basement?" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66167/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66561", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 985986, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-10T12:14:48.363030Z", "last_modified_time": "2025-06-10T12:14:48.363049Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773115.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/985986/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-10T12:14:48.249359Z", "last_modified_time": "2025-07-02T12:12:31.392636Z", "date_published": null, "start_time": "2025-08-23T10:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Arabianrannan Lohikäärme on Metropolian Arabian kampuksella musiikkia opiskelleiden, Pekka Pohjolan musiikista suuresti vaikuttuneiden nuorten ammattimuusikkojen muodostama tribuuttiyhtye.", "sv": "Arabianrannan Lohikäärme är ett hyllningsband bildat av unga professionella musiker som studerar musik vid Metropolias Arabiancampus och som är starkt påverkade av Pekka Pohjolas musik.", "en": "Arabianrannan Lohikäärme is a tribute band formed by young professional musicians studying music at Metropolia's Arabian campus, who are greatly influenced by Pekka Pohjola's music." }, "description": { "fi": "<p>Arabianrannan Lohikäärme on Metropolian Arabian kampuksella musiikkia opiskelleiden, Pekka Pohjolan musiikista suuresti vaikuttuneiden nuorten ammattimuusikkojen muodostama tribuuttiyhtye.</p><p>Espan lavan keikalla yhtye kunnioittaa Pekka Pohjola Groupin 45 vuotta sitten tapahtunutta, niin ikään Esplanadilta taltioitua tv-esiintymistä. Keikan ohjelmistoon on poimittu suomiprogen klassikkoteoksia Pohjolan mittavan uran alkupuolelta ja kokoonpano on räätälöity Pohjola Groupin vuoden 1980 kokoonpanoa kunnioittaen.</p>", "sv": "<p>Arabianrannan Lohikäärme är ett hyllningsband bildat av unga professionella musiker som studerar musik vid Metropolias Arabiancampus och som är starkt påverkade av Pekka Pohjolas musik.</p><p>Vid Esplanadens scen hyllar bandet en TV-framträdande som spelades in för 45 år sedan av Pekka Pohjola Group, även den inspelad vid Esplanaden. Setlistan består av klassiska finska progrocklåtar från början av Pohjolas omfattande karriär, och bandets uppställning har anpassats för att hedra Pekka Pohjolas 1980 års line-up.</p>", "en": "<p>Arabianrannan Lohikäärme is a tribute band formed by young professional musicians studying music at Metropolia's Arabian campus, who are greatly influenced by Pekka Pohjola's music.</p><p>The concert at Espan Lava will pay tribute to a TV appearance recorded 45 years ago by Pekka Pohjola Group, also filmed at Esplanade. The setlist includes classic Finnish prog rock pieces from the early part of Pohjola's extensive career, and the lineup has been tailored to honor the 1980 lineup of the Pohjola Group.</p>" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/27E080E1AAFB4BECD8461C92B3C13B95/Arabianrannan_Lohikaarme", "sv": "http://www.espanlava.fi/sv/evenemang/event/27E080E1AAFB4BECD8461C92B3C13B95/Arabianrannan_Lohikaarme", "en": "http://www.espanlava.fi/en/events/event/27E080E1AAFB4BECD8461C92B3C13B95/Arabianrannan_Lohikaarme" }, "name": { "fi": "Arabianrannan Lohikäärme – Open Stage", "sv": "Arabianrannan Lohikäärme – Open Stage", "en": "Arabianrannan Lohikäärme – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66662", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1108187, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-06-25T12:22:12.528761Z", "last_modified_time": "2025-06-25T12:22:12.528777Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775689.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1108187/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-25T12:22:12.394125Z", "last_modified_time": "2025-07-02T12:12:26.589613Z", "date_published": null, "start_time": "2025-06-12", "end_time": "2025-09-30", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Helsingin kuvataidekoulun ympäristötaidenäyttely on avautunut Vuotalon alapihalle, joka on nyt siis Taidepiha!", "sv": "Helsingfors konstskolas miljökonstutställning har öppnats på nedre gården vid Nordhuset, som nu är Konstgården!", "en": "The environmental art exhibition of Helsinki School of Visual Arts has opened in the lower courtyard of Cultural Centre Vuotalo, turning it into the Art Yard!" }, "description": { "fi": "<p>Helsingin kuvataidekoulun ympäristötaidenäyttely on avautunut Vuotalon alapihalle, joka on nyt siis Taidepiha!</p><p>Vuotalon Taidepihan betoniseinään toteutettuun keramiikkareliefi -ympäristötaideteokseen on osallistunut yli sata 12–18-vuotiasta oppilasta. Värikäs yhteisteos koostuu kasvi-, hyönteis- ja lintuaiheisista reliefeistä. Teos nostaa esiin kaupunkiympäristössäkin elintärkeitä luontoarvoja.</p><p>Korkealla Taidepihan puissa voi nähdä jättiläiskukkia ja oppilaiden luoman, mielikuvituksellisen lintujen kaupungin. Taidepihassa voi lisäksi tutkia ja ihmetellä oppilaiden jättiläislintuja, kasvoja puissa, japanilaisia kalaviirejä ja Helsinki-päivän nonstop-työpajan yhteisöteoksena syntyneitä juhlaviirejä.</p><p>Taidepihan ikkunoihin on ripustettu merellinen kokonaisuus, joka koostuu laivoista, merikartoista, kaloista, merihirviöistä ja muista merkillisistä otuksista sekä mediataiteen oppilaiden tekemistä animaatioista.</p><p>Vapaa pääsy</p>", "sv": "<p>Helsingfors konstskolas miljökonstutställning har öppnats på nedre gården vid Nordhuset, som nu är Konstgården!</p><p>Helsingfors konstskolas miljökonstutställning har öppnats på nedre gården vid Nordhuset, som nu är Konstgården!</p><p>Mer än hundra elever i åldern 12–18 år har deltagit i arbetet med att skapa ett miljökonstverk i form av en keramisk relief på betongväggen på Nordhusets konstgård. Det färggranna gemensamma verket består av reliefer med växt-, insekts- och fågelmotiv. Verket lyfter fram livsviktiga naturvärden som finns även i stadsmiljön.</p><p>Högt uppe i Konstgårdens träd kan man se jätteblommor och en fantasifågelstad skapad av eleverna. På Konstgården kan du också utforska och förundras över studenternas jättefåglar, ansikten i träd, japanska fiskevimplar och de festliga vimplarna som skapats på Helsingforsdagens nonstop-workshop.</p><p>I Konstgårdens fönster har man hängt upp en marin helhet som består av fartyg, sjökort, fiskar, havsmonster och andra märkliga varelser samt animationer gjorda av elever i mediekonst.</p><p>Fritt inträde</p>", "en": "<p>The environmental art exhibition of Helsinki School of Visual Arts has opened in the lower courtyard of Cultural Centre Vuotalo, turning it into the Art Yard!</p><p>More than a hundred students aged 12–18 have participated in the environmental artwork created from ceramic reliefs onto the concrete wall of Vuotalo Art Yard. This colourful collaboration consists of plant, insect and bird-themed reliefs. The work highlights natural values that are also vital in an urban environment.</p><p>High up in the trees in the Art Yard, you can see giant flowers and an imaginary city of birds created by the students. The Art Yard also lets you explore and marvel at the students' giant birds, faces in trees, Japanese koinobori carp streamers and the festive pennants created as collaborative work in the nonstop workshop of Helsinki Day.</p><p>Hung up in the windows of the Art Yard is a sea-themed collaborative work comprising ships, nautical charts, fish, sea monsters and other peculiar creatures, as well as animations created by media art students.</p><p>Free entry</p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C3BDB8BA9CFF18BA55F846F867D1BEF4/Vuotalon_Taidepiha", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C3BDB8BA9CFF18BA55F846F867D1BEF4/Vuotalon_Taidepiha", "en": "http://www.vuotalo.fi/en/events/event/C3BDB8BA9CFF18BA55F846F867D1BEF4/Vuotalon_Taidepiha" }, "name": { "fi": "Vuotalon Taidepiha", "sv": "Vuotalon Taidepiha", "en": "Vuotalon Taidepiha" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66662/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }