Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=30
{ "meta": { "count": 33821, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=31", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=29" }, "data": [ { "id": "kulke:69479", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385275, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:06.013464Z", "last_modified_time": "2026-06-22T06:14:06.013478Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789657.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385275/?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-22T06:14:05.930817Z", "last_modified_time": "2026-06-22T06:14:06.138645Z", "date_published": null, "start_time": "2026-09-18T06:00:00Z", "end_time": "2026-09-18T06:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka!", "en": "Metka matka!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/64DDBB45193C4381550C4167E7710169/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/64DDBB45193C4381550C4167E7710169/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/64DDBB45193C4381550C4167E7710169/Metka_matka_" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään taidokasta jongleerausta, notkeaa tanssia ja kekseliäitä akrobaattisia temppuja.</p><p>Esityksessä Vekkuli-Vilma kohtaa matkallaan joukon visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämmin, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys, joka vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus vievät aina eteenpäin. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Konsepti, koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Mantere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi- tuotanto</p><p>Ikäsuositus: 3+<br>Kesto: n. 40 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69479/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68450", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385274, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:05.443460Z", "last_modified_time": "2026-06-22T06:14:05.443476Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789619.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385274/?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-22T06:14:05.347643Z", "last_modified_time": "2026-06-22T06:14:05.573883Z", "date_published": null, "start_time": "2026-09-17T07:30:00Z", "end_time": "2026-09-17T08:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka!", "en": "Metka matka!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/8AC6AB33FFD25721608F87433BC07804/Metka_matka_" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään taidokasta jongleerausta, notkeaa tanssia ja kekseliäitä akrobaattisia temppuja.</p><p>Esityksessä Vekkuli-Vilma kohtaa matkallaan joukon visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämmin, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys, joka vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus vievät aina eteenpäin. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Konsepti, koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Mantere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi- tuotanto</p><p>Ikäsuositus: 3+<br>Kesto: n. 40 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68450/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69478", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385273, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-22T06:14:05.032978Z", "last_modified_time": "2026-06-22T06:14:05.033011Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789656.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385273/?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-22T06:14:04.907791Z", "last_modified_time": "2026-06-22T06:14:05.248184Z", "date_published": null, "start_time": "2026-09-17T06:00:00Z", "end_time": "2026-09-17T06:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Metka matka! – Tanssi- ja sirkusesitys päiväkotiryhmille", "sv": "Metka matka!", "en": "Metka matka!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_", "sv": "http://www.annantalo.fi/sv/evenemang/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_", "en": "http://www.annantalo.fi/en/events/event/B5A8E43061ECBCDF573BE2E623305622/Metka_matka_" }, "description": { "fi": "<p>Metka matka! on lapsille suunnattu vauhdikas ja lämminhenkinen tanssia ja sirkusta yhdistelevä esitys.</p><p>Teos seuraa Vekkuli-Vilman seikkailuja hänen etsiessään tietään salaperäiseen Metkalan kylään. Matkan varrella nähdään taidokasta jongleerausta, notkeaa tanssia ja kekseliäitä akrobaattisia temppuja.</p><p>Esityksessä Vekkuli-Vilma kohtaa matkallaan joukon visaisia tehtäviä ja pulmia, jotka hänen on ratkaistava ehtiäkseen perille Metkalan kylään ennen iltaa. Lähtölaskenta seikkailulle on alkanut!</p><p><i>Metka matka!</i> on lämmin, mielikuvitteluun kutsuva ja kutkuttavan taidokas esitys, joka vie lapset mukaan seikkailuun, jossa yhteistyö ja luovuus vievät aina eteenpäin. Esitys palkittiin lastenteatterin ideahautomo ITUn vuoden 2026 Pikku Itu -palkinnolla.</p><p>Työryhmä:<br>Konsepti, koreografia ja ohjaus: Jussi Väänänen<br>Esiintyjä: Anniina Peltovako<br>Valo- ja lavastussuunnittelu: Juho Rahijärvi<br>Pukusuunnittelu: Kati Mantere<br>Äänisuunnittelu: Touko Kemppainen<br>Tuotanto: Jussi Väänänen ja Nomadi- tuotanto</p><p>Ikäsuositus: 3+<br>Kesto: n. 40 min</p><p><u><a> href=\"https://kultus.hel.fi/fi/event/kultus:agplcgl5nu\">Ilmoita ryhmäsi esityksiin osoitteessa kultus.hel.fi 17.8. alkaen</u></a></p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69478/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69352", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385072, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T07:13:50.332241Z", "last_modified_time": "2026-06-11T07:13:50.332254Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385072/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-11T07:13:50.098045Z", "last_modified_time": "2026-06-22T06:13:55.745303Z", "date_published": null, "start_time": "2026-08-12T13:00:00Z", "end_time": "2026-08-12T16:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Teija Niku & Juha Kujanpää | Etnosoi! Chiwalala/Saastamoinen duo | Baraka Issabu Quintet – Etno-Espa", "sv": "Teija Niku & Juha Kujanpää | Etnosoi! Chiwalala/Saastamoinen duo | Baraka Issabu Quintet – Etno-Espa", "en": "Teija Niku & Juha Kujanpää | Etnosoi! Chiwalala/Saastamoinen duo | Baraka Issabu Quintet – Etno-Espa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Etno-Espan päätöspäivänä kuullaan pianon ja haitarin dialogia, tansanialaissuomalaista yhteissoittoa sekä itäafrikkalaisia afrojazz sävyjä.", "sv": "På Etno-Espas avslutningsdag får publiken uppleva en dialog mellan piano och dragspel, tanzanisk-finländskt samspel, samt toner av östafrikansk afro-jazz.", "en": "On the final day of Etno-Espa, the stage overflows with dialogue between piano and accordion, Tanzanian-Finnish duetting, and tones of East-African jazz." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/9313269002C967DF0F853F4E523B7A6B/Teija_Niku_Juha_Kujanpaa_Etnosoi_Chiwalala_Saastamoinen_duo_Baraka_Issabu_Quintet", "sv": "http://www.espanlava.fi/sv/evenemang/event/9313269002C967DF0F853F4E523B7A6B/Teija_Niku_Juha_Kujanpaa_Etnosoi_Chiwalala_Saastamoinen_duo_Baraka_Issabu_Quintet", "en": "http://www.espanlava.fi/en/events/event/9313269002C967DF0F853F4E523B7A6B/Teija_Niku_Juha_Kujanpaa_Etnosoi_Chiwalala_Saastamoinen_duo_Baraka_Issabu_Quintet" }, "description": { "fi": "<p>Etno-Espan päätöspäivänä kuullaan pianon ja haitarin dialogia, tansanialaissuomalaista yhteissoittoa sekä itäafrikkalaisia afrojazz sävyjä.</p><p><b>16.00 | Teija Niku & Juha Kujanpää</b></p><p>Haitaristi Teija Niku ja pianisti Juha Kujanpää tunnetaan persoonallisina säveltäjinä ja instrumenttiensa suvereeneina hallitsijoina. Heidän musiikkinsa ottaa vaikutteita mm. kansanmusiikista, klassisesta ja jazzista.</p><p>Niku ja Kujanpää ovat tehneet yhteistyötä yli 15 vuoden ajan mm. kansanmusiikkitrio Karunassa. Ajatus uuden materiaalin säveltämisestä pianon ja haitarin duolle syntyi pandemian aikana. Molemmat sävelsivät materiaalia tahoillaan, joka sitten muotoutui säännöllisissä soittosessioissa vuosien 2022 ja 2023 aikana.</p><p>Uudet sävellykset pääsevät oikeuksiinsa, kun piano ja haitari toimivat tasavertaisina kumppaneina, kumpikin vuoroin solistisena ja säestävänä osapuolena – improvisaatiota unohtamatta. Yhteistyö huipentui levyyn <i>Aamunkoitto</i>, jonka Rockadillo Records julkaisi maaliskuussa 2025.<br> <br>Teija Niku – haitari<br>Juha Kujanpää – piano</p><p><b>17.15 | Etnosoi! Chiwalala/Saastamoinen duo</b></p><p>Chiwalala/Saastamoinen duo on <b>Arnold Chiwalalan</b> ja <b>Mikael Saastamoisen</b> duoprojekti, joka on perustettu vuonna 2021. Duo julkaisee ensimmäisen EP:nsä vuonna 2026.<br> <br>Duon musiikillisessa työskentelyssä kohtaavat tansanialainen perinteinen musiikki, suomalainen kansanmusiikki ja afroamerikkalainen jazzkontrabasson soitto sen musiikkiperinteen mukaisesti. Duon musiikki saa alkunsa yhteisissä soittohetkissä, joissa jammaillaan ja kokeillaan rohkeasti uusia sointiyhdistelmiä ja rytmejä. Runsas ja syventynyt yhteissoitto on elintärkeä lähtökohta sävellyksille. Sävellyksissä on myös osia, joissa improvisoidaan tansanialaisen ja afroamerikkalaisen perinteen mukaisesti.<br> <br>Konsertin tarjoaa Maailman musiikin keskus.</p><p><b>18.30 | Baraka Issabu Quintet</b></p><p>Baraka Issabu on tansanialainen pianisti, musiikkipedagogi, säveltäjä, sovittaja ja tuottaja, joka asuu Helsingissä. Itäafrikkalaisissa musiikkiperinteissä juurtunut Issabu yhdistää työssään perinteisiä rytmejä ja melodista kieltä afrojazziin, afro-fuusioon ja jazziin, pianon ollessa hänen keskeinen tarinankerrontainstrumenttinsa. Ollessaan Itä-Afrikan globaalin musiikin kampuksella Tansaniassa, Baraka on syventänyt työtään alueellisten musiikkikulttuurien dokumentoinnissa, esiintymisessä ja välittämisessä.<br> <br>Vuonna 2023 hän muutti Suomeen suorittamaan kandidaatin ja maisterin tutkintojaan Sibelius-Akatemian globaalin musiikin ohjelmassa, ja laajensi taiteellista horisonttiaan perusteellisen opiskelun ja kulttuurienvälisen yhteistyön avulla. Suomessa ollessaan Baraka onnistui perustamaan kvintetin, joka yhdistää suomalaisia ja tansanialaisia muusikoita – luokkatovereita, jotka ovat olleet yhteydessä opintojensa kautta – luoden dynaamisen yhtyeen, jota muokkaa yhteinen oppiminen ja kulttuurienvälinen vaihto.<br> <br>Baraka Issabu Quintet:<br>Baraka Issabu – piano/koskettimet, laulu<br>Humphrey Mubba – bassokitara, laulu<br>Vilho Luohivuori – rummut<br>Joni Viere – kitara<br>Jesse Vilhomaa – saksofoni</p>", "sv": "<p>På Etno-Espas avslutningsdag får publiken uppleva en dialog mellan piano och dragspel, tanzanisk-finländskt samspel, samt toner av östafrikansk afro-jazz.</p><p><b>16.00 | Teija Niku & Juha Kujanpää</b></p><p>Dragspelaren Teija Niku och pianisten Juha Kujanpää är kända som självständiga kompositörer och suveräna mästare på sina respektive instrument. Deras musik hämtar influenser från bland annat folkmusik, klassisk musik och jazz.</p><p>Niku och Kujanpää har samarbetat i över 15 år, bland annat i folkmusiktrion Karuna. Idén att komponera nytt material för en duo bestående av piano och dragspel uppstod under pandemin. Båda komponerade materialet var för sig, vilket sedan tog form under regelbundna spel-sessioner under 2022 och 2023.</p><p>De nya kompositionerna kommer till sin rätt när piano och dragspel agerar som jämlika partners, där de turas om att vara solist och ackompanjatör – med utrymme för improvisation. Samarbetet kulminerade i albumet Aamunkoitto, som släpptes av Rockadillo Records i mars 2025.<br> <br>Teija Niku – dragspel<br>Juha Kujanpää – piano</p><p><b>17.15 | Etnosoi! Chiwalala/Saastamoinen duo</b></p><p>Duon Chiwalala/Saastamoinen grundades år 2021. I duons musikaliska arbete möts tanzanisk ngoma-musik, finländsk folkmusik samt afroamerikansk jazzkontrabas och improvisation. Ett rikt och fördjupat samspel är en avgörande utgångspunkt för kompositionerna, där styckena långsamt växer fram under långa, transliknande spelstunder.<br> <br>Arnold Chiwalala: sång, kantele, ngoma-trummor<br>Mikael Saastamoinen: kontrabas<br> <br>Konserten erbjuds av Maailman musiikin keskus.</p><p><b>18.30 | Baraka Issabu Quintet</b></p><p>Baraka Issabu är en tanzanisk pianist, musikpedagog, kompositör, arrangör och producent baserad i Helsingfors, Finland. Med rötter i östafrikanska musiktraditioner blandar hans verk traditionella rytmer och melodiskt språk med afrojazz, afrofusion och jazz, med pianot som hans centrala berättarinstrument. Genom sitt engagemang på East Africa Global Music Campus (Tanzania) har Baraka fördjupat sin praktik inom att dokumentera, framföra och förmedla regionala musikkulturer.<br> <br>År 2023 flyttade han till Finland för att studera kandidat- och magisterexamen i Global Music Programme vid Sibelius-Akademin, och utvidgade sina konstnärliga horisonter genom rigorösa studier och interkulturellt samarbete. Medan han var i Finland lyckades Baraka bilda en kvintett som sammanför finska och tanzaniska musiker – skolkamrater som knöt kontakt genom sina studier – och skapade en dynamisk ensemble formad av gemensamt lärande och tvärkulturellt utbyte.<br> <br>Baraka Issabu Quintet<br>Baraka Issabu – piano/keys, sång<br>Humphrey Mubba – basgitarr, sång<br>Vilho Luohivuori – trummor<br>Joni Viere – gitarr<br>Jesse Vilhomaa – saxofon</p>", "en": "<p>On the final day of Etno-Espa, the stage overflows with dialogue between piano and accordion, Tanzanian-Finnish duetting, and tones of East-African jazz.</p><p><b>16.00 | Teija Niku & Juha Kujanpää</b></p><p>Accordionist Teija Niku and pianist Juha Kujanpää are known as individual composers and sovereign masters of their instruments. Their music draws influences from folk, classical and jazz music, among others.</p><p>Niku and Kujanpää have collaborated for over 15 years, including in the folk music trio Karuna. The idea of composing new material for the piano and accordion duo arose during the pandemic. Both composed the material on their own, which then took shape in regular playing sessions during 2022 and 2023.</p><p>The new compositions come into their own when the piano and accordion act as equal partners, each taking turns as a soloist and accompanying party – without forgetting improvisation. The collaboration culminated in the album <i>Aamunkoitto</i>, which was released by Rockadillo Records in March 2025.</p><p>Teija Niku – accordion<br>Juha Kujanpää – piano</p><p><b>17.15 | Etnosoi! Chiwalala/Saastamoinen duo</b></p><p>The Chiwalala/Saastamoinen duo was founded in 2021. In the duo’s musical work, Tanzanian ngoma music, Finnish folk music, and African American jazz double bass playing and improvisation come together. Rich and deeply developed interplay is an essential starting point for their compositions, as the pieces slowly take shape during long, trance-like playing sessions.<br> <br>Arnold Chiwalala: vocals, kantele, ngoma drums<br>Mikael Saastamoinen: double bass<br> <br>The concert is presented by the Global Music Centre.</p><p><b>18.30 | Baraka Issabu Quintet</b><br> <br>Baraka Issabu is a Tanzanian pianist, music educator, composer, arranger, and producer based in Helsinki, Finland. Rooted in East African musical traditions, his work blends traditional rhythms and melodic language with Afrojazz, afro-fusion, and jazz, with the piano as his core storytelling instrument. Through his involvement with the East Africa Global Music Campus (Tanzania), Baraka has deepened his practice in documenting, performing, and transmitting regional music cultures.<br> <br>In 2023, he moved to Finland to pursue his bachelor’s and master’s degrees in the Global Music Programme at the Sibelius Academy, expanding his artistic horizons through rigorous study and intercultural collaboration. While in Finland, Baraka managed to form a quintet that brings together Finnish and Tanzanian musicians – schoolmates who connected through their studies – creating a dynamic ensemble shaped by shared learning and cross-cultural exchange.<br> <br>Baraka Issabu Quintet<br>Baraka Issabu – piano/keys, vocals<br>Humphrey Mubba – bass guitar, vocals<br>Vilho Luohivuori – drums<br>Joni Viere – guitar<br>Jesse Vilhomaa – saxophone</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69352/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69351", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385071, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T07:13:49.647698Z", "last_modified_time": "2026-06-11T07:13:49.647718Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792530.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385071/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-11T07:13:49.424725Z", "last_modified_time": "2026-06-22T06:13:55.162812Z", "date_published": null, "start_time": "2026-08-11T13:00:00Z", "end_time": "2026-08-11T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liisa Matveinen & Tellu Turkka | Mikko H. Haapoja – Etno-Espa", "sv": "Liisa Matveinen & Tellu Turkka | Mikko H. Haapoja – Etno-Espa", "en": "Liisa Matveinen & Tellu Turkka | Mikko H. Haapoja – Etno-Espa" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lavalla runolaulun voimaa vuosien yhteisen matkan varrelta Liisa Matveisen ja Tellu Turkan kanssa, sekä Mikko H. Haapojan elektroakustisia jouhikkomaisemia.", "sv": "På scenen känner vi runosångens kraft när Liisa Matveinen och Tellu Turkka ltar oss på en gemensam resa genom årtionden. Mikko H. Haapoja bjuder för sin del på ett spännande elektroakustiskt jouhikko‑landskap.", "en": "Presenting the power of the runo song from along a decades long path with Liisa Matveinen and Tellu Turkka, and Mikko H. Haapoja’s electroacoustic bowed lyre landscapes." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C58D69757933DFF3B8631A98FC67EB1C/Liisa_Matveinen_Tellu_Turkka_Mikko_H_Haapoja", "sv": "http://www.espanlava.fi/sv/evenemang/event/C58D69757933DFF3B8631A98FC67EB1C/Liisa_Matveinen_Tellu_Turkka_Mikko_H_Haapoja", "en": "http://www.espanlava.fi/en/events/event/C58D69757933DFF3B8631A98FC67EB1C/Liisa_Matveinen_Tellu_Turkka_Mikko_H_Haapoja" }, "description": { "fi": "<p>Lavalla runolaulun voimaa vuosien yhteisen matkan varrelta Liisa Matveisen ja Tellu Turkan kanssa, sekä Mikko H. Haapojan elektroakustisia jouhikkomaisemia.</p><p><b>16.00 | Liisa Matveinen & Tellu Turkka: ”Ei sanat salahan jouva!” – 30-vuotisjuhlakiertue</b><br> <br>Mestarikansanlaulaja Liisa Matveinen ja säveltäjä Tellu Turkka juhlivat pitkää yhteistä matkaansa. On aika koota yhteen parhaat palat 30-vuotisen matkan ajalta: koskettavimmat ja vahvimmat tarinat sekä hauskimmat sattumukset kiertueilta.</p><p>Vuosikymmenten ajan Liisa ja Tellu ovat tutkineet ja säveltäneet valtavan määrän vanhoja runoja naisrunolaulajilta, mm. Mateli Kuivalattarelta ja Iro Sissottarelta. Näiden naisten suullinen runoperinne ei vanhene. Liisan ja Tellun äänet sulautuvat ja soivat yhteen kuten ennenkin.</p><p>Liisa ja Tellu paitsi säveltävät omaa musiikkia, myös sovittavat vanhoja runosävelmiä. Säestyssoittimina ovat kanteleet, ruotsalainen moraharppu sekä savesta tehty udu-rumpu.<br> <br>Kolmekymmentävuotisen yhteisen uran kunniaksi duo järjestää vuonna 2026 juhlakiertueen. Mukana on sekä duon että Suden aika -kvartetin lauluja. Projektissa laulavat mukana myös kaksi Suden aika -kvartetin laulajaa, Katariina Airas ja Karoliina Kantelinen. Kiertueen tuottaa Minsku Tammela.<br> <br>Liisa Matveinen – laulu, kantele<br>Tellu Turkka – laulu, moraharppu, udu<br>Katariina Airas – laulu, moraharppu, huilut<br>Karoliina Kantelinen – laulu, kantele</p><p><b>17.15 | Mikko H. Haapoja: Unheard Landscapes</b><br> <br>Etno-Espa 2026 -festivaaleilla toisen soololevynsä julkaiseva Mikko H. Haapoja tekee uutta elektroakustista bassojouhikkolähtöistä musiikkia. Haapojan tulevalla levyllä monikerrokselliset jouhikko-, ihmisääni- ja avainviulukudelmat yhdistyvät maailman eri kolkkien äänimaisemiin ja konekomppeihin. Haapojan soolomusiikki sijoittuu tiheään metsään, joka kasvaa monimaailmaisessa suurkaupungissa. Kappaleissa limittyvät äänikuvat niin tunturikoivikoilta, Amazonin alkulähteiltä kuin Tokion metrostakin, sulautuen omaleimaisesti sykkiväksi kokonaisuudeksi.<br> <br>Haapojan debyyttisoololevy <i>Unheard Landscapes</i> nousi syyskuussa 2023 arvostetun WMCE-maailmanmusiikkilistan sijalle 16. Huhtikuussa 2025 Haapoja esiintyi Osakan maailmannäyttelyssä soolouransa toisella Japanin-kiertueellaan, vieden jouhikot ensi kertaa historiassa maailmannäyttelylavoille.<br> <br>Mikko H. Haapoja – jouhikko, bassojouhikko, nyckelharpa, sello, ohjelmointi, äänimaisemat</p>", "sv": "<p>På scenen känner vi runosångens kraft när Liisa Matveinen och Tellu Turkka ltar oss på en gemensam resa genom årtionden. Mikko H. Haapoja bjuder för sin del på ett spännande elektroakustiskt jouhikko‑landskap.</p><p><b>16.00 | Liisa Matveinen & Tellu Turkka: \"Ord kommer inte att glömmas bort!\" – 30-årsjubileumsturné 2026<br> <br>Mästarsångerskan Liisa Matveinen och kompositören Tellu Turkka firar sin långa resa tillsammans. Det är dags att lyfta fram de bästa delarna av deras 30-åriga resa, de mest rörande berättelserna, de roligaste händelserna på Tours och de mest kraftfulla dikterna. Under dessa decennier har Liisa och Tellu forskat och komponerat ett stort antal gamla dikter av bland andra Mateli Kuivalatar och Iro Sissotar och många andra kvinnliga runosångerskor, vars verbala arv inte åldras. Och även efter alla dessa år smälter Liisa och Tellus röster fortfarande samman harmoniskt. Duo komponerar inte bara utan arrangerar även gamla runosånger. Som instrument på scenen spelar de kantele, den svenska moraharpan och udutrumman.<br> <br>För att fira sin trettioåriga karriär tillsammans kommer duon att anordna en jubileumsturné 2026. Två sångare från Suden aika-kvartetten, Katariina Airas och Karoliina Kantelinen, kommer också att sjunga i projektet. Turnén är producerad av Minsku Tammela.<br> <br>Liisa Matveinen – sång, kantele<br>Tellu Turkka – sång, mora harpa, udu<br>Katariina Airas – sång, moraharpa, flöjter<br>Karoliina Kantelinen – sång, kantele</p><p><b>17.15 | Mikko H. Haapoja: Unheard Landscapes</b><br> <br>Mikko H. Haapoja, som släpper sitt andra soloalbum på Etno-Espa 2026-festivalen, skapar ny elektroakustisk bas-jouhikko-baserad musik. På Haapojas kommande album kombineras flerskiktad jouhikko, mänsklig röst och viktiga fioltexturer med ljudlandskap och maskinsyntar från olika hörn av världen. Haapojas solomusik utspelar sig i en tät skog som växer i en kosmopolitisk metropol. Låtarna överlappar ljudlandskap från bergsbjörkskogar, Amazonas källor och Tokyos tunnelbana och smälter samman till en unik pulserande helhet.</p><p>Haapojas debut soloalbum <i>Unheard Landscapes</i> steg till plats 16 på den prestigefyllda WMCE-världsmusiklistan i september 2023. I april 2025 uppträdde Haapoja på Osaka World Expo på sin andra soloturné i Japan och tog jouhikko till världsutställningens scener för första gången i historien.<br> <br>Mikko H. Haapoja – jouhikko, bas jouhikko, nyckelharpa, cello, programmering, ljudlandskap</p>", "en": "<p>Presenting the power of the runo song from along a decades long path with Liisa Matveinen and Tellu Turkka, and Mikko H. Haapoja’s electroacoustic bowed lyre landscapes.</p><p><b>16.00 | Liisa Matveinen & Tellu Turkka: ‘Words will not be forgotten!’ – 30th anniversary tour 2026</b><br> <br>Master folk singer Liisa Matveinen and composer Tellu Turkka are celebrating their long journey together. It is time to highlight the best parts of their 30-year journey, the most touching stories, the funniest incidents on tours and the most powerful poems.</p><p>During these decades, Liisa and Tellu have researched and composed a huge number of old poems by, among others, Mateli Kuivalatar and Iro Sissotar and many other female runo-singers, whose verbal heritage does not age. And even after all these years Liisa and Tellu's voices still merge together harmoniously.</p><p>The duo not only composes but arranges old runo songs as well. As instruments on stage, they play kantele, the Swedish Moraharp and the Udu drum.<br> <br>To celebrate their thirty-year career together, the duo organises a jubilee tour in 2026. Two singers from the Suden aika quartet, Katariina Airas and Karoliina Kantelinen, join them in the project. The tour is produced by Minsku Tammela.<br> <br>Liisa Matveinen – vocals, kantele<br>Tellu Turkka – vocals, mora harp, udu<br>Katariina Airas – vocals, mora harp, flutes<br>Karoliina Kantelinen – vocals, kantele</p><p><b>17.15 | Mikko H. Haapoja: Unheard Landscapes</b><br> <br>Mikko H. Haapoja, releasing his second solo album at the Etno-Espa 2026 festival, makes new and distinctive electroacoustic music lead by the bass bowed lyre (‘jouhikko’). On Haapoja's upcoming album, multilayered textures of bowed lyres, human voice and nyckelharpa are combined with soundscapes from different corners of the globe. Haapoja's solo music is set in a dense forest that grows in a multi-world metropolis – in the pieces’ sounds, mountain birch forests, the sources of the Amazon and the Tokyo subway can overlap, creating yet unheard worlds.<br> <br>Haapoja's solo debut album <i>Unheard Landscapes</i> reached number 16 on the WMCE global music chart in September 2023. In April 2025, Haapoja performed at the Osaka World Expo on his second solo tour of Japan, taking the Finnish bowed lyre to the World Expo stages for the first time in history.<br> <br>Mikko H. Haapoja – jouhikko, bass jouhikko, key harp, cello, programming, soundscape</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69351/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68752", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385238, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T06:14:00.751919Z", "last_modified_time": "2026-06-18T06:14:00.751937Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791911.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385238/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T06:14:00.569194Z", "last_modified_time": "2026-06-22T05:14:36.335239Z", "date_published": null, "start_time": "2026-09-07T11:00:00Z", "end_time": "2026-09-07T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Malmitalon monikulttuurinen naiskuoro", "sv": "Malmitalon monikulttuurinen naiskuoro", "en": "Malmitalon monikulttuurinen naiskuoro" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Malmitalossa aloittaa uusi lauluryhmä naisille. Tervetuloa mukaan laulamaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro", "sv": "http://www.malmitalo.fi/sv/evenemang/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro", "en": "http://www.malmitalo.fi/en/events/event/292BF224CB5D490CA4B045EE7E5D3CCF/Malmitalon_monikulttuurinen_naiskuoro" }, "description": { "fi": "<p>Malmitalossa aloittaa uusi lauluryhmä naisille. Tervetuloa mukaan laulamaan!</p><p>Tämä ryhmä on tarkoitettu erityisesti maahanmuuttajataustaisille naisille, mutta mukaan ovat tervetulleita myös suomea äidinkielenään puhuvat naislaulajat. Voit tuoda mukanasi oman kulttuurisi lauluja ja oppia eri maista tulevia lauluja.</p><p>Ryhmän opettajana on musiikinopettaja Mirva Soininen. Hän johtaa myös Maailmanmusiikkikuoro Sawa Sawaa Opistotalossa.</p><p>Kuoro on ilmainen, mutta siihen tulee ilmoittautua. <u><a href=\"https://ilmonet.fi/course/H264371\">Ilmoittautuminen tapahtuu tämän linkin kautta</a></u>, tai Helsingin työväenopiston asiakaspalvelupisteellä (Malmitalo, 1. krs). Voit myös tulla ensimmäiselle kerralle, jolloin opettaja neuvoo ilmoittautumisessa.</p><p>Ryhmä kokoontuu joka toinen maanantai Isoluokassa (työväenopiston käytävä, 1.krs):</p><p>ma 7.9.<br>ma 21.9.<br>ma 5.10.<br>ma 19.10.<br>ma 2.11.<br>ma 16.11.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68752/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69474", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385272, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:31.828159Z", "last_modified_time": "2026-06-18T13:13:31.828172Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790005.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385272/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T13:13:31.681672Z", "last_modified_time": "2026-06-18T13:13:32.002151Z", "date_published": null, "start_time": "2026-10-05T07:15:00Z", "end_time": "2026-10-05T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6330FE2688D3158827AC04314841B350/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/6330FE2688D3158827AC04314841B350/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/6330FE2688D3158827AC04314841B350/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69474/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69473", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385271, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:31.354658Z", "last_modified_time": "2026-06-18T13:13:31.354672Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790004.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385271/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T13:13:31.208687Z", "last_modified_time": "2026-06-18T13:13:31.526294Z", "date_published": null, "start_time": "2026-10-05T06:30:00Z", "end_time": "2026-10-05T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu vauvoille", "sv": "Musikaliskt konstäventyr för bebisar", "en": "Musical Art Adventure for babies" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F17830E1A4E3C9BB6F06961D8E80918E/Musiikillinen_taideseikkailu_vauvoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/F17830E1A4E3C9BB6F06961D8E80918E/Musikaliskt_konstaventyr_for_bebisar", "en": "http://www.annantalo.fi/en/events/event/F17830E1A4E3C9BB6F06961D8E80918E/Musical_Art_Adventure_for_babies" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 3–12 kk <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Vauvojen taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 9.30–10.</p><p>Ryhmään mahtuu kuusi vauvaa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 3–12 mån. <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex spädbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 3–12 months old <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69473/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69472", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385270, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:30.068090Z", "last_modified_time": "2026-06-18T13:13:30.068102Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789996.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385270/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T13:13:29.916878Z", "last_modified_time": "2026-06-18T13:13:30.240803Z", "date_published": null, "start_time": "2026-09-28T07:15:00Z", "end_time": "2026-09-28T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/691A31B04EFCFF10B7848D6C5EB611E1/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/691A31B04EFCFF10B7848D6C5EB611E1/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/691A31B04EFCFF10B7848D6C5EB611E1/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69472/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69470", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385269, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:29.597077Z", "last_modified_time": "2026-06-18T13:13:29.597090Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789995.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385269/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T13:13:29.453553Z", "last_modified_time": "2026-06-18T13:13:29.765697Z", "date_published": null, "start_time": "2026-09-28T06:30:00Z", "end_time": "2026-09-28T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu vauvoille", "sv": "Musikaliskt konstäventyr för bebisar", "en": "Musical Art Adventure for babies" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A735CBD351D3B29615C2C7B5FA0746B5/Musiikillinen_taideseikkailu_vauvoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/A735CBD351D3B29615C2C7B5FA0746B5/Musikaliskt_konstaventyr_for_bebisar", "en": "http://www.annantalo.fi/en/events/event/A735CBD351D3B29615C2C7B5FA0746B5/Musical_Art_Adventure_for_babies" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 3–12 kk <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Vauvojen taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 9.30–10.</p><p>Ryhmään mahtuu kuusi vauvaa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 3–12 mån. <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex spädbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 3–12 months old <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69470/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69469", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385268, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:25.790855Z", "last_modified_time": "2026-06-18T13:13:25.790868Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789993.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385268/?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-18T13:13:25.628350Z", "last_modified_time": "2026-06-18T13:13:25.985156Z", "date_published": null, "start_time": "2026-09-14T07:15:00Z", "end_time": "2026-09-14T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu taaperoille", "sv": "Musikaliskt konstäventyr för 1–2-åringar", "en": "Musical Art Adventure for toddlers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C1D13846E1154F518245E2673B735D10/Musiikillinen_taideseikkailu_taaperoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/C1D13846E1154F518245E2673B735D10/Musikaliskt_konstaventyr_for_1_2-aringar_", "en": "http://www.annantalo.fi/en/events/event/C1D13846E1154F518245E2673B735D10/Musical_Art_Adventure_for_toddlers_" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 1–2-v. <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Taaperoiden taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 10.15–10.45.</p><p>Ryhmään mahtuu kuusi taaperoa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 1–2 års <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex småbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 1–2-year-olds <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69469/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69468", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385267, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T13:13:25.222831Z", "last_modified_time": "2026-06-18T13:13:25.222846Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789992.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385267/?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-18T13:13:25.025126Z", "last_modified_time": "2026-06-18T13:13:25.468949Z", "date_published": null, "start_time": "2026-09-14T06:30:00Z", "end_time": "2026-09-14T07:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Musiikillinen taideseikkailu vauvoille", "sv": "Musikaliskt konstäventyr för bebisar", "en": "Musical Art Adventure for babies" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F7C16FE462828D4E9A9F650FA5A903FF/Musiikillinen_taideseikkailu_vauvoille", "sv": "http://www.annantalo.fi/sv/evenemang/event/F7C16FE462828D4E9A9F650FA5A903FF/Musikaliskt_konstaventyr_for_bebisar", "en": "http://www.annantalo.fi/en/events/event/F7C16FE462828D4E9A9F650FA5A903FF/Musical_Art_Adventure_for_babies" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Ohjaus: Noora Puranen <br>Tuokion pituus: noin 30 min <br>Ikäryhmä: 3–12 kk <br>Kieli: suomi <br>Maksuton</p><p>Tila: tanssiluokka</p><p>Vauvojen taideseikkailuja järjestetään 14.9., 28.9., 5.10., 19.10., 2.11. ja 16.11. klo 9.30–10.</p><p>Ryhmään mahtuu kuusi vauvaa oman aikuisensa kanssa. Ilmoittautuminen avautuu Annantalon verkkosivujen tapahtumakalenterissa elokussa. Varaathan vain yhden paikan lapsi + aikuinen -paria kohden.</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Med: Noora Puranen <br>Sessionens längd: ca 30 min. <br>Åldersgrupp: 3–12 mån. <br>Språk: finska</p><p>Konstäventyr arrangeras den 14.9, 28.9, 5.10, 19.10, 2.11 och 16.11 kl. 9.30–10.</p><p>Fritt inträde. Gruppen rymmer sex spädbarn tillsammans med varsin vuxen. Anmälan öppnar i evenemangskalendern på Annegårdens webbplats i augusti. Boka endast en plats per par (barn + vuxen).</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Instructor: Noora Puranen <br>Session length: approx. 30 min <br>Age group: 3–12 months old <br>Language: Finnish</p><p>Art Adventures are held on 14 and 28 September, 5 and 19 October, 2 and 16 November, from 9:30 to 10:00.</p><p>Free entry. Room for six child-adult-pairs. Registration opens on Annatalo's website in August; please only register once per one pair (child + adult).</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69468/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69464", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385263, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:55.530810Z", "last_modified_time": "2026-06-18T11:13:55.530822Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795580.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385263/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:55.431023Z", "last_modified_time": "2026-06-18T12:14:18.100852Z", "date_published": null, "start_time": "2026-10-25T13:00:00Z", "end_time": "2026-10-25T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/61F22D72D923D0503C59A1EA5F7ACCDA/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69464/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69463", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385262, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:55.160445Z", "last_modified_time": "2026-06-18T11:13:55.160461Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795579.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385262/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:55.071938Z", "last_modified_time": "2026-06-18T12:14:17.890485Z", "date_published": null, "start_time": "2026-10-24T15:00:00Z", "end_time": "2026-10-24T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/FE6441CE7CBDF12CB0DADB108203F360/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69463/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69462", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385261, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:54.708118Z", "last_modified_time": "2026-06-18T11:13:54.708133Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795578.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385261/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:54.615643Z", "last_modified_time": "2026-06-18T12:14:17.584339Z", "date_published": null, "start_time": "2026-10-23T16:00:00Z", "end_time": "2026-10-23T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/12B0E3F07BFE2BD73B3B71E93DA085AF/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69462/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69461", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385260, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:54.240014Z", "last_modified_time": "2026-06-18T11:13:54.240031Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795577.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385260/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:54.151723Z", "last_modified_time": "2026-06-18T12:14:17.285202Z", "date_published": null, "start_time": "2026-10-22T16:00:00Z", "end_time": "2026-10-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/AE18C57C8FCBAE90C2F0F5F94F7F331E/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69461/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69458", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/", "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/transpoli-on-temppurata-4182594/" }, "description": null, "price": { "fi": "20 / 7 €", "sv": "20 / 7 €", "en": "20 / 7 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385259, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:53.713136Z", "last_modified_time": "2026-06-18T11:13:53.713153Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_795576.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385259/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:53.588763Z", "last_modified_time": "2026-06-18T12:14:16.988891Z", "date_published": null, "start_time": "2026-10-21T16:00:00Z", "end_time": "2026-10-21T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Transpoli on temppurata", "sv": "Transpoli on temppurata", "en": "Transpoli on temppurata" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata", "sv": "http://www.caisa.fi/sv/evenemang/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata", "en": "http://www.caisa.fi/en/events/event/0F257B1DA36DE4C4D34DFFA60E259140/Transpoli_on_temppurata" }, "description": { "fi": "<p>Pelillistetyssä nykysirkusesityksessä transpoli paljastuu temppuradaksi, jossa useiden esteiden ylittämisestä huolimatta saattaa joutua takaisin lähtöruutuun.</p><p>Sanalla transpoli viitataan HUSin ja TAYSin sukupuoli-identiteetin tutkimuspoliklinikoihin. Esitys simuloi transpoliprosessia ja avaa terveydenhuollon epätasa-arvoisia rakenteita ja transpolien vallankäyttöä pelin ja sirkuksen keinoin.</p><p>Esitykseen voi osallistua pelaajana tai katsojana. Katsomosta seurataan pelaajien etenemistä tai juuttumista transpolin temppuradalla.</p><p>Pelaajille puolestaan arvotaan hahmo, joka perustuu todellisiin Transpolitiikka-kollektiivin keräämiin ja julkaisemiin anonyymeihin transpolitarinoihin. Hahmoista tiedetään ikäluokka, sukupuoli-identiteetti, mahdolliset liitännäisdiagnoosit, sekä muut mahdolliset transpoliprosessia estävät tekijät, kuten vaikkapa lihavuus. Pelaajat voivat päästä etenemään temppuradalla sujuvasti tai saada jäähyjä, tai jopa tulla lähetetyksi lähtöruutuun, kuten todellisuuden transpolillakin.</p><p>Pelaajapaikkoja on 10: jos haluat mukaan pelaajana, varaa lippusi ajoissa! Pelaajaliput eivät sovi liikuntarajoitteisille. Pelaajalipun lunastaneiden olisi hyvä olla paikalla 30 minuuttia ennen esitystä perehdytystä varten.</p><p>Huomaathan, että esitys voi olla ahdistava henkilöille, joilla on käynnissä tai takanaan oma transpoliprosessi, tai muuten aihepiiriin liittyviä negatiivisia kokemuksia. Esityksessä käsiteltävät teemat, kuten medikaalinen vallankäyttö, voivat aiheuttaa ahdistusta.</p><p>Ikäsuositus: 16 + <br>Esityksen kieli: suomi</p><p>Rae Reinvall: konseptointi, sirkustaiteilija <br>Pihla Aarnisalo: sirkustaiteilija <br>Marjukka Mykkänen: sirkustaiteilija <br>Pihla Lehtinen: pelitaiteilija <br>Stella Massa: runot, äänisuunnittelu, freestyle jalkapallo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69458/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68453", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384858, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T08:13:23.916850Z", "last_modified_time": "2026-06-02T08:13:23.916863Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789665.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384858/?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-02T08:13:23.816474Z", "last_modified_time": "2026-06-18T12:14:14.796911Z", "date_published": null, "start_time": "2026-09-30T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuskit co: Unikuskit – Varhaiskasvatuksen ja perusopetuksen ryhmille (4–9-v.)", "sv": "Kuskit co: Unikuskit", "en": "Kuskit co: Unikuskit" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Unikuskit on railakas ja anarkistinen lastenteatteriesitys koko perheelle." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/24CB1892FC51C48B3B30A8FC74AD7AB8/Kuskit_co_Unikuskit", "sv": "http://www.annantalo.fi/sv/evenemang/event/24CB1892FC51C48B3B30A8FC74AD7AB8/Kuskit_co_Unikuskit", "en": "http://www.annantalo.fi/en/events/event/24CB1892FC51C48B3B30A8FC74AD7AB8/Kuskit_co_Unikuskit" }, "description": { "fi": "<p>Unikuskit on railakas ja anarkistinen lastenteatteriesitys koko perheelle.</p><p>Esitys perustuu lasten näkemiin uniin, joita on kerätty haastatteluilla päiväkodeissa ja alakouluissa.</p><p><i>On sellainen kone, joka tekee unia.<br>Sen nimi on Unikone.<br>Se on monityökone, joka voi tehdä mitä vaan.<br>Me Unikuskit ollaan Unikoneen käyttäjiä.<br>Tämä on kertomus meidän seikkailuista yhtenä yönä, kun Unikone meni epäkuntoon, eikä kaikki mennytkään ihan niin kuin yleensä.<br>Matkalla unimaailmoissa me kohdattiin kummia, ystävällisiä ja hurjiakin olentoja. Me oltiin rohkeita ja neuvokkaita ja löydettiin lopulta unien läpi takaisin valveille.</i></p><p>Lippuja 29.9. esitykseen myy lippu.fi, liput 6 € / kpl.</p><p>30.9. aamupäivän maksuttomat esitykset järjestetään ryhmille ja niihin voi ilmoittaa ryhmän 30.8. alkaen osoitteessa <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a>.</p><p>Ikäsuositus: 4–9<br>Esityksen kesto: 50 min <br>Esityksen kieli: suomi</p><p>Työryhmä<br>Konsepti ja käsikirjoitus: Valto Kuuluvainen, K Rasila ja Kuskit Company<br>Visuaalinen suunnittelu ja toteutus, nuket: K Rasila<br>Äänisuunnittelu: Maura Korhonen<br>Ohjaus: Valto Kuuluvainen<br>Näyttämöllä: Elisa Salo ja Eero Ojala<br>Ääniroolissa: Miska Huttula<br>Valokuvat: Mikael Ahlfors</p><p>Unikuskit on vuoden 2019 lastenteatterin ideahautomo ITUn Itu-palkinnon saanut näyttämöteos.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68453/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68452", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384857, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-02T08:13:23.482705Z", "last_modified_time": "2026-06-02T08:13:23.482722Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789664.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384857/?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-02T08:13:23.343763Z", "last_modified_time": "2026-06-18T12:14:14.594773Z", "date_published": null, "start_time": "2026-09-30T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuskit co: Unikuskit – Varhaiskasvatuksen ja perusopetuksen ryhmille (4–9-v.)", "sv": "Kuskit co: Unikuskit", "en": "Kuskit co: Unikuskit" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Unikuskit on railakas ja anarkistinen lastenteatteriesitys koko perheelle." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CD4CDA624C2894B1586E0D05CA1B67AE/Kuskit_co_Unikuskit", "sv": "http://www.annantalo.fi/sv/evenemang/event/CD4CDA624C2894B1586E0D05CA1B67AE/Kuskit_co_Unikuskit", "en": "http://www.annantalo.fi/en/events/event/CD4CDA624C2894B1586E0D05CA1B67AE/Kuskit_co_Unikuskit" }, "description": { "fi": "<p>Unikuskit on railakas ja anarkistinen lastenteatteriesitys koko perheelle.</p><p>Esitys perustuu lasten näkemiin uniin, joita on kerätty haastatteluilla päiväkodeissa ja alakouluissa.</p><p><i>On sellainen kone, joka tekee unia.<br>Sen nimi on Unikone.<br>Se on monityökone, joka voi tehdä mitä vaan.<br>Me Unikuskit ollaan Unikoneen käyttäjiä.<br>Tämä on kertomus meidän seikkailuista yhtenä yönä, kun Unikone meni epäkuntoon, eikä kaikki mennytkään ihan niin kuin yleensä.<br>Matkalla unimaailmoissa me kohdattiin kummia, ystävällisiä ja hurjiakin olentoja. Me oltiin rohkeita ja neuvokkaita ja löydettiin lopulta unien läpi takaisin valveille.</i></p><p>Lippuja 29.9. esitykseen myy lippu.fi, liput 6 € / kpl.</p><p>30.9. aamupäivän maksuttomat esitykset järjestetään ryhmille ja niihin voi ilmoittaa ryhmän 30.8. alkaen osoitteessa <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\"><u>kultus.hel.fi</u></a>.</p><p>Ikäsuositus: 4–9<br>Esityksen kesto: 50 min <br>Esityksen kieli: suomi</p><p>Työryhmä<br>Konsepti ja käsikirjoitus: Valto Kuuluvainen, K Rasila ja Kuskit Company<br>Visuaalinen suunnittelu ja toteutus, nuket: K Rasila<br>Äänisuunnittelu: Maura Korhonen<br>Ohjaus: Valto Kuuluvainen<br>Näyttämöllä: Elisa Salo ja Eero Ojala<br>Ääniroolissa: Miska Huttula<br>Valokuvat: Mikael Ahlfors</p><p>Unikuskit on vuoden 2019 lastenteatterin ideahautomo ITUn Itu-palkinnon saanut näyttämöteos.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68452/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68785", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?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:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385266, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T12:14:12.087483Z", "last_modified_time": "2026-06-18T12:14:12.087505Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791962.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385266/?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-18T12:14:11.937561Z", "last_modified_time": "2026-06-18T12:14:12.279579Z", "date_published": null, "start_time": "2026-09-20T08:00:00Z", "end_time": "2026-09-20T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Celebrate, Connect, Belong – Kolibri Festivaali 2026!", "sv": "Celebrate, Connect, Belong – Kolibri Festivalen 2026!", "en": "Celebrate, Connect, Belong – Kolibri Festival 2026!" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Viidestoista Kolibrí-festivaali palaa Kulttuurikeskus Caisaan. Tule mukaan perhepäivään, joka on täynnä luovia työpajoja, musiikkia ja tanssiesityksiä!", "en": "The 15th edition of Kolibrí Festival returns to Kulttuurikeskus Caisa. Join us for a Family Day packed with artistic workshops, music & dance performances!" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/01CE3834D0D16222CCE6B60C3C2B814E/Celebrate_Connect_Belong_Kolibri_Festivaali_2026_", "sv": "http://www.caisa.fi/sv/evenemang/event/01CE3834D0D16222CCE6B60C3C2B814E/Celebrate_Connect_Belong_Kolibri_Festivalen_2026_", "en": "http://www.caisa.fi/en/events/event/01CE3834D0D16222CCE6B60C3C2B814E/Celebrate_Connect_Belong_Kolibri_Festival_2026_" }, "description": { "fi": "<p>Viidestoista Kolibrí-festivaali palaa Kulttuurikeskus Caisaan. Tule mukaan perhepäivään, joka on täynnä luovia työpajoja, musiikkia ja tanssiesityksiä!</p><p>Päivän aikana voit nauttia monikielisestä tarinoista, kohdata taiteilijoita ympäri maailmaa, tutkiskella lastenkirjamessuja ja pitää hauskaa koko perheen kera! Tule tutustumaan Helsingin lastenkulttuuriin ja hankkimaan uusia ystäviä festivaalin teeman ”Elävä yhteisö – Eläköön yhteisö!” mukaisesti.</p><p>Kolibrín 15. juhlavuosi merkkaa myös Caisan 30-vuotisjuhlaa ja Kulttuurikeskus Ninhon 10-vuotisjuhlaa kanssa. Tämä on siis yhteistä yhteisöjen juhlaa – odotamme sinua innolla!<br> <br>Sisäänpääsy on ilmainen, eikä ilmoittautumista tarvita.<br> <br><u><a href=\"https://www.kolibrifestivaali.org/\">Täältä löydät koko perheen ohjelmamme, alkaen 14. elokuuta</u></a>.</p><p>Kolibrí on <u><a href=\"https://www.ninho.fi\">Kulttuurikeskus Ninho ry:n</u></a> tuotanto yhteistyössä Kulttuurikeskus Caisan kanssa.</p>", "en": "<p>The 15th edition of Kolibrí Festival returns to Kulttuurikeskus Caisa. Join us for a Family Day packed with artistic workshops, music & dance performances!</p><p>Come for multilingual storytelling with artists from around the world, a children’s book fair and lots of fun for the whole family!</p><p>Under the theme ‘Living Community – Long Live Community!', come and make new friends and explore Helsinki's contemporary children's culture.</p><p>Kolibrí's special 15th edition also coincides with Caisa’s 30th anniversary and Kulttuurikeskus Ninho 10th anniversary. Be part of this community celebration – we can't wait to see you there!<br> <br>Free entry, no registration needed.<br> <br><u><a href=\"https://www.kolibrifestivaali.org/\">Find our programme for all ages here, starting 14 August</u></a>.</p><p>Kolibrí is a <u><a href=\"https://www.ninho.fi\">Kulttuurikeskus Ninho ry</u></a> production in cooperation with Cultural Centre Caisa.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68785/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }