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=33
{ "meta": { "count": 33864, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=34", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=32" }, "data": [ { "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" }, { "id": "kulke:68376", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/name-21466372", "sv": "https://www.lippu.fi/event/name-21466372", "en": "https://www.lippu.fi/event/name-21466372" }, "description": null, "price": { "fi": "24 / 19 €", "sv": "24 / 19 €", "en": "24 / 19 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-17T07:14:20.701095Z", "last_modified_time": "2026-06-17T07:14:20.701110Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787852.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-17T07:14:20.600388Z", "last_modified_time": "2026-06-18T12:14:11.360153Z", "date_published": null, "start_time": "2026-09-18T15:00:00Z", "end_time": "2026-09-18T16: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": "Uskomaton taikashow", "sv": "Uskomaton taikashow", "en": "Uskomaton taikashow" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/4D7FA33FBBBD2D8363FC11937F481462/Uskomaton_taikashow", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/4D7FA33FBBBD2D8363FC11937F481462/Uskomaton_taikashow", "en": "http://www.kanneltalo.fi/en/events/event/4D7FA33FBBBD2D8363FC11937F481462/Uskomaton_taikashow" }, "description": { "fi": "<p>Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa.</p><p>Kaksikon reilu tunnin mittainen show on sekoitus taikuutta, mentalismia, illuusioita ja hulvattoman hauskaa komiikkaa.</p><p>Esitykseen on tuotu runsaasti show-elementtejä ja se on hiottu yhteen musiikin, sekä valojen kanssa. Nuoresta iästään huolimatta esiintyjäkaksikko on viihdyttänyt yleisöjä jo monien vuosien ajan aina lukemattomista tapahtumista televisioon asti. Tervetuloa mukaan taikuuden maailmaan.</p><p>Kesto 1 h<br>Kieli: suomi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68376/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68338", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385036, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-10T06:14:00.118281Z", "last_modified_time": "2026-06-10T06:14:00.118318Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_787740.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385036/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-10T06:13:59.995184Z", "last_modified_time": "2026-06-18T12:14:00.099110Z", "date_published": null, "start_time": "2026-08-15T10:00:00Z", "end_time": "2026-08-15T12: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": "Metsän suojassa – Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia", "sv": "Metsän suojassa – Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia", "en": "Metsän suojassa – Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metsäkissa2044-hankkeen vetäjä Jukka Ilmonen esittelee kaksivuotisen hankkeen tuloksia. Mitä olemme saaneet aikaan?" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa", "en": "http://www.kanneltalo.fi/en/events/event/3593C370EABD0DD19E28ECEF8218CA1A/Metsan_suojassa" }, "description": { "fi": "<p>Metsäkissa2044-hankkeen vetäjä Jukka Ilmonen esittelee kaksivuotisen hankkeen tuloksia. Mitä olemme saaneet aikaan?</p><p>Hankkeen keskiössä ovat ihmisten utopiat, joita pyrimme hahmottamaan nykyisen, lähes dystopiaa muistuttavan ekologisen kriisin sijaan. Kahden vuoden aikana Metsäkisssa2044-hankkeeseen osallistuneet ovat tuottaneet metsään liittyviä utopiatekstejä. Niitä on päivitetty prosessin aikana, ja pyritty katsomaan, millä tavoin taiteellisiin tuotantoihin osallistuminen on muuttanut utopioita. Tekstejä on saatu Metsäteatteriin ja ääniteoksiin osallistuneilta.<br> <br>Myös muut metsäkissalaiset esittelevät omaa työtään. Esillä ovat niin journalismi, kuvataide, teatteri kuin musiikkikin. <u><a href=\"https://www.metsakissa.fi/\">Tutustu Metsäkissa2044-hankkeen taiteellisiin ja journalistisiin sisältöihin</u></a>.</p><p>Tapahtuma on osa moniaistista <i>Metsän suojassa</i> näyttelyä ja tapahtumakokonaisuutta, joka kutsuu pohtimaan metsän tulevaisuutta taiteen, tieteen ja osallistumisen kautta. <u><a href=\"https://kanneltalo.fi/fi/tapahtumat/?q=Mets%C3%A4n%20suojassa\">Katso tarkemmat tiedot tapahtumista tapahtumakalenteristamme</u></a>.</p><p><b>pe 14. – la 29.8.</b> | Metsän suojassa -näyttely Kanneltalon galleriassa<br><b>la 15.8. klo 13</b> | Jukka Ilmonen esittelee Metsäkissa2044-hankkeen tuloksia<br><b>Taiteiden yö, to 20.8. klo 17</b> | Katja Luhtala & kollektiivi: Metsä M<br><b>Taiteiden yö, to 20.8. klo 17.30</b> | Metsänpohja – yhteisötaideteos<br><b>Pe 21.8. klo 17</b> | Metsähaikutyöpaja<br><b>La 22.8. klo 13</b> | Metsäimprodialogi<br><b>La 22.8. klo 15</b> | Taiteilijatapaaminen: Susu Rytteri<br><b>To 27.8. klo 17</b> | Luontoyhteystyöpaja<br><b>Pe 28.8. klo 16</b> | Utopiapedagogiikkaa-luento<br><b>Pe 28.8. klo 18</b> | Legioonateatterin metsäteatterikollektiivi: Niin metsä vastaa<br><b>Suomen luonnon päivä, la 29.8. klo 13</b> | Pyöreän pöydän keskustelu utopiatulevaisuudesta | Suomen luonnon päivä<br><b>Suomen luonnon päivä, la 29.8. klo 15</b> | Katja Luhatala ja Metsä M -kollektiivi: Metsäsydän – Oodi lähimetsille</p><p>Näyttely ja tapahtumat ovat osa Helsingin kaupungin kulttuuripalveluiden ympäristöohjelmaa. <u><a href=\"https://kanneltalo.fi/fi/talonesittely#Ymp%C3%A4rist%C3%B6vastuu\">Lue lisää ympäristöohjelmasta</u></a>.</p><p>Näyttelyyn ja tapahtumiin on vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68338/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68513", "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:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385256, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:44.265863Z", "last_modified_time": "2026-06-18T11:13:44.265878Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790126.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385256/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:44.169250Z", "last_modified_time": "2026-06-18T11:13:44.391056Z", "date_published": null, "start_time": "2026-09-04", "end_time": "2026-09-26", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Daniel Palpa: Between Two Rivers", "sv": "Daniel Palpa: Between Two Rivers", "en": "Daniel Palpa: Between Two Rivers" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Daniel Palpan keramiikkaveistokset käsittelevät kaksoiskulttuurisen identiteetin ilmenemismuotoja – luovuuden lähteeltä identiteetin aavikolle." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_", "sv": "http://www.caisa.fi/sv/evenemang/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_", "en": "http://www.caisa.fi/en/events/event/DDCBAA0CCEB34D1A6E10CE8DB52008AB/Daniel_Palpa_Between_Two_Rivers_" }, "description": { "fi": "<p>Daniel Palpan keramiikkaveistokset käsittelevät kaksoiskulttuurisen identiteetin ilmenemismuotoja – luovuuden lähteeltä identiteetin aavikolle.</p><p>Taiteilija käyttää Perun alueen perinteisiä keramiikkamuotoja ja sekoittaa niihin omat arkipäivän kokemuksiansa. Teokset kommentoivat tämän päivän huolenaiheita värien ja kaoottisten muotojen kautta. Ne tuovat esiin Perun ja Suomen kulttuurien vaikutuksia ja niiden välistä jännitettä taiteilijan elämässä.</p><p>Teokset syntyvät kaksoiskulttuurisen identiteetin kokemuksesta. Taiteilijan identiteetin keskeinen dilemma on ollut kahden mantereen kulttuurien ja niiden historioiden yhteensovittaminen. Lapsena Suomeen saapumisen myötä syntynyt sisäinen eristäytyneisyys on kulkenut rinnalla samalla, kun eteläamerikkalaiset juuret ovat säilyneet ja muovanneet kolmannen kulttuurisen perspektiivin.</p><p>Tämä kahden kulttuurin välinen tila toimii joko luovuuden lähteenä tai identiteetin aavikkona. Jäljelle jää kulttuurinen hybridielämisen muoto, joka haastaa vakiintuneita olettamuksia ja ammentaa eriävien arvojen kitkasta. Teokset pyrkivät ilmaisemaan monikerroksisen identiteetin kokemusta, joka on tuttu monille Suomessa eläville kaksoiskulttuurisille lapsille ja aikuisille.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68513/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69457", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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": 2385255, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:39.990793Z", "last_modified_time": "2026-06-18T11:13:39.990812Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793952.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:39.883590Z", "last_modified_time": "2026-06-18T11:13:40.123148Z", "date_published": null, "start_time": "2026-08-23T12:00:00Z", "end_time": "2026-08-23T16: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": "Poetiikkakonferenssi – Kirjallisuusfestivaali Runokuu", "sv": "Poetiikkakonferenssi", "en": "Poetiikkakonferenssi – Runokuu / Poetry Moon Literature Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Poetiikkakonferenssi on seminaarimainen tilaisuus runoilijoille, kirjailijoille, kirjallisuudentutkijoille ja kaikille poetiikan kysymyksistä kiinnostuneille.", "en": "Helsinki Poetics Conference is an open, seminar-style event aimed at poets, writers, and literary scholars, as well as anyone interested in questions of poetics." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi", "sv": "http://www.caisa.fi/sv/evenemang/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi", "en": "http://www.caisa.fi/en/events/event/4E26FF6CC440CBE39119339F8B6C45A5/Poetiikkakonferenssi" }, "description": { "fi": "<p>Poetiikkakonferenssi on seminaarimainen tilaisuus runoilijoille, kirjailijoille, kirjallisuudentutkijoille ja kaikille poetiikan kysymyksistä kiinnostuneille.</p><p>Kaikille avoin konferenssi jatkaa Runokuun rinnakkaistapahtumaksi 20 vuotta sitten perustetun Helsingin Poetiikkakonferenssin perinnettä, jota järjestettiin eri muodoissa ja monenlaisissa erilaisissa puitteissa vuosina 2005–2012. Poetiikkakonferenssin tarkoitus on ylläpitää keskustelua tutkijoiden, runoilijoiden, muiden alojen taiteilijoiden ja yleisön välillä. Yleisöä rohkaistaan käymään keskustelua ei vain esitelmöijien kanssa vaan myös keskenään.</p><p>Konferenssin puhujat ovat <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> ja <b>Berta García Faet</b>.</p><p>Keskustelun kieli: englanti ja suomi</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p>", "en": "<p>Helsinki Poetics Conference is an open, seminar-style event aimed at poets, writers, and literary scholars, as well as anyone interested in questions of poetics.</p><p>The conference continues the tradition of the Helsinki Poetics Conference, founded 20 years ago as a parallel event to Runokuu (Poetry Moon) and held in various forms and venues between 2005 and 2012. The aim of the Poetics Conference is to foster dialogue between researchers, poets, artists from other fields, and the public.</p><p>The theme of the 2026 Poetry Moon Poetics Conference is <b>breath</b>. The theme opens up perspectives on the rhythm and language of poetry, as well as more broadly on experiences of being, embodiment, and shared space. Breath can be understood as a biological, political, and aesthetic phenomenon: a continuous exchange in and out, between the individual and the environment.</p><p>The speakers are <b>Jonis Hartman, A. V. Marraccini, Merima Dizdarević, Antti Salminen</b> and <b>Berta García Faet</b>.</p><p>The languages of the event are English and Finnish.<br>Free admission.<br>The events assume an adult audience but have no age restriction.<br>In collaboration with: Caisa, Versopolis, Goethe-Institut Finnland.</p><p><u><a> href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68613", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "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": 2385069, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T06:14:43.546396Z", "last_modified_time": "2026-06-11T06:14:43.546415Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791200.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385069/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2026-06-11T06:14:43.421696Z", "last_modified_time": "2026-06-18T11:13:38.357943Z", "date_published": null, "start_time": "2026-08-20T13: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": "Stoan Elojuhla x Middle East Jam Festival – Taiteiden yö", "sv": "Stoan Elojuhla x Middle East Jam Festival – Konstens natt", "en": "Stoan Elojuhla x Middle East Jam Festival – Night of the Arts" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Middle East Jam Festival saapuu jälleen Taiteiden yönä Stoan aukiolle!", "sv": "Middle East Jam Festival återvänder till Stoaplatsen på Konstens natt!", "en": "The Middle East Jam Festival returns to Stoa square on the Night of the Arts!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival", "sv": "http://www.stoa.fi/sv/evenemang/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival", "en": "http://www.stoa.fi/en/events/event/F13D83B4A15B5A37E9F24CCFE70BBF0C/Stoan_Elojuhla_x_Middle_East_Jam_Festival" }, "description": { "fi": "<p>Middle East Jam Festival saapuu jälleen Taiteiden yönä Stoan aukiolle!</p><p>ME Jam on yhteisöllinen ja kansainvälinen musiikin, tanssin ja kulttuurin juhla, joka tuo esiin Lähi-idän ja Pohjois-Afrikan alueiden monimuotoista taidetta. Tapahtuma yhdistää live-esiintymiset, työpajat ja ruokakulttuurin kaikille avoimeksi, eläväksi kokonaisuudeksi.</p><p>Stoan aukiolla luvassa värikästä ohjelmaa: lavalle nousee mm. Middle Eastern Orchestra, luvassa tanssi- ja performanssiesityksiä, elokuvaesitys yhteistyössä Kulttuurimaja Kamera ry:n kanssa ja järjestöesittelyjä. Ohjelma tarkentuu kesän aikana.</p><p>Tapahtuma tarjoaa myös perheille sopivaa ohjelmaa ja mukaan voi tulla vain nauttimaan tunnelmasta!</p><p>Työpajoja klo 17-20 Stoan aukiolla:</p><p>Niitty soi! - rytmisoitinpaja <br>Heinissä heiluu, korsilla karkeloi. Rakennetaan kierrätys- ja luonnonmateriaaleista hauskoja soivia ötököitä. Löydä oma sointisi ja liity osaksi rytmikästä parvea. Ohjaaja: taideopettaja Jenni Vilander</p><p>Yhteisöllinen kasvimatto<br>Elojuhlan kunniaksi toteutamme yhteisen raitamaton kasveista. Rivi riviltä kasvit punoutuvat osaksi yhteistä kudelmaa, joka kertoo kesän kasvukauden tarinaa ja kuvastaa sen monimuotoisuutta. Vähitellen syntyvä teos muistuttaa luonnon runsaudesta, vuodenajan kierrosta sekä yhdessä tekemisen ja luomisen ilosta. Ohjaaja: muotoilija Tanja Valta</p><p>Pyrografia-työpajat<br>Stoan niitylle on rakentunut lahopuuteos, joka merkitsee kokoontumispaikkaa monimuotoiselle eliökunnalle. Veistos muodostuu koivunrungoista sekä taideseinän puukiekoista, joihin työpajassa polttopiirrämme erilaisia eliöiden jälkiä sekä sanoja Eliökuntalaisten manifestista (kirjoittanut Anni Kytömäki). Tule ja jätä oma jälkesi monumenttiin. Ohjaaja: taiteilija Petra Martin</p><p>Postikortti pölyttäjälle<br>Työpajassa pääset maalaamaan postikortin pölyttäjähyönteisille. Biohajoavaan maaliin ripotellaan Suomen luonnon pölyttäjäkasvien siemeniä. Lopulta kortin voi haudata maahan jolloin siitä kasvaa pieni pala kukkaniittyä! <br>Ohjaajat: Seikkailutaidekoulun Verna Kuntsi ja Satu Sipilä</p><p>Tapahtuman aikana klo 17 ja klo 18.30 Stoan musiikkisalissa nähdään Teatteri Q0:n Niitty -nukketeatteriesitys. Esityksiin jaetaan vapaalippuja tapahtuman aikana. Lue lisää tapahtumalistauksesta: Niitty.</p><p>Vapaa pääsy.</p><p>Yhteistyössä ME Jam ja Stoa</p>", "sv": "<p>Middle East Jam Festival återvänder till Stoaplatsen på Konstens natt!</p><p>ME Jam är en gemenskaplig och internationell hyllning till musik, dans och kultur, som visar upp Mellanösterns och Nordafrikas mångfacetterade konstarter. Evenemanget kombinerar liveframträdanden, verkstäder och matkultur till en levande helhet som är öppen för alla.</p><p>Stoa bjuder på färgstarkt kvällsprogram: toppartister, dans, verkstäder och DJ-set. Evenemanget erbjuder också program för familjer och alla är välkomna bara för att njuta av stämningen!</p><p>Fritt inträde</p>", "en": "<p>The Middle East Jam Festival returns to Stoa square on the Night of the Arts!</p><p>ME Jam is a collaborative and international celebration of music, dance and culture, showcasing the diverse arts of the Middle Eastern and North African regions. The event combines live performances, workshops and food culture into a vibrant event open to all.</p><p>Stoa will host a colourful evening programme: top artists, dance, workshops and DJ sets. The event also offers entertainment suitable for families and you can come along just to enjoy the atmosphere!</p><p>Free entry</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68613/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69456", "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: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:596/?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: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": 2385254, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:37.896215Z", "last_modified_time": "2026-06-18T11:13:37.896228Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791953.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385254/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:37.783648Z", "last_modified_time": "2026-06-18T11:13:38.039239Z", "date_published": null, "start_time": "2026-08-19T15:30:00Z", "end_time": "2026-08-19T17: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": "Caisa Poetry Night – Kirjallisuusfestivaali Runokuu", "sv": "Caisa Poetry Night", "en": "Caisa Poetry Night – Runokuu / Poetry Moon Literature Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Runokuu-festivaali tuo Caisan salin lavalle joukon kansainvälisiä runoilijoita.", "en": "Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night", "sv": "http://www.caisa.fi/sv/evenemang/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night", "en": "http://www.caisa.fi/en/events/event/EA25862F4C5B799639E6FA996DA4E3D6/Caisa_Poetry_Night" }, "description": { "fi": "<p>Runokuu-festivaali tuo Caisan salin lavalle joukon kansainvälisiä runoilijoita.</p><p>Runojaan lausuvat <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> sekä <b>Jonis Hartman</b>.</p><p>Tapahtuma on englanninkielinen.</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p><p><b>Tapahtuman esittely englanniksi:</b></p><p>Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026.</p><p>Poetry Moon delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 19th of August 2026 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> and <b>Jonis Hartman</b>.</p><p>The language of the event is English.<br>Free entrance.<br>The events assume an adult audience but have no age restriction.<br>In Collaboration with: Caisa, Goethe-Institut Finnland.</p>", "en": "<p>Poetry Moon Literature Festival brings international poets to the stage of Caisa on 19 August 2026.</p><p>Poetry Moon delights poetry lovers in Helsinki and its outskirts every August. International Poetry Night at Cultural Centre Caisa 19th of August 2026 brings together a vibrant and diverse array of voices from around the world.</p><p>The evening features performances by <b>Molly Ripatti, DC Restaino, Iona Carmine Roisin</b> and <b>Jonis Hartman</b>.</p><p>The language of the event is English.<br>Free entrance.<br>The events assume an adult audience but have no age restriction.<br>In Collaboration with: Caisa, Goethe-Institut Finnland.</p><p><u><a > href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69456/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69455", "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: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?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": 2385253, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:37.387308Z", "last_modified_time": "2026-06-18T11:13:37.387326Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791952.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385253/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:37.237688Z", "last_modified_time": "2026-06-18T11:13:37.580709Z", "date_published": null, "start_time": "2026-08-19T14:00:00Z", "end_time": "2026-08-19T15: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": "Poetry in a Time of Crisis – Kirjallisuusfestivaali Runokuu", "sv": "Poetry in a Time of Crisis", "en": "Poetry in a Time of Crisis – Runokuu / Poetry Moon Literature Festival" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Englanninkielisessä paneelikeskustelussa pureudutaan runouden mahdollisuuksiin ja rajoitteisiin kriisien merkkaamassa ajassa.", "en": "Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis", "sv": "http://www.caisa.fi/sv/evenemang/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis", "en": "http://www.caisa.fi/en/events/event/0656E378130721289AB56FDEBB6C47BD/Poetry_in_a_Time_of_Crisis" }, "description": { "fi": "<p>Englanninkielisessä paneelikeskustelussa pureudutaan runouden mahdollisuuksiin ja rajoitteisiin kriisien merkkaamassa ajassa.</p><p><u><a> href=\"https://runokuu.fi/\">Lue lisää festivaalista ja sen ohjelmasta</u></a>.</p><p><b>Keskustelun esittely englanniksi:</b></p><p>Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty. Living in a time with no shortage of atrocities, we are confronted with a question: How is poetry actually able to survive, let alone thrive, in such conditions?</p><p>Powerful global superpowers continue to shape the conditions in which current conflicts unfold, and in which they are being narrated. At the same time, artists, activists, and communities face increasing pressure through surveillance, censorship, and repression.</p><p>The terrain is fraught and uncertain for anyone working in the literary field today. Can poetry still intervene meaningfully in the present? What space remains for dissent, for ambiguity, for care? The discussion will reflect on the possibilities and limits of poetry in a time of crisis: what it means to write, and read, under the pressures of today.</p><p>This discussion brings together three writers working across different geographies and practices: <b>Molly Ripatti</b>, writer and coordinator currently studying at Trinity College Dublin; <b>DC Restaino</b>, a London-based writer originally from Texas; and <b>A.V. Marraccini</b>, a New York–based critic, writer, and historian of art. The conversation will be moderated by <b>Kimmo Kallio</b>. Readings by Ripatti and Restaino will also take place later the same evening as part of Caisa Poetry Night.</p><p>The language of the discussion is English.</p><p>We assume an adult audience, but the Runokuu / Poetry Moon events have no age restriction.</p>", "en": "<p>Poetry has always been bound to moments of crisis, bearing witness to histories of loss, war, and cruelty.</p><p>Living in a time with no shortage of atrocities, we are confronted with a question: How is poetry actually able to survive, let alone thrive, in such conditions?</p><p>Powerful global superpowers continue to shape the conditions in which current conflicts unfold, and in which they are being narrated. At the same time, artists, activists, and communities face increasing pressure through surveillance, censorship, and repression.</p><p>The terrain is fraught and uncertain for anyone working in the literary field today. Can poetry still intervene meaningfully in the present? What space remains for dissent, for ambiguity, for care? The discussion will reflect on the possibilities and limits of poetry in a time of crisis: what it means to write, and read, under the pressures of today.</p><p>This discussion brings together three writers working across different geographies and practices: <b>Molly Ripatti</b>, writer and coordinator currently studying at Trinity College Dublin; <b>DC Restaino</b>, a London-based writer originally from Texas; and <b>A.V. Marraccini</b>, a New York–based critic, writer, and historian of art. The conversation will be moderated by <b>Kimmo Kallio</b>. Readings by Ripatti and Restaino will also take place later the same evening as part of Caisa Poetry Night.</p><p>The language of the discussion is English.</p><p>We assume an adult audience, but the Runokuu / Poetry Moon events have no age restriction.</p><p><u><a> href=\"https://runokuu.fi/en/\">Read more about the festival and programme</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnuq2xc4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22zy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:45:08.390608Z", "last_modified_time": "2026-06-18T09:45:08.390622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3d8fd2a5-98a3-4334-8190-48ce23ab5658.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Iloinen keltainen tausta. Graafinen kuva monenäköisitä lapsista, nuotteja ja taidetta. Vietnaminkielinen teksti ja englanninkielinen teksti: Vietnamese reading and singing circle", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-18T09:56:20.493038Z", "last_modified_time": "2026-06-18T09:56:20.493055Z", "date_published": null, "start_time": "2026-12-13T14:00:00Z", "end_time": "2026-12-13T15: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": "Vietnamin kielinen satu ja musiikkikerho lapsille", "sv": "Vietnamesisk läs- och musikklubb för barn", "en": "Vietnamese reading and music club for children" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sunnuntaisin klo 16–17.30\nKerran kuukaudessa | Ison Omenan kirjaston Lava", "sv": "Söndagar kl. 16–17.30\nEn gång i månaden | Iso Omena bibliotekets Stage", "en": "Sundays 4 PM–5:30 PM\nOnce per month | Iso Omena Library Stage" }, "info_url": null, "description": { "fi": "<p>Tule nauttimaan lasten kirjoista ja lauluista vietnamiksi yhdessä lastesi kanssa. Tapahtumat järjestetään seuraavina päivinä: 23.8, 27.9, 25.10, 22.11 ja 13.12.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. Evenemanget ordnas: 23.8, 27.9, 25.10, 22.11 och 13.12.</p><p><br></p><p>#helloespoo</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids. The events take place on: 23 August, 27 September, 25 October, 22 November and 13 December.</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq2xc4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnuq2ycu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22zy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:45:08.390608Z", "last_modified_time": "2026-06-18T09:45:08.390622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3d8fd2a5-98a3-4334-8190-48ce23ab5658.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Iloinen keltainen tausta. Graafinen kuva monenäköisitä lapsista, nuotteja ja taidetta. Vietnaminkielinen teksti ja englanninkielinen teksti: Vietnamese reading and singing circle", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-18T09:56:20.364592Z", "last_modified_time": "2026-06-18T09:56:20.364608Z", "date_published": null, "start_time": "2026-11-22T14:00:00Z", "end_time": "2026-11-22T15: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": "Vietnamin kielinen satu ja musiikkikerho lapsille", "sv": "Vietnamesisk läs- och musikklubb för barn", "en": "Vietnamese reading and music club for children" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sunnuntaisin klo 16–17.30\nKerran kuukaudessa | Ison Omenan kirjaston Lava", "sv": "Söndagar kl. 16–17.30\nEn gång i månaden | Iso Omena bibliotekets Stage", "en": "Sundays 4 PM–5:30 PM\nOnce per month | Iso Omena Library Stage" }, "info_url": null, "description": { "fi": "<p>Tule nauttimaan lasten kirjoista ja lauluista vietnamiksi yhdessä lastesi kanssa. Tapahtumat järjestetään seuraavina päivinä: 23.8, 27.9, 25.10, 22.11 ja 13.12.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. Evenemanget ordnas: 23.8, 27.9, 25.10, 22.11 och 13.12.</p><p><br></p><p>#helloespoo</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids. The events take place on: 23 August, 27 September, 25 October, 22 November and 13 December.</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq2ycu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnuq2yxu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22zy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:45:08.390608Z", "last_modified_time": "2026-06-18T09:45:08.390622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3d8fd2a5-98a3-4334-8190-48ce23ab5658.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Iloinen keltainen tausta. Graafinen kuva monenäköisitä lapsista, nuotteja ja taidetta. Vietnaminkielinen teksti ja englanninkielinen teksti: Vietnamese reading and singing circle", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-18T09:56:20.225556Z", "last_modified_time": "2026-06-18T09:56:20.225573Z", "date_published": null, "start_time": "2026-10-25T13:00:00Z", "end_time": "2026-10-25T14: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": "Vietnamin kielinen satu ja musiikkikerho lapsille", "sv": "Vietnamesisk läs- och musikklubb för barn", "en": "Vietnamese reading and music club for children" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sunnuntaisin klo 16–17.30\nKerran kuukaudessa | Ison Omenan kirjaston Lava", "sv": "Söndagar kl. 16–17.30\nEn gång i månaden | Iso Omena bibliotekets Stage", "en": "Sundays 4 PM–5:30 PM\nOnce per month | Iso Omena Library Stage" }, "info_url": null, "description": { "fi": "<p>Tule nauttimaan lasten kirjoista ja lauluista vietnamiksi yhdessä lastesi kanssa. Tapahtumat järjestetään seuraavina päivinä: 23.8, 27.9, 25.10, 22.11 ja 13.12.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. Evenemanget ordnas: 23.8, 27.9, 25.10, 22.11 och 13.12.</p><p><br></p><p>#helloespoo</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids. The events take place on: 23 August, 27 September, 25 October, 22 November and 13 December.</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq2yxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnuq2zoi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22zy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:45:08.390608Z", "last_modified_time": "2026-06-18T09:45:08.390622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3d8fd2a5-98a3-4334-8190-48ce23ab5658.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Iloinen keltainen tausta. Graafinen kuva monenäköisitä lapsista, nuotteja ja taidetta. Vietnaminkielinen teksti ja englanninkielinen teksti: Vietnamese reading and singing circle", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-18T09:56:20.057886Z", "last_modified_time": "2026-06-18T09:56:20.057903Z", "date_published": null, "start_time": "2026-09-27T13:00:00Z", "end_time": "2026-09-27T14: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": "Vietnamin kielinen satu ja musiikkikerho lapsille", "sv": "Vietnamesisk läs- och musikklubb för barn", "en": "Vietnamese reading and music club for children" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sunnuntaisin klo 16–17.30\nKerran kuukaudessa | Ison Omenan kirjaston Lava", "sv": "Söndagar kl. 16–17.30\nEn gång i månaden | Iso Omena bibliotekets Stage", "en": "Sundays 4 PM–5:30 PM\nOnce per month | Iso Omena Library Stage" }, "info_url": null, "description": { "fi": "<p>Tule nauttimaan lasten kirjoista ja lauluista vietnamiksi yhdessä lastesi kanssa. Tapahtumat järjestetään seuraavina päivinä: 23.8, 27.9, 25.10, 22.11 ja 13.12.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. Evenemanget ordnas: 23.8, 27.9, 25.10, 22.11 och 13.12.</p><p><br></p><p>#helloespoo</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids. The events take place on: 23 August, 27 September, 25 October, 22 November and 13 December.</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq2zoi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpnuq22dm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22zy/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385251, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:45:08.390608Z", "last_modified_time": "2026-06-18T09:45:08.390622Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3d8fd2a5-98a3-4334-8190-48ce23ab5658.png", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Iloinen keltainen tausta. Graafinen kuva monenäköisitä lapsista, nuotteja ja taidetta. Vietnaminkielinen teksti ja englanninkielinen teksti: Vietnamese reading and singing circle", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385251/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-06-18T09:56:19.888977Z", "last_modified_time": "2026-06-18T09:56:19.888994Z", "date_published": null, "start_time": "2026-08-23T13:00:00Z", "end_time": "2026-08-23T14: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": "Vietnamin kielinen satu ja musiikkikerho lapsille", "sv": "Vietnamesisk läs- och musikklubb för barn", "en": "Vietnamese reading and music club for children" }, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "provider": null, "short_description": { "fi": "Sunnuntaisin klo 16–17.30\nKerran kuukaudessa | Ison Omenan kirjaston Lava", "sv": "Söndagar kl. 16–17.30\nEn gång i månaden | Iso Omena bibliotekets Stage", "en": "Sundays 4 PM–5:30 PM\nOnce per month | Iso Omena Library Stage" }, "info_url": null, "description": { "fi": "<p>Tule nauttimaan lasten kirjoista ja lauluista vietnamiksi yhdessä lastesi kanssa. Tapahtumat järjestetään seuraavina päivinä: 23.8, 27.9, 25.10, 22.11 ja 13.12.</p><p><br></p><p>#helloespoo</p>", "sv": "<p>Kom och njut av barnböcker och sånger på vietnamesiska tillsammans med dina barn. Evenemanget ordnas: 23.8, 27.9, 25.10, 22.11 och 13.12.</p><p><br></p><p>#helloespoo</p>", "en": "<p>Come and enjoy children’s books and songs in Vietnamese with your kids. The events take place on: 23 August, 27 September, 25 October, 22 November and 13 December.</p><p><br></p><p>#helloespoo</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpnuq22dm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69064", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/", "sv": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/", "en": "https://www.lippu.fi/event/traveling-jones-feat-esa-kuloniemi-plays-fleetwood-mac-malmitalo-21595789/" }, "description": null, "price": { "fi": "24,80 € / 17,80 €", "sv": "24,80 € / 17,80 €", "en": "24,80 € / 17,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384973, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:05.621368Z", "last_modified_time": "2026-06-05T08:14:05.621383Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792649.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384973/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:05.494660Z", "last_modified_time": "2026-06-18T09:13:47.953862Z", "date_published": null, "start_time": "2026-10-28T17:00:00Z", "end_time": "2026-10-28T18: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": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac", "sv": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac", "en": "Traveling Jones featuring Esa Kuloniemi plays Fleetwood Mac" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac", "en": "http://www.malmitalo.fi/en/events/event/8CFFC40CD166AF35EA497A2684794EF5/Traveling_Jones_featuring_Esa_Kuloniemi_plays_Fleetwood_Mac" }, "description": { "fi": "<p>Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen.</p><p>Traveling Jones on tullut tunnetuksi mm. Pepe Ahlqvistin ja Eero Raittisen luottokokoonpanona. Kuloniemi puolestaan on soittanut mm. Honey B & T-Bones -yhtyeessä.</p><p>Luvassa tunnelmallinen, nostalginen ja kitarasoolojen täyteinen ilta brittiblues-klassikoiden parissa!<br> <br>Kitaralegenda Peter Greenin Lontoossa vuonna 1967 perustama alkuperäinen Fleetwood Mac mullisti kokonaisen sukupolven tajunnan. Yhtye aloitti puhtaana, autenttisuuteen pyrkivänä 60-luvun brittiblues-kokoonpanona. Vuosikymmenen loppua kohti bändin tyyli kehittyi ilmaisultaan eklektisemmäksi ja sitä pidetään yhtenä jam band -käsitteen esitaistelijoista. Parhaiten tuon ajan kokoonpano muistetaan kolmen kitaristinsa soolotyöskentelystä ja Greenin ja Danny Kirwanin upeasta sävellystyöstä, joka vaikutti jopa The Beatlesiin ja jonka ansiosta yhtyettä kosiskeltiin Apple-levymerkin rosteriin. Bändin hitit ja klassikot kuten ”Albatross”, ”Oh, Well”, ”Man of the World” ja ”Jigsaw Puzzle Blues” ovat jääneet elämään.</p><p>Esa Kuloniemi (laulu ja kitara)</p><p>Traveling Jones:<br>Jakke Aho (laulu ja basso)<br>Juha Sundqvist (kitara ja laulu)<br>Pekka Qvist (koskettimet)<br>Ossi Nykänen (rummut).<br> <br>Kesto: 1 h 45 min, sis. 20 min väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69064/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69063", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/", "sv": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/", "en": "https://www.lippu.fi/event/antti-autio-haahuillen-malmitalo-21684000/" }, "description": null, "price": { "fi": "34,90 € / 29,90 €", "sv": "34,90 € / 29,90 €", "en": "34,90 € / 29,90 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384972, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:04.766602Z", "last_modified_time": "2026-06-05T08:14:04.766617Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792646.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384972/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:04.645841Z", "last_modified_time": "2026-06-18T09:13:47.279877Z", "date_published": null, "start_time": "2026-10-23T16:00:00Z", "end_time": "2026-10-23T18: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": "Antti Autio: Haahuillen – A la Malmi", "sv": "Antti Autio: Haahuillen – A la Malmi", "en": "Antti Autio: Haahuillen – A la Malmi" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen", "en": "http://www.malmitalo.fi/en/events/event/81C333496DD8E63E4653763891F0642A/Antti_Autio_Haahuillen" }, "description": { "fi": "<p>Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä.</p><p>Konsertit jatkavat alkuvuonna julkaistua <i>Tie on maalattu maahan</i> -albumin kiertuetta uudella syväluotaavalla tavalla. Albumin syntyä ja teemoja lähestytään vuorovaikutuksessa ja jutustellen yleisön kanssa.<br> <br>Illan aikana kuullaan tietysti myös vanhempaa tuotantoa, kuten kaikkien tuntemat ja miljoonia striimanneet \"Pihkassa\", \"Kaikki hyvin\", \"Norja\", \"Tehty sinulle\" sekä monia muita kappaleita joista kuullaan uusia ennenkuulumattomia sovituksia.<br> <br><i>”Haluamme tuoda kuulijat lähemmäs niitä hetkiä, kun kappaleet vasta syntyvät tai muotoutuvat. Haahuillen -konserttisalikiertue on kutsu tulla jakamaan nämä hetket yhtyeemme kanssa”</i>, Autio kuvailee.<br> <br>Antin lisäksi bändissä soittavat Jussi Liukkonen, Joska Saarinen, Joel Parvamo ja Ella Rosenlund.</p><p>Aution musiikkia on kuunneltu Spotifyssa yli 35 miljoonan toiston verran ja artistin on nähty esiintyvän mm. Flow Festivalin päälavalla. Kriitikoiden arvostusta osakseen saaneen artistin teoksia on noteerattu laajalti eri medioissa toistuvan ylistävään sävyyn. <i>Kaikki talot huojuu</i> -albumi ylitti kultalevyrajan syksyllä 2024. Viimeisin albumi <i>Tie on maalattu maahan</i> julkaistiin 20. Maaliskuuta.</p><p>Kesto: 2 h, sis. 20 min väliajan</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69063/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69342", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/", "sv": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/", "en": "https://www.lippu.fi/event/teatteri-mukamas-metsan-arvoitus-malmitalo-21706040/" }, "description": null, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385095, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-12T08:14:16.596376Z", "last_modified_time": "2026-06-12T08:14:16.596390Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794015.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385095/?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-12T08:14:16.523129Z", "last_modified_time": "2026-06-18T09:13:46.994835Z", "date_published": null, "start_time": "2026-10-22T15:00:00Z", "end_time": "2026-10-22T15:35: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": "Teatteri Mukamas: Metsän arvoitus", "sv": "Teatteri Mukamas: Metsän arvoitus", "en": "Teatteri Mukamas: Metsän arvoitus" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus", "sv": "http://www.malmitalo.fi/sv/evenemang/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus", "en": "http://www.malmitalo.fi/en/events/event/A9464B754486E8308C7F9072032802B7/Teatteri_Mukamas_Metsan_arvoitus" }, "description": { "fi": "<p>Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä.</p><p><i>Kuuletko puiden huminaa,<br>lintujen laulua lempeää.<br>Rits, räts, oksa räsähtää ja orava paikalle hypähtää.<br>Kun metsässä oot, niin tiedäthän sen, ei tarvitse olla yksikseen.</p><p>Maasta löytyy kartta kumma,<br>mikä ihme se voikaan olla?<br>Ystävä tietenkin auttaa saattaa, kun pulma on sulla.</i></p><p>Kesto: noin 35 min<br>Ikäsuositus: yli 3-vuotiaille</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69342/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68637", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/", "sv": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/", "en": "https://www.lippu.fi/event/malmitalo-malmijazz-aili-ikonen-malmitalo-21582653/" }, "description": null, "price": { "fi": "29,80 € / 24,80 €", "sv": "29,80 € / 24,80 €", "en": "29,80 € / 24,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2384971, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-05T08:14:03.276016Z", "last_modified_time": "2026-06-05T08:14:03.276032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791346.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2384971/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-05T08:14:03.120961Z", "last_modified_time": "2026-06-18T09:13:45.475266Z", "date_published": null, "start_time": "2026-10-07T16:00:00Z", "end_time": "2026-10-07T18: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": "Aili Ikonen – MalmiJazz", "sv": "Aili Ikonen", "en": "Aili Ikonen" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen", "en": "http://www.malmitalo.fi/en/events/event/589412B90CAC3A6E85F298454D88F792/Aili_Ikonen" }, "description": { "fi": "<p>Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana.</p><p>Ikosen ilmaisullinen skaala lähtee jazzista ja murtautuu rohkeasti genrerajojen ulkopuolelle. Valovoimaisen artistin ura sisältää yhteistyötä erilaisten jazz-kombojen kanssa, big band -produktioita ja Ella Fitzgerald -tulkintoja. Ikonen tunnetaan nykyisin myös Rajaton-lauluyhtyeen jäsenenä.</p><p>Vuonna 2025 Ikonen palkittiin jazz-alan arvostetuimpiin tunnustuksiin kuuluvalla Suomen Jazzliiton myöntämällä Yrjö-palkinnolla. Ikonen on julkaissut viisi soololevyä, joista uusimman, Oulu Sinfonian kanssa äänitetyn <i>Valo</i>-orkesterialbumin vuonna 2024. Soololevykatalogiin kuuluu myös <i>Helposti palavaa</i> (2023), <i>Suru ei oo suora viiva</i> (2020), <i>Piirrä minut</i> (2017) ja <i>Laulan</i> (2016). Uutta musiikkia on luvassa keväällä 2026.</p><p>Ikosen levytyksiin kuuluvat myös suomalaisen jazziskelmän ytimeen pureutuva <i>Jazzbasilli</i>-albumi yhdessä HERD-jazztrion kanssa sekä <i>Aili Ikonen & Tribute to Ella</i> -albumi. Vuonna 2019 yhdessä Jukka Perko Avaran kanssa julkaistu <i>Laulu keskeneräinen</i> -albumi käsitteli 1960-luvun lauluntekijyyttä Hectorin suomenkielisin uusin käännöksin. Ikonen säveltää ja sanoittaa oman soolotuotantonsa lisäksi säännöllisesti Rajaton-lauluyhtyeelle sekä tekee tilaussävellyksiä.</p><p>Ikosen mukana lavalla on hänen luottokvintettinsä, jonka kanssa hän on tehnyt yhteistyötä jo yli 10 vuoden ja viiden albumin verran. Herkkänä, mutta samalla vahvana tulkitsijana tunnettua Ikosta on kuultu laaja-alaisesti niin aikamme huippuartistien kanssakuinsolistina eri kokoonpanoissa.</p><p>Aili Ikonen – laulu, viulu, sävellys ja sanoitus<br>Janne Toivonen – trumpetti<br>William Suvanne – saksofonit ja huilu<br>Tuomas J. Turunen – piano<br>Mikko Pellinen – basso ja sovitukset<br>Mikko Arlin – rummut</p><p>Kesto: 2 t, sis. väliajan 20 min</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68637/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }