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=4&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12364, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=5&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=3&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kulke:69274", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384995, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:29.200132Z", "last_modified_time": "2026-06-09T07:13:29.200148Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791489.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384995/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-09T07:13:29.106094Z", "last_modified_time": "2026-06-09T07:13:29.357721Z", "date_published": null, "start_time": "2026-09-17T15:00:00Z", "end_time": "2026-09-17T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/5E8A4B59CC3FF38AA3B9D8AC01ACDD60/Ekotorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/5E8A4B59CC3FF38AA3B9D8AC01ACDD60/Ekotorstai", "en": "http://www.malmitalo.fi/en/events/event/5E8A4B59CC3FF38AA3B9D8AC01ACDD60/Ekotorstai" }, "location_extra_info": null, "provider": null, "name": { "fi": "Ekotorstai", "sv": "Ekotorstai", "en": "Ekotorstai" }, "provider_contact_info": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa." }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69274/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69273", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384994, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-09T07:13:28.167123Z", "last_modified_time": "2026-06-09T07:13:28.167139Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791488.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384994/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-09T07:13:28.037526Z", "last_modified_time": "2026-06-09T07:13:28.333808Z", "date_published": null, "start_time": "2026-09-10T15:00:00Z", "end_time": "2026-09-10T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai", "en": "http://www.malmitalo.fi/en/events/event/CAFA8C010468F55E5E9EB8E2E024287A/Ekotorstai" }, "location_extra_info": null, "provider": null, "name": { "fi": "Ekotorstai", "sv": "Ekotorstai", "en": "Ekotorstai" }, "provider_contact_info": null, "short_description": { "fi": "Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa." }, "description": { "fi": "<p>Työpajoissa opitaan ekologisten materiaalien käytöstä kuvataiteessa.</p><p>Torstain kuvataidetyöpajoissa tekemisen pääpaino on piirustus- ja maalaustekniikoissa. Valmistamme mm. luonnon musteita, vegaanista temperamaalia ja käytämme luovasti erilaisia kierrätysmateriaaleja. Aikaisempaa kokemusta ei vaadita ja jokainen on tervetullut mukaan.</p><p>Opettajana työpajoissa toimii kuvataiteilija Satu Kalliokuusi, joka on perehtynyt ekologisiin menetelmiin kuvataiteessa.</p><p><u><a href=\"https://harrastukset.hel.fi/fi/kurssit/helsinki:ago7zj6thi\">Voit ilmoittautua kaikille tai osalle kerroista tästä linkistä</u></a> 1.8. klo 9.00 alkaen. Kurssi on tarkoitettu 16–20-vuotiaille nuorille.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69273/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69268", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384988, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T13:13:49.275393Z", "last_modified_time": "2026-06-08T13:13:49.275408Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793679.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384988/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-08T13:13:49.173328Z", "last_modified_time": "2026-06-08T13:13:49.416016Z", "date_published": null, "start_time": "2026-08-20T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty", "sv": "http://www.stoa.fi/sv/evenemang/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty", "en": "http://www.stoa.fi/en/events/event/5BFBF9C456AF8BE34968F4128564C546/Teatteri_Qo_Niitty" }, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö", "sv": "Teatteri Qo: Niitty", "en": "Teatteri Qo: Niitty" }, "provider_contact_info": null, "short_description": { "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!" }, "description": { "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69268/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69267", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384987, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T13:13:48.832940Z", "last_modified_time": "2026-06-08T13:13:48.832954Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793678.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384987/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-08T13:13:48.711098Z", "last_modified_time": "2026-06-08T13:13:49.056704Z", "date_published": null, "start_time": "2026-08-20T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty", "sv": "http://www.stoa.fi/sv/evenemang/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty", "en": "http://www.stoa.fi/en/events/event/4DDB625525B0583E2281FBF21A7873EE/Teatteri_Qo_Niitty" }, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri Qo: Niitty – Stoan Elojuhla | Taiteiden yö", "sv": "Teatteri Qo: Niitty", "en": "Teatteri Qo: Niitty" }, "provider_contact_info": null, "short_description": { "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!" }, "description": { "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p>Taiteiden yönä, torstaina 20.8. Stoassa vietetään Elojuhlaa. Elojuhlan klo 17.00 ja 18.00 Niitty-esityksiin jaetaan vapaalippuja klo 16 alkaen Stoan aulassa – nouda omasi ajoissa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69267/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agpkordzja", "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/kultus:11/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:21/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:52/?format=api" } ], "created_time": "2026-06-08T12:45:43.164671Z", "last_modified_time": "2026-06-08T12:47:54.950263Z", "date_published": null, "start_time": "2026-06-11T09:00:00Z", "end_time": "2026-06-11T12: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": "2026-06-08T15:50:00+03:00", "enrolment_end_time": "2026-06-10T12:00:00+03:00", "local": false, "replaced_by": null, "info_url": { "fi": "", "sv": "", "en": "" }, "location_extra_info": null, "provider": null, "name": { "fi": "Testi", "sv": "", "en": "" }, "provider_contact_info": null, "short_description": { "fi": "Testi", "sv": "", "en": "" }, "description": { "fi": "<p>Testi</p>\n", "sv": "", "en": "" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agpkordzja/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69264", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384986, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T12:13:48.883324Z", "last_modified_time": "2026-06-08T12:13:48.883339Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793675.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384986/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-08T12:13:48.764016Z", "last_modified_time": "2026-06-08T12:13:49.253393Z", "date_published": null, "start_time": "2026-08-19T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty", "sv": "http://www.stoa.fi/sv/evenemang/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty", "en": "http://www.stoa.fi/en/events/event/B77D3D46E6379CE4C98E7D6F52AE9D7F/Teatteri_Qo_Niitty" }, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille", "sv": "Teatteri Qo: Niitty", "en": "Teatteri Qo: Niitty" }, "provider_contact_info": null, "short_description": { "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!" }, "description": { "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69264/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69263", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384985, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T12:13:48.377102Z", "last_modified_time": "2026-06-08T12:13:48.377119Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793674.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384985/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-08T12:13:48.237179Z", "last_modified_time": "2026-06-08T12:13:48.637757Z", "date_published": null, "start_time": "2026-08-19T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty", "sv": "http://www.stoa.fi/sv/evenemang/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty", "en": "http://www.stoa.fi/en/events/event/A07D5C75A1E5F8D7B6113F78D1730A4D/Teatteri_Qo_Niitty" }, "location_extra_info": null, "provider": null, "name": { "fi": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille", "sv": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille", "en": "Teatteri Qo: Niitty – Varhaiskasvatusryhmille" }, "provider_contact_info": null, "short_description": { "fi": "Sukella vihreän eri sävyihin ja kukkimisen keveyteen!" }, "description": { "fi": "<p>Sukella vihreän eri sävyihin ja kukkimisen keveyteen!</p><p>Niitty on esitys kasveista, kasvusta, yksilöllisyydestä ja yhteistyöstä. Niityn äärellä maailmaa voi tarkastella hetken kasvien näkökulmasta. Niitty tekee luonnonkasveja tutuksi nukketeatterin keinoin, jättäen tilaa pienten ja isojen katsojien omille mielikuvituspoluille ja havainnoille. Tervetuloa katsomaan kuinka niitty soi ja kukoistaa!</p><p>Ikäsuositus: 4-v. +<br>Kesto: n. 30 min<br>Kieli: suomi</p><p>Visuaalinen suunnittelu & toteutus, käsikirjoitus & esiintyminen: Anna Uschanov<br>Ohjaus: Perrine Ferrafiat<br>Äänisuunnittelu ja muusikko: Salla Markkanen<br>Valosuunnittelu: Sisu Nojonen</p><p><b>Liput ja ilmoittautuminen:</b><br>Keskiviikkoaamupäivän 19.8. klo 9.15 ja 10.30 esitykset järjestetään varhaiskasvatusryhmille. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Voit ilmoittaa ryhmäsi mukaan osoitteessa kultus.hel.fi alkaen 3.8. klo 10.</u></a></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69263/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69115", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384778, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-28T11:13:22.671912Z", "last_modified_time": "2026-05-28T11:13:22.671928Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793322.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384778/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-05-28T11:13:22.559565Z", "last_modified_time": "2026-06-08T12:13:41.276214Z", "date_published": null, "start_time": "2026-06-12T16:00:00Z", "end_time": "2026-06-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic", "sv": "http://www.annantalo.fi/sv/evenemang/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic", "en": "http://www.annantalo.fi/en/events/event/1A49AEACE09016CF946CF98F761FD2CF/Downtown_Open_Mic" }, "location_extra_info": null, "provider": null, "name": { "fi": "Downtown Open Mic – Helsinki-päivä Annantalossa", "sv": "Downtown Open Mic", "en": "Downtown Open Mic" }, "provider_contact_info": null, "short_description": { "fi": "Nuorten Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. Ilmoittaudu esiintyjäksi nyt!" }, "description": { "fi": "<p>Nuorten Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. Ilmoittaudu esiintyjäksi nyt!</p><p>Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu mukaan tästä!</a></u></p><p>Nähdään Annantalolla!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69115/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68618", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/", "sv": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/", "en": "https://www.lippu.fi/event/pekko-kappi-k-h-h-l-a-la-malmi-pekko-kappi-khhl-malmitalo-21485591/" }, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384964, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T07:14:02.326368Z", "last_modified_time": "2026-06-05T07:14:02.326386Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791278.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384964/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T13:14:43.665474Z", "last_modified_time": "2026-06-08T11:13:51.622202Z", "date_published": null, "start_time": "2026-09-25T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L", "en": "http://www.malmitalo.fi/en/events/event/7B5959CF25AD1B0ACB1E46428C8B9A77/Pekko_Kappi_K_H_H_L" }, "location_extra_info": null, "provider": null, "name": { "fi": "Pekko Käppi & K:H:H:L – A la Malmi", "sv": "Pekko Käppi & K:H:H:L – A la Malmi", "en": "Pekko Käppi & K:H:H:L – A la Malmi" }, "provider_contact_info": null, "short_description": { "fi": "Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko." }, "description": { "fi": "<p>Pekko Käppi & K:H:H:L on tamperelainen, Suomen folkrocktaivaan nykyhetken kuumin ja kovaäänisin nelikko.</p><p>Yhtye perustettiin jouhikkotaiteilijana ja laulaja-lauluntekijänä tunnetun <b>Pekko Käpin</b> <i>Rammat jumalat</i> levyn ilmestyttyä vuonna 2013. Sittemmin yhtye on tehnyt kuusi kiiteltyä levyä ja kiertänyt planeettaamme ristiin rastiin.</p><p>Pekko Käpin musiikki yhdistää ilmavaa folk -ilmaisua, bluesin juurekkuutta ja psykedeelisvivahteista rockia. Lopputulos on ihastuttavaa kansanmusiikkia, joka on istutettu omaleimaisen nerokkaalla tavalla helposti lähestyttävän populaarimusiikin muottiin.</p><p>Yhtyeen kuudes albumi <i>Oli kerran ryytimaassa...</i> julkaistiin 2025.<br> <br>Yhtye:<br>Pekko Käppi – laulu, jouhikot<br>Tommi Laine – kitara, laulu<br>Nuutti Vapaavuori – basso, laulu<br>Gilbert Kuppusami – rummut, laulu</p><p>Kesto: 1 tunti</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68618/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68616", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/", "sv": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/", "en": "https://www.lippu.fi/event/sointi-jazz-orchestra-agatha-malmitalo-21615197/" }, "price": { "fi": "6.10€ - 28.90€", "sv": "6.10€ - 28.90€", "en": "6.10€ - 28.90€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384954, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T13:14:42.691232Z", "last_modified_time": "2026-06-04T13:14:42.691248Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791268.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384954/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T13:14:42.447342Z", "last_modified_time": "2026-06-08T11:13:50.862812Z", "date_published": null, "start_time": "2026-09-18T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha", "sv": "http://www.malmitalo.fi/sv/evenemang/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha", "en": "http://www.malmitalo.fi/en/events/event/616BCFFF78D80F262DC113B13E1DD64F/Sointi_Jazz_Orchestra_Agatha" }, "location_extra_info": null, "provider": null, "name": { "fi": "Sointi Jazz Orchestra: Agatha", "sv": "Sointi Jazz Orchestra: Agatha", "en": "Sointi Jazz Orchestra: Agatha" }, "provider_contact_info": null, "short_description": { "fi": "Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!" }, "description": { "fi": "<p>Sointi Jazz Orchestra esittää Kerkko Koskisen Agatha-teoksen alkuperäisessä laajuudessaan!</p><p>Ultra Bran musiikillisena moottorina tunnetun <b>Kerkko Koskisen</b> ensimmäinen laaja instrumentaaliteos <i>Agatha</i> sai ensiesityksensä lähes 20 vuotta sitten. Jazzia ja klassista musiikkia ennakkoluulottomasti yhdistelevä elokuvallinen kokonaisuus kuullaan nyt monipuolisista esityksistään tunnetun Sointi Jazz Orchestran tulkitsemana. Jazzorkesteria täydentävät käyrätorvet ja perkussiot, jotka tuovat teokseen lisää syvyyttä ja väriä.</p><p>Koskisen musiikin ytimessä ovat kertomuksellisuus ja vahva melodinen ilmaisu. Hänen sävellyksensä ammentavat usein inspiraationsa runoudesta ja muista musiikin ulkopuolisista lähteistä. Tämä kuuluu myös Agatha-kokonaisuudessa, joka on saanut innoituksensa Koskista pitkään kiinnostaneesta Agatha Christien tuotannosta. Teoksessa yhdistyvät laulavat, toisiinsa punoutuvat melodiat ja hallittu harmoninen kaari. Lopputuloksena on musiikillinen maailma, joka luo voimakkaita, elokuvamaisia mielikuvia ja tunnelmia.</p><p>Sointi Jazz Orchestra on yksi Suomen kiinnostavimmista jazzorkestereista. Orkesteri tunnetaan tarkkaan kuratoiduista konserttikokonaisuuksistaan ja rohkeasta suhtautumisestaan uuteen musiikkiin. Orkesteri on toteuttanut lukuisia kantaesityksiä kotimaisin ja kansainvälisin solistein.</p><p>Kesto: 1 t 10 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68616/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69137", "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:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p39924/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-798/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384905, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T10:13:40.167611Z", "last_modified_time": "2026-06-02T10:13:40.167629Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786168.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384905/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-02T10:13:40.043064Z", "last_modified_time": "2026-06-08T10:13:20.452945Z", "date_published": null, "start_time": "2026-08-17", "end_time": "2026-09-21", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja", "en": "http://www.vuotalo.fi/en/events/event/A6D5C2D1D2AF2A4589AE3328CFB36A6D/Kohti_tuntematonta_-tyopaja" }, "location_extra_info": null, "provider": null, "name": { "fi": "Kohti tuntematonta -työpaja – Kuva- ja sanataidepajat koululaisille", "sv": "Kohti tuntematonta -työpaja", "en": "Kohti tuntematonta -työpaja" }, "provider_contact_info": null, "short_description": { "fi": "Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa." }, "description": { "fi": "<p>Kohti tuntematonta -näyttely ja työpaja kutsuu koululaiset hyppäämään seikkailuihin mielikuvituksellisissa maailmoissa.</p><p>Työpajat ovat suunnattuja 3.–6.-luokkalaisille. Työpajoissa tutustutaan sana- ja kuvataiteen keinoin Pasi Pitkäsen taidokkaista kuvituksista koostettuun näyttelyyn ja sen kautta avautuviin maailmoihin. Tarkoituksena on innostaa kokemaan kirja ja lukeminen uudesta, osallistavasta ja monitaiteisesta näkökulmasta.<br> <br>Työpajassa koululuokka jaetaan puoliksi niin, että puolet osallistuvat sanataidepajaan ja puolet kuvataidepajaan ja sitten vaihdetaan osia. Näin kaikki pääsevät työskentelemään sekä sanallisesti että kuvallisesti.</p><p>Työpajan ohjauskieli on suomi, ja kokonaiskesto 1,5 tuntia.</p><p>Työpajat maanantaisin<br>17.8. 9–10:30 ja 11–12:30 <br>24.8. 9–10:30 ja 11–12:30<br>31.8. 9–10:30 ja 11–12:30<br>7.9. 9–10:30 ja 11–12:30<br>14.9. 9–10:30 ja 11–12:30<br>21.9. 9–10:30 ja 11–12:30</p><p><b>Työpajoihin ilmoittaudutaan osoitteessa <a href=\"https://kultus.hel.fi/fi/event/kultus:agpgqgvsom\"><u>kultus.hel.fi</u></a>.</b></p><p><b>Matka käärmejunassa -sanataidetuokio</b><br>Matka käärmejunassa -tuokiossa tutustutaan Silja Sillanpään ja Pasi Pitkäsen Ouroboros-kirjaan, tehdään sanataidetehtäviä ja ratkaistaan arvoituksia.</p><p>Tuokiossa pohditaan muun muassa, minkälaisia varusteita oppilaat ottaisivat mukaan seikkailuun, etsitään omat käärmeystävät ja kirjoitetaan pieni matkakertomus. Pakopelihenkinen toiminnallisuus rytmittää tuokion kulkua ja innostaa oppilaita osallistumaan.</p><p><b>Sateenkaarikäärme-kuvataidetuokio</b><br>Sateenkaarikäärme -taidetuokiossa tutkitaan Pasi Pitkäsen kuvitustaiteen käärmehahmoja, kokeillaan piirtää erilaisia suomuja ja toteutetaan yhdessä pala palalta suuri sateenkaarikäärme.</p><p>Tuokiossa keskeisenä inspiraationa toimivat Pasi Pitkäsen kuvitukset, ja havainnon avulla harjoitellaan piirtämään käärmeiden kiehtovia suomupeitteitä. Oppilaiden pastelliliiduilla toteutetut piirrokset rakentuvat viikkojen aikana Sateenkaari-käärmeen muotoon, joka on yhteistaideteoksena esillä osana näyttelyä Vuotalon-aulassa.</p><p>KUVA: Pasi Pitkänen</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68683", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1906888, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-05T08:13:28.991575Z", "last_modified_time": "2026-05-05T08:13:28.991590Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789854.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1906888/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-05-05T08:13:28.828729Z", "last_modified_time": "2026-06-08T09:13:45.735873Z", "date_published": null, "start_time": "2026-06-12T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki-paiva_Stoassa_Helsinki_Circus_Festivalin_ennakkojuhla", "sv": "http://www.stoa.fi/sv/evenemang/event/7410FE6427C79B67F43EBDE51AD2941F/Helsingforsdagen_pa_Stoa", "en": "http://www.stoa.fi/en/events/event/7410FE6427C79B67F43EBDE51AD2941F/Helsinki_Day_at_Stoa" }, "location_extra_info": null, "provider": null, "name": { "fi": "Helsinki-päivä Stoassa: Helsinki Circus Festivalin ennakkojuhla", "sv": "Helsingforsdagen på Stoa", "en": "Helsinki Day at Stoa" }, "provider_contact_info": null, "short_description": { "fi": "Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.", "sv": "Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!", "en": "Stoa Square will be filled with the magic of circus on Helsinki Day!" }, "description": { "fi": "<p>Stoan aukio täyttyy Helsinki-päivänä sirkustaiteen taiasta, kun Pro sirkus ry esittää Helsinki Circus Festivalin ennakkojuhlan klo 17-19.</p><p>Tervetuloa mukaan ainutlaatuiseen sirkustapahtumaan, jossa lavalle nousee toinen toistaan huikeampia esityksiä. Monipuolinen ohjelma yhdistää perinteisen sirkuksen lumon moderniin esitystaiteeseen – luvassa on iloa ja elämyksiä kaikenikäisille!</p><p><b>Esiintyjät / esitykset mm.:</b></p><p><b>Blind Gut Company / Viihdy! Viihdy! Viihdy!</b><br><b>Nuua Company / Olli Vuorinen </b><br><b>Race Horse Company / Kalle Lehto</b><br><b>Fragile kollektiivi / Haidi Ilona </b><br><b>Leo Kaipiainen</b></p><p>Esitysten lisäksi Stoan aukio täyttyy iloisesta festivaalitunnelmasta: luvassa on saippuakuplia, popcornia sekä työpajoja sirkus-teemalla.</p><p><b>Enemmän esityksistä:</b><br> <br><b>Blid Gut Companyn</b> hulvaton katusirkusesitys Viihdy! Viihdy! Viihdy!, tuo vanhan narriperinteen tähän päivään. Markkinakojua muistuttavassa esityksessä yleisö pääsee tilaamaan itselleen erilaisia sirkuselämyksiä: tarjolla on akrobatiaa, jongleerausta, yllätyksiä ja osallistavia temppuja, joissa katsojatkin voivat päästä osaksi esitystä.</p><p>Vauhdikkaasta akrobatiasta vastaa myös <b>Kalle Lehto</b>, yksi <b>Race Horse Companyn</b> perustajajäsenistä. Hänen energisissä numeroissaan nähdään akrobatiaa muun muassa jumppapallon ja keppihevosten kanssa – luvassa on yllätyksiä, huumoria ja huikeaa fyysistä taituruutta.</p><p>Tunnelma saa myös rauhallisempia ja hypnoottisempia sävyjä, kun <b>Olli Vuorinen (Nuua Company)</b> vie yleisönsä abstraktiin jongleerausteokseen. Renkaiden toistuva liike, kehon muuntuvat muodot ja hitaasti rakentuvat kuviot luovat meditatiivisen kokemuksen, jossa nykysirkus muuttuu lähes tanssilliseksi visuaaliseksi virraksi.</p><p>Ilmassa nähtävä herkkyys ja voima puolestaan kuljettavat katsojat hetkeksi arjen ulkopuolelle, kun <b>Haidi Ilona</b> esittää sooloteoksia rengastrapetsilla ja spiraalilla. Hänen liikekielessään nykytanssi ja ilma-akrobatia sulautuvat saumattomasti yhteen runolliseksi ja vaikuttavaksi kokonaisuudeksi.</p><p>Päivän juontaa ja yleisön oppaana toimii <b>jonglööri Leo Kaipiainen</b>, jonka energinen läsnäolo, tarkasti hiottu jongleeraus ja sirkusmaailman kiehtovat tarinat sitovat päivän ohjelman lämpimäksi ja mukaansatempaavaksi kokonaisuudeksi.</p><p><b>Työpajat: </b></p><p><b>Tasapainoilijat -veistos</b><br>Osaatko seistä yhdellä jalalla tai käsillä? Miltä tuntuisi tanssia nuoralla? Miltä näyttää jonglööri tai ilma-akrobaatti? Pajassa inspiroidutaan tasapainoilusta ja luodaan muovailuvahasta pienikokoinen veistos. Ohjaaja: Chloé Mahy-Hulkko. Kielet: suomi, englanti ja ranska</p><p><b>Tikkunukketivoli</b>- sirkushahmoja kollaasitekniikalla<br>Eksoottisia eläimiä, tempovia temppuja sekä taidokasta taikaa, mikä on sinun sirkushahmosi supervoima? Tehdään nukketeatterihahmoja kollaasitekniikalla. Ihmeellisille esiintyjille on oma sirkusnäyttämö, jolla pääset näyttämään hurjimmat hypyt ja taianomaisimmat temput! Ohjaaja: Greta Isola. Sopii yli 4-vuotiaille.</p><p><b>Kokeile sirkusta!</b><br>Sirkus Magentan hauskassa sirkustyöpajassa jokainen pääsee kokeilemaan matalalla kynnyksellä eri sirkuslajeja. Tule kokeilemaan esimerkiksi jongleerausta erilaisilla välineillä, vanteen pyöritystä, tasapainolaudalla tasapainottelua ja käsinseisontaa!</p><p><b>Jättisaippuakuplat</b><br>Jättikuplien taikaa tarjoilee Kiksu-klovni! Ihaile ja ihmettele kuplien kulkua tai kokeile itse niiden tekemistä.</p><p><b>Paperitaikoja/b><br>Seikkailutaidekoulu kurvaa Stoan aukiolle Kesätaidefillarilla. Tehdään paperitaikoja, kun origamipaperit muuttuvat värikkäiksi lentäviksi perhosiksi!</p><p><b>Itäkeskuksen kirjaston</b> pisteellä voit pyöräyttää onnenpyörää ja valita palkinnoksi oman poistokirjan. Kirjastossa on myös esillä sirkusaiheinen kirjanäyttely klo 18 asti.</p><p>Stoan galleriassa vietetään <b>Luontosuhteita-näyttelyn</b> avajaisia klo 17-19. Monitaiteisen näyttelyn taiteilijat ovat KATOAVA-kollektiivi, Olli Kaukonen Lindholm, Lauri Lähteenmäki, Minttu Pyykkönen ja Emiel Riiko.</p><p>Vapaa pääsy.</p>", "sv": "<p>Stoaplatsen fylls av cirkusmagi på Helsingforsdagen!</p><p>Pro Cirkus rf ordnar förfest för Helsinki Circus Festival på Helsingforsdagen den 12 juni 2026 på Stoaplatsen.</p><p>Välkommen på ett unikt cirkusevenemang där du får se fantastiska framträdanden på scenen under två timmar. Det här är inte bara cirkus – det är en upplevelse som får hjärtat att bulta och ger dig ett leende på läpparna.</p><p>Det mångsidiga programmet kombinerar den traditionella cirkusens magi med modern scenkonst – här utlovas överraskningar för alla åldrar!</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>Stoa Square will be filled with the magic of circus on Helsinki Day!</p><p>Pro sirkus ry will host the Helsinki Circus Festival pre-celebration on Helsinki Day 12 June 2026 on Stoa Square.</p><p>Join us for a unique circus event, where circus performances, each more amazing than the next, will take place on stage for two hours! This is not just a circus – this is an experience that will make your heart race and have you smiling from ear to ear.</p><p>The diverse programme combines the magic of traditional circus with modern performing arts – with surprises for all ages!</p><p>Entry to the events is free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68683/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68713", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1994114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-05-06T10:14:10.696083Z", "last_modified_time": "2026-05-06T10:14:10.696174Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786208.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1994114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-05-06T10:14:10.328417Z", "last_modified_time": "2026-06-08T09:13:44.932806Z", "date_published": null, "start_time": "2026-06-12T06:30:00Z", "end_time": "2026-06-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki-paiva_Annantalossa", "sv": "http://www.annantalo.fi/sv/evenemang/event/3974A7009DB309C2C7AFACFB09839CCB/Helsingforsdagen_pa_Annegarden", "en": "http://www.annantalo.fi/en/events/event/3974A7009DB309C2C7AFACFB09839CCB/Helsinki_Day_at_Annantalo" }, "location_extra_info": null, "provider": null, "name": { "fi": "Helsinki-päivä Annantalossa", "sv": "Helsingforsdagen på Annegården", "en": "Helsinki Day at Annantalo" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.", "sv": "Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.", "en": "Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk." }, "description": { "fi": "<p>Annantalon Helsinki-päivä tarjoaa musiikkia, teatteria ja taidetta koko perheelle aamusta iltaan.</p><p>Tervetuloa viettämään koko perheen Helsinki päivää Annantaloon! Luvassa on musiikkia, teatteria, taidepajoja ja yhdessäoloa aamusta iltaan. Kaikkiin tapahtumiin on vapaa pääsy.</p><p><b>Aikataulu</b><br>klo 9.30 & 10.45 Päistikka -orkesterin konsertti (A.-lava / sateella Annansali)<br>klo 10–15 Avoin taidepaja: Elävä Helsinki (etupiha / sateella sisällä)<br>klo 12–12.30 Piknikkonsertti: Valtuutetut- duo (A.-lava)<br>klo 15.30 & 18.00 Stella Polaris: Maaginen matka<br>klo 19–21 Downtown Open Mic (A.-lava)</p><p><b>Päistikka-orkesterin konsertti<br>klo 9.30 ja klo 10.45, Annantalon A.-lava</b><br>(Sateella Annansalissa, jolloin paikka kannattaa varata ennakkoon)<br>Päistikka-orkesterin riemukkaassa konsertissa syöksytään seikkailuihin ja mielikuvituksen maailmaan. On aika tanssia robottidiskossa tai ryhtyä hirviöhippaan! Musiikin ja tarinoiden täyttämä show kutsuu myös yleisön mukaan osallistumaan.</p><p>Esiintyjät:<br>Tuukka Martiskainen, laulu, ukulele, samplet<br>Elina Vehkaoja, laulu, koskettimet<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Kesto: 30 min<br>Ikäsuositus: 1+<br>Kieli: suomi<br>Paikkavaraukset (jos sade yllättää): annantalo.fi, 12.5. klo 8 alkaen</p><p><b>Avoin taidepaja: Elävä Helsinki<br>klo 10–15 — Annantalon etupiha</b><br>(Sateella sisätiloissa)<br>Mikä se siellä vipeltää, sukkelasti sujahtaa? Työpajassa tutkitaan Annantalon lähiluontoa, kurkistetaan vaikka kiven alle. Havainnoidaan pienistä pienintä ja vähän isompaakin.<br>Eliökunnan manifestin innoittamana maalataan ihmeellisillä luonnon väreillä. Manifestiin voi tutustua Annantalon aulassa.<br>Suurennuslasi matkaan ja pensseli käteen!<br>Ohjaajat: Marjut Maristo ja Heli Niska<br>Maksuton ja avoin kaikenikäisille.</p><p><b>Piknikkonsertti: Valtuutetut -duo<br>klo 12–12.30, A.-lava</b><br>Helsingin kaupunginvaltuutetut Nora Grotenfelt ja Antti Vuorela esittävät lastenlauluja ruotsiksi ja suomeksi. Luvassa on tarinoita, nostalgiaa ja hyväntuulista yhteisöllisyyttä.<br>Omat eväät ja piknikviltit mukaan!</p><p><b>Stella Polaris: Maaginen matka<br>klo 15.30 ja klo 18.00</b><br>Stella Polariksen improvisoidussa koko perheen näytelmässä lapset pääsevät vaikuttamaan tarinan kulkuun ja hahmoihin. Näyttelijät, muusikko ja valosuunnittelija loihtivat esityksen yleisön ehdotusten pohjalta – jokainen kerta on täysin uudenlainen.<br>Tulkaa mukaan ihmettelemään, kuinka kokonainen näytelmä syntyy silmien edessä täynnä yllätyksiä, hauskuutta ja hulvattomia käänteitä!<br>Ikäsuositus: 6+<br>Kesto: noin 45 min<br>Kieli: suomi<br>Paikkavaraukset: annantalo.fi, 12.6.2026 klo 8 alkaen</p><p><b>Downtown Open Mic<br>klo 19–21, A.-lava</b><br>Downtown Open Mic tapahtuu Annantalon A-lavalla Helsinki-päivänä 12.6. klo19–21! Tervetuloa esiintymään ja nauttimaan lämpimästä tunnelmasta juontajan Pyry Aallon kanssa. Lavalta löytyy mikit, kosketinsoittimet ja kytkentä kitaralle. Meillä on myös paikan päällä DJ, joka voi soittaa taustanauhoja. Voit hakea esiintyjäksi ennakkoon. Esiintyjien ilmoittautumiset aukeavat toukokuun lopulla.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Ilmoittaudu Open Mic -esiintyjäksi tästä!</a></u></p><p>Nähdään Annantalolla!</p>", "sv": "<p>Helsingforsdagen på Annegården bjuder på musik, teater och konst för hela familjen från morgon till kväll.</p><p>Välkommen till Annegården för att fira Helsingforsdagen med hela familjen! Det blir musik, teater, konstverkstäder och samvaro från morgon till kväll. Alla evenemang har fritt inträde.</p><p><b>Tidtabell</b><br>kl. 9.30 & 10.45 Konsert med orkestern Päistikka (A-scenen/vid regn i Annesalen)<br>kl. 10–15 Öppen konstverkstad: Ett levande Helsingfors (gården på framsidan/vid regn inomhus)<br>kl. 12–12.30 Picknickkonsert: Duon Valtuutetut (A-scenen)<br>kl. 15.30 & 18.00 Stella Polaris: Maaginen matka<br>kl. 19–21 Downtown Open Mic (A-scenen)</p><p><b>Konsert med orkestern Päistikka<br>kl. 9.30 och kl. 10.45, Annegårdens A-scen</b><br>(Om det regnar, inne i Annesalen, så boka gärna plats i förväg)<br>I Päistikka-orkesterns glada konsert dyker vi ner i äventyrens och fantasins värld. Det är dags att dansa robotdisco eller leka monstertafatt! Den här showen, fylld av musik och berättelser, bjuder också in publiken att vara med.</p><p>På scenen:<br>Tuukka Martiskainen – sång, ukulele, samples<br>Elina Vehkaoja – sång, keyboard<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso<br>Längd: 30 minuter<br>Åldersrekommendation: 1+<br>Språk: finska<br>Platsbokningar (om det regnar): annantalo.fi, från 12.6 kl. 8</p><p><b>Öppen konstverkstad: Ett levande Helsingfors<br>kl. 10–15, Gården framför Annegården</b><br>(Inomhus vid regn)<br>Vad är det som snabbt ilar förbi? I verkstaden utforskar vi naturen i närheten av Annegården, till exempel genom att titta under stenar. Vi upptäcker de minsta av de minsta och även sådana som är lite större.<br>Vi målar med fantastiska naturfärger och med inspiration från organismernas manifest. Du kan ta del av manifestet i Annegårdens entré.<br>Ta med dig ett förstoringsglas och en pensel!<br>Ledare: Marjut Maristo och Heli Niska<br>Kostnadsfritt och öppet för alla åldrar.</p><p><b>Picknickkonsert: Duon Valtuutetut<br>kl. 12–12.30, A-scenen</b><br>Nora Grotenfelt och Antti Vuorela från Helsingfors stadsfullmäktige framför barnvisor på finska och svenska.. Det utlovas berättelser, nostalgi och god stämning.<br>Ta med egen matsäck och picknickfilt!</p><p><b>Stella Polaris Maaginen matka (en magisk resa)<br>kl. 15.30 och kl. 18.00</b><br>I improvisationsduon Stella Polaris föreställning för hela familjen får barnen påverka berättelsen och karaktärerna. Skådespelarna, musikern och ljusdesignern trollar fram en föreställning utifrån publikens förslag – och den blir helt ny varje gång.<br>Kom med och förundras över hur en hel föreställning full av överraskningar, skoj och fantastiska vändningar skapas framför dina ögon!<br>Åldersrekommendation: 6+<br>Längd: cirka 45 min.<br>Språk: finska<br>Platsbokning i Annesalen: annantalo.fi, från 12.6.2026 kl. 8</p><p><b>Downtown Open Mic<br>kl. 19–21, A-scenen</b><br>Downtown Open Mic ordnas på Annegårdens A-scen på Helsingforsdagen 12.6 kl. 19–21! Välkommen att uppträda och njuta av den varma stämningen med programledaren Pyry Aalto. På scenen finns mikrofoner, keyboard och en anslutning för gitarr. Vi har också en DJ på plats, som kan spela bakgrundsmusik. <br>Du kan ansöka om att få uppträda i förväg. Anmälningarna för uppträdanden öppnar i slutet av maj på annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic anmälningsblankett (på finska)</a></u></p><p>Vi ses på Annegården!</p>", "en": "<p>Helsinki Day at Annantalo offers music, theatre and art for the whole family from dawn till dusk.</p><p>Welcome to Annantalo to celebrate Helsinki Day with the whole family! There will be music, theatre, art workshops and socialising from dawn till dusk. Entry to all of the events is free of charge.</p><p><b>Schedule</b><br>9.30 & 10.45 Päistikka orchestra concert (A stage / Annansali if it rains)<br>10.00–15.00 Open art workshop: Elävä Helsinki (Living Helsinki) (front yard / inside if it rains)<br>12.00–12.30 Picnic concert: The Valtuutetut duo (A stage)<br>15.30 & 18.00 Stella Polaris: Maaginen matka (‘A magical journey’)<br>19.00–21.00 Downtown Open Mic (A stage)</p><p><b>Concert by the Päistikka orchestra 9.30 and 10.45, Annantalo A stage</b><br>(If it rains, the concert will be held in Annansali; book in advance to avoid disappointment)<br>In this exhilarating concert, the audience will plunge into a world of adventure and imagination. It's time to dance in a robot disco or chase monsters! Filled with music and stories, the show also invites the audience to get involved.</p><p>Performers:<br>Tuukka Martiskainen – vocals, ukulele, samples<br>Elina Vehkaoja – vocals, keyboards<br>Erno Kettunen – kitara, trumpetti<br>Juhani Saari – basso</p><p>Duration: 30 min<br>Recommended age: 1+<br>Language: Finnish<br>Reservations (in case of rain): annantalo.fi, 12 June from 8.00 onwards</p><p><b>Open art workshop: Elävä Helsinki (‘Living Helsinki’)<br>10.00–15.00, Annantalo front yard</b><br>(Indoors if it rains)<br>What's that dashing there, shooting around? The workshop explores the nature around Annantalo, even peering under rocks. We will observe the smallest of the small and take a look at bigger things.<br>Inspired by the Eliökuntalaisten manifesti (‘A Manifesto for the Living World’), we paint in the wondrous colours of nature. You can read the manifesto in the Annantalo lobby.<br>Bring a magnifying glass and grab a paintbrush!<br>Instructors: Marjut Maristo and Heli Niska<br>Free of charge and open to all ages.</p><p><b>Picnic concert: Valtuutetut duo<br>12.00–12.30, A stage</b><br>Helsinki City Councillors Nora Grotenfelt and Antti Vuorela perform Children songs fin Finnsh and Swedish. There will be stories, nostalgia and good-humoured community spirit.<br>Bring your own picnic and blankets!</p><p><b>Stella Polaris: Maaginen matka (‘A magical journey’)<br>15.30 and 18.00</b><br>In Stella Polaris' improvised play for the whole family, children get to influence the story and the characters. The actors, musician and lighting designer will create the show based on suggestions from the audience – the performance will be different every time.<br>Come along and see a whole play unfold before your eyes, full of surprises, fun and hilarious twists and turns!<br>Recommended age: 6+<br>Duration: approximately 45 min<br>Language: Finnish<br>Seat reservations for Annansali: annantalo.fi, 12 June 2026 from 8.00 onwards</p><p><b>Downtown Open Mic<br>19.00–21.00, A stage</b><br>Downtown Open Mic takes place at Annantalo's A stage on Helsinki Day 12 June at 19.00–21.00! Come and enjoy the warm atmosphere with host Pyry Aalto. On stage you'll find mics, keyboards and a plug for the guitar. The event will also have an on-site DJ who can play backing tracks. <br>You can apply to be a performer in advance. Registrations for performers will open at the end of May on annantalo.fi.</p><p><a href=\"https://forms.gle/jMahogwYyFdxrd7L9\"><u>Open Mic registration form (in Finnish)</a></u></p><p>See you at Annantalo!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68713/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68615", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/malmijazz/", "sv": "https://www.lippu.fi/artist/malmijazz/", "en": "https://www.lippu.fi/artist/malmijazz/" }, "price": { "fi": "20€/15€", "sv": "20€/15€", "en": "20€/15€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:53.618170Z", "last_modified_time": "2026-06-04T12:13:53.618185Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791266.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:53.501079Z", "last_modified_time": "2026-06-08T08:13:15.759321Z", "date_published": null, "start_time": "2026-09-17T16:00:00Z", "end_time": "2026-09-17T17:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet", "en": "http://www.malmitalo.fi/en/events/event/2A1E211749E4F6D12C6AB522BD5354A0/Riitta_Paakki_Quartet" }, "location_extra_info": null, "provider": null, "name": { "fi": "Riitta Paakki Quartet – MalmiJazz", "sv": "Riitta Paakki Quartet – MalmiJazz", "en": "Riitta Paakki Quartet – MalmiJazz" }, "provider_contact_info": null, "short_description": { "fi": "Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä." }, "description": { "fi": "<p>Omaperäisiä ja raikkaita sävellyksiä ja jazzin alkulähteiltä kumpuavaa svengiä.</p><p>Riitta Paakki Quartet on vuonna 2013 perustettu alansa ansioituneimpiin lukeutuvan pianisti <b>Riitta Paakin</b> säveltämää musiikkia soittava yhtye. Kvartetin ilmaisussa kohtaavat malmilaisen Paakin selkeä soittotyyli, <b>Manuel Dunkelin</b> voimakas ja vivahteikas soundi sekä <b>Antti Lötjösen</b> ja <b>Joonas Riipan</b> muodostama poreileva rytmisektio. Yhteissoitossa hehkuu musiikin ilo, joka välittyy myös kuulijoiden sydämiin. Paakin vauhdikkaammat sävellykset soivat arvonsa tuntevasti vuosikymmenten takaista bebopia, rauhallisemmat maalailevat perisuomalaisia melankolisia maisemia. Musiikki huokuu kypsää näkemystä ja valoisaa asennetta.</p><p>Yhtyeen ensimmäinen levy on liveäänitys, <i>Live at Koko Jazz Club</i> (2018). Vuonna 2020 julkaistu <i>Piste</i> oli Emma-palkintoehdokas vuoden jazz-albumiksi. <i>Väri</i> vuodelta 2023 sai myös hyvän vastaanoton.</p><p>Yhtye valmistelee parhaillaan uutta julkaisua ja keikalla kuullaan myös uutta materiaalia!</p><p>Manuel Dunkel – saksofoni<br>Riitta Paakki – piano<br>Antti Lötjönen – basso<br>Joonas Riippa – rummut</p><p>Kesto: 1 t 15 min</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68615/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68922", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/laulavat-tiedekysymykset-2-laulavat-tiedekysymykset-malmitalo-21706029/", "sv": "https://www.lippu.fi/event/laulavat-tiedekysymykset-2-laulavat-tiedekysymykset-malmitalo-21706029/", "en": "https://www.lippu.fi/event/laulavat-tiedekysymykset-2-laulavat-tiedekysymykset-malmitalo-21706029/" }, "price": { "fi": "8€", "sv": "8€", "en": "8€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384950, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:52.640162Z", "last_modified_time": "2026-06-04T12:13:52.640177Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792268.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384950/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:52.520969Z", "last_modified_time": "2026-06-08T08:13:15.374722Z", "date_published": null, "start_time": "2026-09-15T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81196A696929EA5D9B109A44B6471A9F/Laulavat_tiedekysymykset", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81196A696929EA5D9B109A44B6471A9F/Laulavat_tiedekysymykset", "en": "http://www.malmitalo.fi/en/events/event/81196A696929EA5D9B109A44B6471A9F/Laulavat_tiedekysymykset" }, "location_extra_info": null, "provider": null, "name": { "fi": "Laulavat tiedekysymykset", "sv": "Laulavat tiedekysymykset", "en": "Laulavat tiedekysymykset" }, "provider_contact_info": null, "short_description": { "fi": "Laulavat tiedekysymykset on koko perheen konsertti, joka pohjautuu Helsingin Sanomissa julkaistaviin lasten tiedekysymyksiin." }, "description": { "fi": "<p>Laulavat tiedekysymykset on koko perheen konsertti, joka pohjautuu Helsingin Sanomissa julkaistaviin lasten tiedekysymyksiin.</p><p><i>Miksi mummo ei nuku talviunta? Puhuvatko puut oikeasti toisilleen? Voiko ampiainen lentää Brasiliaan?</i></p><p>Konsertin juontaa <b>Mari Rantasila</b>, joka kutsuu lapset pohtimaan visaisia kysymyksiä. Musiikillinen maailma kulkee laulelmasta ska-poljentoon tanssittaen ja välillä rauhoittaen viisihenkisen yhtyeen voimin. Esityksessä yleisö otetaan mukaan kysymysten pohtimiseen, tanssiin ja lauluun.</p><p><i>Laulavat tiedekysymykset 2</i> -albumi julkaistiin helmikuussa 2026. Ensimmäinen <i>Laulavat tiedekysymykset</i> -albumi julkaistiin vuonna 2021. Se oli ehdolla Emma-Gaalassa vuoden albumiksi lastenmusiikin kategoriassa ja albumin lauluntekijä <b>Suvi Isotalo</b> sai Jellonagaalassa Vuoden tulokas -palkinnon. Konsertti soveltuu koko perheelle vauvasta vaariin.</p><p>Juontaja, solisti: Mari Rantasila<br>Pianisti, solisti: Suvi Isotalo<br>Basisti, solisti: Jouni Aslak Raatikainen<br>Viulisti, kitaristi: Antti Kokkola<br>Rumpali: Juha Räsänen</p><p>Kesto: 40 min<br>Ikäsuositus: 5–10 v.</p><p>Liput: 8 €</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68922/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68614", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/joakimberghaelladelesauros/malmijazz-joakim-berghaell-adele-sauros-runoja-rauhalle-t-i-m-no-fr-4153350/", "sv": "https://www.lippu.fi/artist/joakimberghaelladelesauros/malmijazz-joakim-berghaell-adele-sauros-runoja-rauhalle-t-i-m-no-fr-4153350/", "en": "https://www.lippu.fi/artist/joakimberghaelladelesauros/malmijazz-joakim-berghaell-adele-sauros-runoja-rauhalle-t-i-m-no-fr-4153350/" }, "price": { "fi": "20€/15€", "sv": "20€/15€", "en": "20€/15€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384949, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-04T12:13:51.573991Z", "last_modified_time": "2026-06-04T12:13:51.574007Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791262.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384949/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-04T12:13:51.254086Z", "last_modified_time": "2026-06-08T08:13:14.581046Z", "date_published": null, "start_time": "2026-09-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/22A1AB8FC1795B43F4D3346B26BCEF74/Joakim_Berghall_Adele_Sauros_FI_T_I_M_NO-FR_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/22A1AB8FC1795B43F4D3346B26BCEF74/Joakim_Berghall_Adele_Sauros_FI_T_I_M_NO-FR_", "en": "http://www.malmitalo.fi/en/events/event/22A1AB8FC1795B43F4D3346B26BCEF74/Joakim_Berghall_Adele_Sauros_FI_T_I_M_NO-FR_" }, "location_extra_info": null, "provider": null, "name": { "fi": "Joakim Berghäll & Adele Sauros (FI) | T.I.M. (NO-FR) – MalmiJazz | Vapaat äänet 30 vuotta", "sv": "Joakim Berghäll & Adele Sauros (FI) | T.I.M. (NO-FR) – MalmiJazz", "en": "Joakim Berghäll & Adele Sauros (FI) | T.I.M. (NO-FR) – MalmiJazz" }, "provider_contact_info": null, "short_description": { "fi": "Tänä syksynä 30-vuotisjuhlaansa viettävä tuottaja Charles Gilin Vapaat äänet esittelee Malmitalon konsertissa kaksi kokoonpanoa." }, "description": { "fi": "<p>Tänä syksynä 30-vuotisjuhlaansa viettävä tuottaja Charles Gilin Vapaat äänet esittelee Malmitalon konsertissa kaksi kokoonpanoa.</p><p><i>Runoja rauhalle – Poems for Peace</i> on kahden saksofonistin, Joakim Berghällin ja Adele Saurosin tunteikas, meditatiivinen rauhanmanifesti. Norjalais-ranskalaisen yhteistyön pohjalta muodostunut T.I.M. viljelee kiehtovaa kokeellista musiikkia folkin hengessä. Tämä on 38. Vapaiden äänien ja Suomen Jazzliiton yhteistuotantokiertue alkaen vuodesta 1996.</p><p><b> Joakim Berghäll & Adele Sauros: Runoja rauhalle</b><br>Adele Sauros – tenori- ja sopranosaksofoni<br>Joakim Berghäll – baritonisaksofoni, sello</p><p><b>Joakim Berghällin</b> ja <b>Adele Saurosin</b> duokonsertissa kuultavat sävellykset ovat peräisin Berghällin yhdeltä istumalta soittamasta sooloimprovisaatiosta, jonka katalyyttina sodanvastaiset, maailman eri kriisialueilla kirjoitetut runot abstraktilla tavalla toimivat. Sävellysten melodiset aihiot on kirjoitettu ylös sellaisenaan, ääntäkään muuttamatta, improvisaation impulsseille uskollisena. Berghäll ja Sauros äänittivät tuotokset Kampin kappelissa ja näin syntyi Runoja Rauhalle -albumi.</p><p><b>T.I.M.</b><br>Karoline Wallace – laulu, nauhat<br>Inger Hannisdal Hardinger – viulu, laulu<br>Sébastien Palis – piano, syntetisaattori, sävellys</p><p>T.I.M. on ranskalaisen pianisti <b>Sébastien Palisin</b> kokoama trio norjalaisten laulaja <b>Karoline Walacen</b> ja viulisti <b>Inger Hannisdalin</b> kanssa. Yhtyeen kiehtova minimalismi kulkee kansanmusiikin ja improvisaation rajamailla, se vuorottelee valon ja varjon välissä sekoittaen akustista ilmaisua ja kotitekoista elektroniikkaa. Laulujen tarinoita syntyy lasten katseen kautta tai rakentuu vaistonvaraisista muistoista tai vaikka inuiittinaisen ikivanhasta lorusta. Unkarilainen levymerkki BMC julkaisee T.I.M.in debyyttialbumin <i>Tall, Infinite, Microscopic</i> syyskuussa 2026.<br> <br> <br>Kiertueen yhteystuotanto: Vapaat äänet & Suomen Jazzliitto<br>Kiertuetta tukevat: AJC, CNV, Ranskan Instituutti</p><p>Kesto: 2 h, sis. 20 min väliajan</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68614/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68377", "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/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1801315, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-07T08:13:27.231123Z", "last_modified_time": "2026-04-07T08:13:27.231137Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777739.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1801315/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-07T08:13:27.105917Z", "last_modified_time": "2026-06-08T08:13:11.261129Z", "date_published": null, "start_time": "2026-08-20", "end_time": "2026-09-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8507968AAAC8B1844AA2E54CC8975FFA/Mot_det_okanda", "en": "http://www.vuotalo.fi/en/events/event/8507968AAAC8B1844AA2E54CC8975FFA/Kohti_tuntematonta_Towards_the_unknown_" }, "location_extra_info": null, "provider": null, "name": { "fi": "Kohti tuntematonta – Pasi Pitkäsen kuvituksia huimista seikkailuista", "sv": "Mot det okända – Pasi Pitkänens illustrationer av svindlande äventyr", "en": "Kohti tuntematonta (‘Towards the unknown’) – Pasi Pitkänen's illustrations of dizzying adventures" }, "provider_contact_info": null, "short_description": { "fi": "Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?", "sv": "Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?", "en": "Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?" }, "description": { "fi": "<p>Pasi Pitkäsen tunnelmalliset kuvitukset avaavat ikkunoita mielikuvituksellisiin maailmoihin. Minkälaisia vieraita todellisuuksia näet kuvissa?</p><p>Kohti tuntematonta kutsuu sinut hyppäämään seikkailuun!</p><p>Kuvituksella on tärkeä tehtävä sanojen henkiin puhaltamisessa. Katso vaikka itse! Näet ehkä arvoituksellisia paikkoja, outoja otuksia, valoa ja varjoa, taikavoimaisia käärmeitä, kiehtovia riimumerkkejä. Pitkäsen kuvat tihkuvat jännitystä, uhkaa ja vaaraakin. Uskallatko katsoa kuvaa, tarttua kirjaan ja suunnata kohti tuntematonta?</p><p>Lapsille ja nuorille suunnattu näyttely- ja tapahtumakokonaisuus on koottu Pasi Pitkäsen laajasta kuvitustuotannosta. Näyttelyyn on valikoitu kuvia kirjasarjoista, joissa Pitkänen on tasavahvana tekijänä kirjailijoiden rinnalla: <i>Pate</i> (Timo Parvela), <i>Kepler62</i> (Timo Parvela ja Bjørn Sortland), <i>Paavali Pattinen</i> (Hannele Lampela) sekä <i>Ouroboros</i> (Silja Sillanpää).</p><p>Näyttelyn oheisohjelmaa suunnataan kouluille ja perheille.</p><p>Kansainvälisenä lukutaitopäivänä 8.9. järjestetään koululaisille tapahtuma-aamu ja lauantaina 19.9. perhepäivä, joissa molemmissa Pasi Pitkänen on mukana.</p><p>Maanantaiaamupäivisin näyttelytila on varattu koululaisten työpajatyöskentelyyn.</p><p><b>Pasi Pitkänen</b> on monipuolinen kuvittaja, kirjailija ja graafikko, jonka kuvitukset ovat saavuttaneet myös kansainvälistä menestystä. Pitkänen on valmistunut graafiseksi suunnittelijaksi Aalto-yliopistosta ja työskennellyt kuvittajana, hahmosuunnittelijana ja graafikkona Rovio Entertainmentilla.</p><p>Nykyisin hän toimii freelancekuvittajana ja asuu osan vuodesta Japanissa.</p><p>Näyttelyn ja tapahtumakokonaisuuden ovat tuottaneet Vuotalon kulttuuripalveluista Salla Fornaro ja Vuosaaren kirjastosta Emilia Kämäräinen yhteistyössä Pasi Pitkäsen kanssa.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p><p>Näyttely on avoinna 13.8.-26.9.2026.</p>", "sv": "<p>Pasi Pitkänens stämningsfulla illustrationer öppnar dörrar till fantasivärldar. Hurdana främmande verkligheter ser du på bilderna?</p><p>Mot det okända bjuder in dig på ett äventyr! Illustrationer är viktiga för att ge liv åt orden. Se själv! Du kanske ser mystiska platser, konstiga varelser, ljus och skugga, magiska ormar och fascinerande runrad. Pitkänens bilder ångar av spänning, hot och även fara. Vågar du titta på bilden, fatta tag i boken och gå mot det okända?</p><p>Utställnings- och evenemangshelheten för barn och unga består av Pasi Pitkänens omfattande illustrationsproduktion. Utställningen innehåller ett urval av bilder från bokserier där Pitkänen är en jämbördig upphovsman vid sidan av författarna: Pate (Timo Parvela), Kepler62 (Timo Parvela och Bjørn Sortland), Paavali Pattinen (Hannele Lampela) samt Ouroboros (Silja Sillanpää).</p><p>Utställningen är öppen 13.8–26.9.2026. Programmet i anslutning till utställningen är avsett för skolor och familjer. På Internationella läskunnighetsdagen 8.9 ordas en evenemangsmorgon för skolelever och lördagen 19.9 en familjedag. Pasi Pitkänen deltar i båda evenemangen. På måndagsförmiddagar är utställningslokalen reserverad för verkstäder för skolelever.</p><p><b>Pasi Pitkänen</b> är en mångsidig illustratör, författare och grafiker, vars illustrationer också har rönt internationell framgång. Pitkänen tog examen som grafisk designer vid Aalto-universitetet och har arbetat som illustratör, figurdesigner och grafiker på Rovio Entertainment. För närvarande arbetar han som frilansillustratör och bor en del av året i Japan.</p><p>Utställningen och evenemangshelheten har producerats av Salla Fornaro från Nordhusets kulturtjänster och Emilia Kämäräinen från Nordsjö bibliotek i samarbete med Pasi Pitkänen.</p><p>Inträdet till utställningen och evenemangen är fritt.</p>", "en": "<p>Pasi Pitkänen's atmospheric illustrations open windows to imaginary worlds. What kind of foreign realities do you see in the pictures?</p><p>Kohti tuntematonta (‘Towards the unknown’) invites you to jump into the adventure! Illustration plays an important role in bringing words to life. See for yourself! You may see mysterious places, strange creatures, light and shadow, magical snakes and fascinating runic characters. Pitkänen's illustrations exude excitement, threat and even some danger. Do you dare look at the image, pick up a book and head into the unknown?</p><p>The exhibition and event for children and young people is a compilation of Pasi Pitkänen's extensive illustrations. The exhibition includes a selection of images from book series in which Pitkänen is an equal creator alongside the authors: Pate (Timo Parvela), Kepler62 (Timo Parvela and Bjørn Sortland), Paavali Pattinen (Hannele Lampela) and Ouroboros (Silja Sillanpää).</p><p>The exhibition is open from 13 August to 26 September 2026. The accompanying programme to the exhibition is aimed at schools and families. On International Literacy Day on 8 September, Vuotalo will host a morning of events for schoolchildren, and on Saturday 19 September, the centre will host a family day, both with Pasi Pitkänen. On Monday mornings, the exhibition space will be reserved for workshops for schoolchildren.</p><p><b>Pasi Pitkänen</b> is a versatile illustrator, writer and graphic designer whose works have also achieved international success. Pitkänen graduated as a graphic designer from Aalto University and has worked as an illustrator, character designer and graphic designer at Rovio Entertainment. He now works as a freelance illustrator and lives in Japan for part of the year.</p><p>The exhibition and the event have been produced by Salla Fornaro from Vuotalo’s cultural services and Emilia Kämäräinen from Vuosaari Library in collaboration with Pasi Pitkänen.</p><p>The exhibition and events are free of charge.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68377/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69262", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384984, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-08T07:13:58.136340Z", "last_modified_time": "2026-06-08T07:13:58.136356Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_784172.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384984/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2026-06-08T07:13:57.975478Z", "last_modified_time": "2026-06-08T07:13:58.411713Z", "date_published": null, "start_time": "2026-11-06T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_", "en": "http://www.vuotalo.fi/en/events/event/7E7F772ECC404D08C1705B9BFBD05491/Opera_Box_Giellavealgu_" }, "location_extra_info": null, "provider": null, "name": { "fi": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset", "sv": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset", "en": "Opera Box: Giellavealgu – Svenska Dagen i Nordhuset" }, "provider_contact_info": null, "short_description": { "fi": "Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!", "sv": "Svenska Dagen firas med mångspråkig barnopera i Nordhuset!" }, "description": { "fi": "<p>Ruotsalaisuuden päivää juhlistetaan Vuotalossa monikielisellä oopperaesityksellä!</p><p>Giellavealgu (Kielenvaihtaja) on tammikuussa 2026 ensi-iltansa saanut Opera Boxin tuottama, 3–12-vuotiaille suunnattu monikielinen lastenooppera. Teos käsittelee pohjoisen luontoa, ystävyyttä ja kieltä naalin, sinirinnan ja tunturipöllön etsiessä yhteistä ääntä. Oopperan ovat ohjanneet ja käsikirjoittaneet <b>Isa Kortekangas</b> ja <b>Ville Salonen</b> ja sen Lapin luontoon pohjautuvan, etno-vaikutteisen ja viulun säestämän musiikin ovat säveltäneet <b>Pessi Jouste</b> ja <b>Elias Nieminen</b>.</p><p>Ooppera korostaa pohjoisten kielten ja kulttuurien merkitystä ja on osa laajempaa kotimaisten<br>kielten teemavuotta. Sen keskeisiä teemoja ovat saamelaisuus, identiteetti, luonnon monimuotoisuus ja tasa-arvoinen ystävyys.</p><p>Ooppera esitettiin ensimmäistä kertaa 13.1.2026 Helsingissä, Aleksanterin teatterissa.</p><p>Esityskielet: pohjoissaame, suomi, ruotsi, somali, arabia, ukraina ja swahili<br>Kesto: noin 35 minuuttia</p>", "sv": "<p>Svenska Dagen firas med mångspråkig barnopera i Nordhuset!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69262/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69203", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-the-samurai-of-prog-vuotalo-21709440/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-the-samurai-of-prog-vuotalo-21709440/", "en": "https://www.lippu.fi/event/klubb-ankdamm-the-samurai-of-prog-vuotalo-21709440/" }, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384912, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T11:13:35.885477Z", "last_modified_time": "2026-06-02T11:13:35.885492Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792323.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384912/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-02T11:13:35.732898Z", "last_modified_time": "2026-06-05T13:14:00.413891Z", "date_published": null, "start_time": "2026-09-18T15:00:00Z", "end_time": "2026-09-18T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A79A4971EA8FE67D88C2417C77674A69/The_Samurai_of_Prog", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A79A4971EA8FE67D88C2417C77674A69/The_Samurai_of_Prog", "en": "http://www.vuotalo.fi/en/events/event/A79A4971EA8FE67D88C2417C77674A69/The_Samurai_of_Prog" }, "location_extra_info": null, "provider": null, "name": { "fi": "The Samurai of Prog – Klubb Ankdamm", "sv": "The Samurai of Prog", "en": "The Samurai of Prog" }, "provider_contact_info": null, "short_description": { "fi": "The Samurai of Prog (TSOP) on poikkeuksellinen voima modernissa progressiivisessa rockissa.", "sv": "The Samurai of Prog har gjort sig kända för sin rika, klassiskt influerade progrockstil samt sina många konceptuella album.", "en": "The Samurai of Prog (TSOP) is a truly exceptional force in modern progressive rock." }, "description": { "fi": "<p>The Samurai of Prog (TSOP) on poikkeuksellinen voima modernissa progressiivisessa rockissa.</p><p>Kunnianhimoinen, visuaalisesti upea ja musiikillisesti hienostunut yhtye on myynyt maailmanlaajuisesti yli 30 tuhatta albumia. Vastatakseen lukuisissa haastatteluissa esitettyihin kysymyksiin ja ympäri maailmaa tulleisiin fanien toiveisiin TSOP lähtee vihdoin kiertueelle Suomeen ja muualle Eurooppaan vuonna 2026.</p><p>TSOP on maailmanluokan progressiivisen rockin kollektiivi, joka tunnetaan elokuvamaisista konseptialbumeistaan, rehevistä sinfonisista sovituksistaan sekä <b>Ed Unitskyn</b> vaikuttavista visuaaleista. Yhtyeen perusti vuonna 2009 basisti <b>Marco Bernard</b>, jonka seuraan liittyi pian suomalainen rumpali <b>Kimmo Pörsti</b> sekä yhdysvaltalainen multi-instrumentalisti ja laulaja <b>Steve Unruh</b>. Nämä kolme muodostivat TSOP:n ydintrion.</p><p>He ovat sittemmin tehneet yhteistyötä legendojen kanssa, kuten Jon Davisonin (Yes), Roine Stoltin (The Flower Kings), Steve Hackettin (Genesis), Ton Scherpenzeelin (Camel, Kayak) ja Clive Nolanin (Pendragon) kanssa. Heidän arvostettu kataloginsa kattaa yli 20 albumia, vuoden 2011 <i>Undercoverista</i> vuoden 2024 <i>The Time Machineen</i>.</p><p>Vuonna 2026 TSOP tuo eeppiset äänimaisemansa ensimmäistä kertaa lavalle dynaamisella kokoonpanolla, johon kuuluvat Marco Grieco (koskettimet), Toni “Tony Riveryman” Jokinen (kitara), Risto Salmi (saksofonit, EWI), Bona Sandström (laulu), Jan-Olof Strandberg (basso) ja Kimmo Pörsti (rummut).</p><p>Klubi-ilta, A-oikeudet, Café Pokkari huolehtii tarjoilusta.<br>Ovet avataan klo 17.30. Konsertin kesto: noin 2 tuntia, sisältäen väliajan.<br>Liput à 20 / 15 € osoitteesta Lippu.fi tai lippuautomaatilta ovelta.</p>", "sv": "<p>The Samurai of Prog har gjort sig kända för sin rika, klassiskt influerade progrockstil samt sina många konceptuella album.</p><p>The Samurai of Prog är ett multinationellt progressivt rockband ursprungligen bildats 2009 av den Finland-baserade italienska basisten Marco Bernard och producenten/trummisen Kimmo Pörsti känt för sina symfoniska arrangemang och samarbeten med ett stort antal gästartister.</p><p>Bandet arbetar ofta med internationella kompositörer och musiker, vilket ger varje album en unik men ändå sammanhållen ljudbild. På albumen gästar bla. Steve Hackett (Genesis), Jon Davison (Yes) Ronnie Stolt (The Flower Kings).</p><p>Sedan starten har de släppt ett stort antal album och blivit uppskattade inom den symfoniska progscenen för sina ambitiösa produktioner, fantasifulla teman och detaljerade omslag. TSOP har sålt över 30.000 plattor. Konserten på Nordhuset blir en avslutningskonsert för TSOP första Europaturne, som startar från Italien 5.9.2026.</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari.<br>Dörrarna öppnas kl. 17.30. Konsertens längd: är ca 120 min. inkl. Paus.<br>Biljetter à 20 / 15 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>The Samurai of Prog (TSOP) is a truly exceptional force in modern progressive rock.</p><p>The ambitious, visually stunning, and musically sophisticated collective has more than 30 000 albums sold worldwide. After inquiries in numerous interviews and fan requests globally, TSOP is finally playing a live tour spanning Finland and Europe in 2026.</p><p>The Samurai of Prog (TSOP) is a world-class progressive rock collective known for cinematic concept albums, lush symphonic arrangements, and striking visual artistry by <b>Ed Unitsky</b>. The band was founded in 2009 by bassist <b>Marco Bernard</b>, who was soon joined by Finnish drummer <b>Kimmo Pörsti</b>, and USA-based multi-instrumentalist/singer <b>Steve Unruh</b>. These three formed the core trio of TSOP.</p><p>They have since collaborated with legends including Jon Davison (Yes), Roine Stolt (The Flower Kings), and Steve Hackett (Genesis), Ton Scherpenzeel (Camel, Kayak) and Clive Nolan (Pendragon). Their acclaimed discography spans over 20 albums, from 2011’s <i>Undercover</i> to 2024’s <i>The Time Machine</i>.</p><p>In 2026, TSOP will take their epic soundscapes to the stage for the very first time, with a dynamic line-up featuring Marco Grieco (keyboards), Toni “Tony Riveryman” Jokinen (guitar), Risto Salmi (saxes, EWI), Bona Sandström (vocals), Jan-Olof Strandberg (bass), and Kimmo Pörsti (drums).</p><p>Club night, refreshments by Café Pokkari, starting from 5:30 PM. Duration: about 2 hours, including intermission. Tickets à 20 / 15 € @ Lippu.fi or from the ticket machine at the door.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69203/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68407", "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:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:760/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:761/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p18311/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-13T13:13:25.591922Z", "last_modified_time": "2026-06-05T12:13:57.782396Z", "date_published": null, "start_time": "2026-08-27T12:30:00Z", "end_time": "2027-05-13T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna", "sv": "http://www.annantalo.fi/sv/evenemang/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna", "en": "http://www.annantalo.fi/en/events/event/502C750EBEDBD4A227708BD010BCE1E7/Sydkustens_ordkonstskola_Manusmastarna" }, "location_extra_info": null, "provider": null, "name": { "fi": "Sydkustens ordkonstskola: Manusmästarna – 11–12-vuotiaat, 2014-2015 syntyneet", "sv": "Sydkustens ordkonstskola: Manusmästarna – 11–12-åringar, född 2014-2015", "en": "Sydkustens ordkonstskola: Manusmästarna – 11–12-year-olds, born 2014-2015" }, "provider_contact_info": null, "short_description": { "fi": "Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!", "sv": "Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!", "en": "Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!" }, "description": { "fi": "<p>Tykkäätkö leikkiä kielellä? Luotko mielelläsi jännittäviä tekstejä? Kuplivatko sinussa tarinat? Vastasitko kysymyksiin myöntävästi? Silloin sanataide on sinulle!</p><p>Sydkustens ordkonstskola järjestää sanataidetta laajan oppimäärän mukaisena taiteen perusopetuksena. Tunneilla saat keksiä omia tarinoita, luoda ja kirjoittaa sekä runoutta, proosaa että draamaa. Saat tukea luoville ideoillesi, palautetta teksteistäsi ja mahdollisuuden kehittyä omaan tahtiisi. Opetus noudattaa sanataidekoulun opetussuunnitelmaa, joka löytyy osoitteesta ordkonst.fi. Opetuskieli ruotsi.</p><p>Ryhmissä on 14 oppituntia syyslukukaudella ja 16 oppituntia kevätlukukaudella. Hinta on 140 €/lukukausi 60 minuutin oppitunneille ja 180 €/lukukausi 90 minuutin oppitunneille. Hintaan sisältyy valinnainen kirjallisuuskurssi. Ilmoittautuminen avautuu 27.4.2026 osoitteessa sydkusten.eepos.fi</p>", "sv": "<p>Gillar du att trolla med text? Skapar du gärna spännande skrifter? Bubblar du av berättelser? Svarade du ja på frågorna? Då är ordkonst något för dig!</p><p>Sydkustens ordkonstskola arrangerar ordkonst som grundläggande konstundervisning enligt fördjupad lärokurs. Under lektionerna får du fantisera fram egna berättelser, skapa och skriva både poesi, prosa och dramatik. Du får stöd för dina kreativa idéer, respons på dina texter och får utvecklas i egen takt. Undervisningen följer ordkonstskolans läroplan som finns på ordkonst.fi.</p><p>Grupperna har 14 lektioner under höstterminen och 16 lektioner under vårterminen. Avgiften är 140 €/ termin för 60 minuter långa och 180 €/termin för 90 minuter långa lektioner. I avgiften ingår en valfri litteraturkurs. Anmälan öppnas 27.4.2026 på sydkusten.eepos.fi</p>", "en": "<p>Do you like to work magic with text? Do you enjoy crafting exciting prose? Is your imagination overflowing? Did you answer yes to the questions? Then creative writing is for you!</p><p>Sydkustens ordkonstskola arranges creative writing as basic arts education according to the advanced syllabus. During lessons, you get to create your own stories and produce poetry, prose, and drama. You'll receive support for your creative ideas, feedback on your texts, and get to develop at your own pace. The teaching follows the school’s curriculum, which can be found at ordkonst.fi. The language of instruction is Swedish.</p><p>The groups have 14 lessons during the autumn semester and 16 lessons during the spring semester. The fee is 140 €/semester for 60-minute lessons and 180 €/semester for 90-minute lessons. An optional literature course is included in the fee. Registration opens April 27, 2026, at sydkusten.eepos.fi.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68407/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }