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&max_duration=3d&page=19
{ "meta": { "count": 32684, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=20", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&max_duration=3d&page=18" }, "data": [ { "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, "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, "name": { "fi": "Uskomaton taikashow", "sv": "Uskomaton taikashow", "en": "Uskomaton taikashow" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Koko perheelle suunnattu Uskomaton Taikashow on jatkoa Taikuri Aatu Itkosen ja Mentalisti Jari Hynysen yhteistyölle taikuuden parissa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68376/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69467", "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:32/?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: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/", "sv": "https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/", "en": "https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/" }, "description": null, "price": { "fi": "24 / 19 / 12 €", "sv": "24 / 19 / 12 €", "en": "24 / 19 / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385265, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T12:14:09.990100Z", "last_modified_time": "2026-06-18T12:14:09.990117Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794877.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385265/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T12:14:09.868484Z", "last_modified_time": "2026-06-18T12:14:10.112166Z", "date_published": null, "start_time": "2026-09-13T12:00:00Z", "end_time": "2026-09-13T13:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kerttu Opuksen ja Opus Companyn sooloteos yhdistää taikuuden, sirkuksen ja teatterin tutkielmaksi muutoksesta, menetyksestä ja kasvusta.</p><p>Miltä tuntuisi antaa muutoksen huuhtoa ylitsesi? <i>Suddenly</i> kertoo esiintyjän elämästä ja samanaikaisesti universaalista kokemuksesta, henkilökohtaisen kasvun ristiriidoista.</p><p>Taikuutta, sirkusta ja teatteria sisältävä esitys läpikäy ajatusta vanhojen kerrosten jatkuvasta poiskarsimisesta. Jollain tasolla me kaikki haluamme olla parempia versioita itsestämme, mutta harvoin pystymme tuota prosessia hallitsemaan. <i>Suddenly</i> tutkii näihin muutoksiin liittyvän surun, menetyksen, tuskan ja syvän ilon teemoja muuttuvan itsen myllerryksessä.</p><p><i>Suddenly – and other ways to change</i> on <b>Kerttu Opuksen</b> ja Opus Companyn uusi sooloteos. Ryhmän esitykset kyseenalaistavat sirkuksen perinteiset rajat ja hämärtävät rajoja todellisuuden sekä kuvitellun välillä.</p><p>Esiintyjä: Kerttu Opus<br>Dramaturgi, lavateknikko: Adam Opus<br>Valosuunnittelija: Jaakko Sirainen<br>Tuotanto: Opus Company <br>Tukijat: Koneen säätiö</p><p>Ikäsuositus: 13 +</p><p>Ensimmäistä kertaa järjestettävä <b>Helsinki Circus Festival</b> on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana nähdään Suomalaista nykysirkusta, 13 eri tyylilajien sirkusteosta, uutta taikuutta ja lastenesityksiä. Caisan ohjelmistossa ovat esitykset <i>Suddenly – and other ways to change</i> sekä <i>Memoirs of Mud.</i></p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon - Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p>" }, "provider_contact_info": null, "name": { "fi": "Suddenly - Helsinki Circus Festival NETTIIN", "sv": "Suddenly - Helsinki Circus Festival NETTIIN", "en": "Suddenly - Helsinki Circus Festival NETTIIN" }, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9B326E7504E806237CB7C527B80D8B35/Suddenly_-_Helsinki_Circus_Festival_NETTIIN", "sv": "http://www.caisa.fi/sv/evenemang/event/9B326E7504E806237CB7C527B80D8B35/Suddenly_-_Helsinki_Circus_Festival_NETTIIN", "en": "http://www.caisa.fi/en/events/event/9B326E7504E806237CB7C527B80D8B35/Suddenly_-_Helsinki_Circus_Festival_NETTIIN" }, "short_description": { "fi": "Kerttu Opuksen ja Opus Companyn sooloteos yhdistää taikuuden, sirkuksen ja teatterin tutkielmaksi muutoksesta, menetyksestä ja kasvusta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69466", "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:32/?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: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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/", "sv": "https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/", "en": "https://liput.kaapeli.com/en/cirko/buyingflow/tickets/15824/" }, "description": null, "price": { "fi": "24 / 19 / 12 €", "sv": "24 / 19 / 12 €", "en": "24 / 19 / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385264, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T12:14:09.541657Z", "last_modified_time": "2026-06-18T12:14:09.541674Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794862.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385264/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T12:14:09.407832Z", "last_modified_time": "2026-06-18T12:14:09.698885Z", "date_published": null, "start_time": "2026-09-12T16:00:00Z", "end_time": "2026-09-12T17:10:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kerttu Opuksen ja Opus Companyn sooloteos yhdistää taikuuden, sirkuksen ja teatterin tutkielmaksi muutoksesta, menetyksestä ja kasvusta.</p><p>Miltä tuntuisi antaa muutoksen huuhtoa ylitsesi? <i>Suddenly</i> kertoo esiintyjän elämästä ja samanaikaisesti universaalista kokemuksesta, henkilökohtaisen kasvun ristiriidoista.</p><p>Taikuutta, sirkusta ja teatteria sisältävä esitys läpikäy ajatusta vanhojen kerrosten jatkuvasta poiskarsimisesta. Jollain tasolla me kaikki haluamme olla parempia versioita itsestämme, mutta harvoin pystymme tuota prosessia hallitsemaan. <i>Suddenly</i> tutkii näihin muutoksiin liittyvän surun, menetyksen, tuskan ja syvän ilon teemoja muuttuvan itsen myllerryksessä.</p><p><i>Suddenly – and other ways to change</i> on <b>Kerttu Opuksen</b> ja Opus Companyn uusi sooloteos. Ryhmän esitykset kyseenalaistavat sirkuksen perinteiset rajat ja hämärtävät rajoja todellisuuden sekä kuvitellun välillä.</p><p>Esiintyjä: Kerttu Opus<br>Dramaturgi, lavateknikko: Adam Opus<br>Valosuunnittelija: Jaakko Sirainen<br>Tuotanto: Opus Company <br>Tukijat: Koneen säätiö</p><p>Ikäsuositus: 13 +</p><p>Ensimmäistä kertaa järjestettävä <b>Helsinki Circus Festival</b> on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana nähdään Suomalaista nykysirkusta, 13 eri tyylilajien sirkusteosta, uutta taikuutta ja lastenesityksiä. Caisan ohjelmistossa ovat esitykset <i>Suddenly – and other ways to change</i> sekä <i>Memoirs of Mud.</i></p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon - Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p>" }, "provider_contact_info": null, "name": { "fi": "Suddenly - Helsinki Circus Festival NETTIIN", "sv": "Suddenly - Helsinki Circus Festival NETTIIN", "en": "Suddenly - Helsinki Circus Festival NETTIIN" }, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5774C7D60F0A09F92F0F969B6A130826/Suddenly_-_Helsinki_Circus_Festival_NETTIIN", "sv": "http://www.caisa.fi/sv/evenemang/event/5774C7D60F0A09F92F0F969B6A130826/Suddenly_-_Helsinki_Circus_Festival_NETTIIN", "en": "http://www.caisa.fi/en/events/event/5774C7D60F0A09F92F0F969B6A130826/Suddenly_-_Helsinki_Circus_Festival_NETTIIN" }, "short_description": { "fi": "Kerttu Opuksen ja Opus Companyn sooloteos yhdistää taikuuden, sirkuksen ja teatterin tutkielmaksi muutoksesta, menetyksestä ja kasvusta." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69466/?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, "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, "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" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Metsäkissa2044-hankkeen vetäjä Jukka Ilmonen esittelee kaksivuotisen hankkeen tuloksia. Mitä olemme saaneet aikaan?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68338/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69460", "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:32/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/", "sv": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/", "en": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/" }, "description": null, "price": { "fi": "24 / 19 / 12 €", "sv": "24 / 19 / 12 €", "en": "24 / 19 / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385258, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:47.050314Z", "last_modified_time": "2026-06-18T11:13:47.050333Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794846.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385258/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:46.953445Z", "last_modified_time": "2026-06-18T11:13:47.169045Z", "date_published": null, "start_time": "2026-09-11T16:30:00Z", "end_time": "2026-09-11T18: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, "description": { "fi": "<p>Memoirs of Mud on absurdin leikkisä nykysirkusseikkailu, jossa akrobatia, multa ja mielikuvitukselliset objektit törmäyttävät luonnon ja keinotekoisuuden.</p><p>Luonto ja keinotekoisuus – kaksi oletettua vastakohtaa – kohtaavat <i>Memoirs of Mud</i> -teoksessa. Seikkailullisen sirkusesityksen kaksi esiintyjää tutkivat elämää akrobaattisella virtuoosisuudella navigoiden steriilien elinympäristöjen ja mutaisen maaston läpi.</p><p>Tasapainoillen keinuvilla trapetseilla he juuttuvat mutaan, taistelevat inkivääristä tehtyjen sarvien kanssa, muuttavat käsilaukut kasvihuoneiksi ja perunat kruunuiksi. Tässä omituisessa universumissa absurdilla ja leikkisyydellä ei ole rajoja.</p><p>Esiintyminen ja konsepti: Imogen Huzel ja Inka Pehkonen / Based on Kimberly<br>Outside eyes: Santiago Ruis Albalate, Vejde Grind, Gaby Munoz<br>Valosuunnittelu: Kauri Klemelä<br>Äänisuunnittelu/musiikki: Timm Weber<br>Video: Karine Bravo<br>Puvustus: Riikka Manni/ Wriic’s</p><p>Tuotanto: Sisus Sirkus & Based on Kimberly yhteistyössä Dynamo Workspace ja Cirko – uuden sirkuksen keskus<br>Tuki: Taiteen edistämiskeskus, Cirkus Cirkör, Samuel Huberin säätiö, Lintsin sirkus, Helsingin kaupunki ja TelepART</p><p>Ikäsuositus: 12+</p><p>Ensimmäistä kertaa järjestettävä <b>Helsinki Circus Festival</b> on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana nähdään Suomalaista nykysirkusta, 13 eri tyylilajien sirkusteosta, uutta taikuutta ja lastenesityksiä. Caisan ohjelmistossa ovat esitykset <i>Suddenly – and other ways to change</i> sekä <i>Memoirs of Mud.</i></p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon - Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p>" }, "provider_contact_info": null, "name": { "fi": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival", "sv": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival", "en": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival" }, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/F9C94026FF1B2DFF2E8F849674988478/Sisus_Sirkus_Memoirs_of_Mud_", "sv": "http://www.caisa.fi/sv/evenemang/event/F9C94026FF1B2DFF2E8F849674988478/Sisus_Sirkus_Memoirs_of_Mud_", "en": "http://www.caisa.fi/en/events/event/F9C94026FF1B2DFF2E8F849674988478/Sisus_Sirkus_Memoirs_of_Mud_" }, "short_description": { "fi": "Memoirs of Mud on absurdin leikkisä nykysirkusseikkailu, jossa akrobatia, multa ja mielikuvitukselliset objektit törmäyttävät luonnon ja keinotekoisuuden." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69460/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69459", "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:32/?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:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/", "sv": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/", "en": "https://liput.kaapeli.com/fi/cirko/buyingflow/tickets/15886/" }, "description": null, "price": { "fi": "24 / 19 / 12 €", "sv": "24 / 19 / 12 €", "en": "24 / 19 / 12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385257, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T11:13:46.419919Z", "last_modified_time": "2026-06-18T11:13:46.419940Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_794844.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385257/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T11:13:46.319826Z", "last_modified_time": "2026-06-18T11:13:46.551010Z", "date_published": null, "start_time": "2026-09-10T16:30:00Z", "end_time": "2026-09-10T17: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, "description": { "fi": "<p>Memoirs of Mud on absurdin leikkisä nykysirkusseikkailu, jossa akrobatia, multa ja mielikuvitukselliset objektit törmäyttävät luonnon ja keinotekoisuuden.</p><p>Luonto ja keinotekoisuus – kaksi oletettua vastakohtaa – kohtaavat <i>Memoirs of Mud</i> -teoksessa. Seikkailullisen sirkusesityksen kaksi esiintyjää tutkivat elämää akrobaattisella virtuoosisuudella navigoiden steriilien elinympäristöjen ja mutaisen maaston läpi.</p><p>Tasapainoillen keinuvilla trapetseilla he juuttuvat mutaan, taistelevat inkivääristä tehtyjen sarvien kanssa, muuttavat käsilaukut kasvihuoneiksi ja perunat kruunuiksi. Tässä omituisessa universumissa absurdilla ja leikkisyydellä ei ole rajoja.</p><p>Esiintyminen ja konsepti: Imogen Huzel ja Inka Pehkonen / Based on Kimberly<br>Outside eyes: Santiago Ruis Albalate, Vejde Grind, Gaby Munoz<br>Valosuunnittelu: Kauri Klemelä<br>Äänisuunnittelu/musiikki: Timm Weber<br>Video: Karine Bravo<br>Puvustus: Riikka Manni/ Wriic’s</p><p>Tuotanto: Sisus Sirkus & Based on Kimberly yhteistyössä Dynamo Workspace ja Cirko – uuden sirkuksen keskus<br>Tuki: Taiteen edistämiskeskus, Cirkus Cirkör, Samuel Huberin säätiö, Lintsin sirkus, Helsingin kaupunki ja TelepART</p><p>Ikäsuositus: 12+</p><p>Ensimmäistä kertaa järjestettävä <b>Helsinki Circus Festival</b> on täyttä sirkuksen juhlaa. Nelipäiväisen festivaalin aikana nähdään Suomalaista nykysirkusta, 13 eri tyylilajien sirkusteosta, uutta taikuutta ja lastenesityksiä. Caisan ohjelmistossa ovat esitykset <i>Suddenly – and other ways to change</i> sekä <i>Memoirs of Mud.</i></p><p>Taiteilijalähtöisen festivaalin sydän on yhteisöllisyydessä. Tapahtuman toteuttaa suomalaisten nykysirkusryhmien ja sirkustaitelijoiden perustama Pro Sirkus ry yhdessä Cirkon - Uuden sirkuksen keskuksen, Kulttuurikeskus Stoan ja Kulttuurikeskus Caisan kanssa. Näiden esitystilojen lisäksi sirkusta nähdään Suvilahden kentälle nousevassa sirkusteltassa sekä katualueella sen ympäristössä.</p>" }, "provider_contact_info": null, "name": { "fi": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival", "sv": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival", "en": "Sisus Sirkus: Memoirs of Mud – Helsinki Circus Festival" }, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/10CD6CDEC7EBB3B892BA375E7FCAE883/Sisus_Sirkus_Memoirs_of_Mud_", "sv": "http://www.caisa.fi/sv/evenemang/event/10CD6CDEC7EBB3B892BA375E7FCAE883/Sisus_Sirkus_Memoirs_of_Mud_", "en": "http://www.caisa.fi/en/events/event/10CD6CDEC7EBB3B892BA375E7FCAE883/Sisus_Sirkus_Memoirs_of_Mud_" }, "short_description": { "fi": "Memoirs of Mud on absurdin leikkisä nykysirkusseikkailu, jossa akrobatia, multa ja mielikuvitukselliset objektit törmäyttävät luonnon ja keinotekoisuuden." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69459/?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, "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, "name": { "fi": "Poetiikkakonferenssi – Kirjallisuusfestivaali Runokuu", "sv": "Poetiikkakonferenssi", "en": "Poetiikkakonferenssi – Runokuu / Poetry Moon Literature Festival" }, "provider": null, "location_extra_info": null, "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" }, "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." }, "@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, "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, "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" }, "provider": null, "location_extra_info": null, "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" }, "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!" }, "@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, "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, "name": { "fi": "Caisa Poetry Night – Kirjallisuusfestivaali Runokuu", "sv": "Caisa Poetry Night", "en": "Caisa Poetry Night – Runokuu / Poetry Moon Literature Festival" }, "provider": null, "location_extra_info": null, "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" }, "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." }, "@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, "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, "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" }, "provider": null, "location_extra_info": null, "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" }, "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." }, "@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, "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, "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" }, "provider": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": 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" }, "@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, "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, "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" }, "provider": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": 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" }, "@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, "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, "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" }, "provider": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": 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" }, "@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, "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, "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" }, "provider": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": 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" }, "@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, "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, "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" }, "provider": null, "location_extra_info": { "fi": "Stage", "sv": "Stage", "en": "Stage" }, "info_url": 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" }, "@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, "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, "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" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Traveling Jones on saanut solistikseen maamme Fleetwood Mac -spesialistien terävimpään kärkeen kuuluvan kitaristi-laulaja Esa ”Bluesministeri” Kuloniemen." }, "@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, "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, "name": { "fi": "Antti Autio: Haahuillen – A la Malmi", "sv": "Antti Autio: Haahuillen – A la Malmi", "en": "Antti Autio: Haahuillen – A la Malmi" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Antti Aution Haahuillen-konserttisalikiertue tuo kuulijat lähemmäksi laulujen syntyhetkiä." }, "@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, "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, "name": { "fi": "Teatteri Mukamas: Metsän arvoitus", "sv": "Teatteri Mukamas: Metsän arvoitus", "en": "Teatteri Mukamas: Metsän arvoitus" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Metsäiseen seikkailuun meidät johdattaa elävä musiikki ja Anna-Liisa Tarvaisen hurmaavat nuket. Tervetuloa kokemaan metsän ihmeitä." }, "@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, "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, "name": { "fi": "Aili Ikonen – MalmiJazz", "sv": "Aili Ikonen", "en": "Aili Ikonen" }, "provider": null, "location_extra_info": null, "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" }, "short_description": { "fi": "Aili Ikonen on maamme ykköskaartiin kuuluva laulaja ja lauluntekijä, joka tunnetaan herkkänä ja taiturimaisena tulkitsijana." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68637/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68617", "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/eventseries/4141439", "sv": "https://www.lippu.fi/eventseries/4141439", "en": "https://www.lippu.fi/eventseries/4141439" }, "description": null, "price": { "fi": "24,80 € / 19,80 €", "sv": "24,80 € / 19,80 €", "en": "24,80 € / 19,80 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385250, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-18T09:13:43.231221Z", "last_modified_time": "2026-06-18T09:13:43.231234Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791271.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385250/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-18T09:13:43.076093Z", "last_modified_time": "2026-06-18T09:13:43.401999Z", "date_published": null, "start_time": "2026-09-23T16:00:00Z", "end_time": "2026-09-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, "description": { "fi": "<p>Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa.</p><p>Teksasin El Pasossa syntynyt ja Ohion Cincinnatissa nuoruutensa viettänyt, mutta nykyään Berliinissä asuva <b>Kat Baloun</b> on blueslaulaja ja -huuliharpisti. Hän aloitti ammattilaisuransa 90-luvun alkupuolella San Franciscossa, missä nuoren Katin lauluääni, lavashow ja tyrmäkkä bluesharppu herättivät bluesyleisöjen huomion hänen esiintyessään paikallislegenda Elmer Lee Thomasin yhtyeessä.</p><p>Kat muutti vuonna 1994 Berliinin, ja on siitä lähtien keikkaillut Euroopassa. Hän on levyttänyt mm. Nina ja Eb Davisin sekä Chris Rannenbergin kanssa. Vuonna 2013 hän teki levyn suomalaisen Tomi Leino Trion kanssa.<br>Kat esiintyy Suomessa <b>The Frostbites</b> -yhtyeen – <b>Jonne Kulluvaara (kitara), <b>Jaska Prepula (basso) ja <b>Micha Maass (rummut) – kanssa. Katin viimeisin levyjulkaisu onkin nimenomaan The Frostbitesin kanssa äänitetty livealbumi vuodelta 2024.</p><p><b>Unna & Helge Tallqvist Band</b> -kokoonpanossa yhdistyvät nuori ennakkoluulottomuus ja energisyys sekä vuosikymmenien aikana hioutunut svengi. Solisti <b>Unna Kortehisto</b> on voimakasääninen ja sielukas bluesin, rhythm & bluesin ja soulin tulkitsija. Hänen lauluaan kuullaan myös mm. Saimaa-yhtyeen riveissä.<br>Helge Tallqvist Bandin muut jäsenet edustavat kotimaan roots-genren kokenutta kaartia. Kansainvälisilläkin blues -areenoilla meritoituneeseen kokoonpanoon kuuluvat <b>Helge Tallqvist</b> (huuliharppu), <b>Jonne Kulluvaara</b> (kitara), <b>Jaska Prepula</b> (basso) sekä <b>Tyko Haapala</b> (rummut).</p><p>Kesto: 2 t, sis. 20 min väliajan<br>Avustaja samalla lipulla pyörätuoliasiakkaan saattajana.</p>" }, "provider_contact_info": null, "name": { "fi": "Kat Baloun | Unna & Helge Tallqvist Band", "sv": "Kat Baloun | Unna & Helge Tallqvist Band", "en": "Kat Baloun | Unna & Helge Tallqvist Band" }, "provider": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band", "sv": "http://www.malmitalo.fi/sv/evenemang/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band", "en": "http://www.malmitalo.fi/en/events/event/66EFFAA12BFAF90BCBCC29F3A340ECA6/Kat_Baloun_Unna_Helge_Tallqvist_Band" }, "short_description": { "fi": "Kaksi valovoimaista bluessolistia astuvat Malmitalon lavalle: yhdysvaltalainen Kat Baloun sekä Unna Kortehisto yhtyeensä Unna & Helge Tallqvist Band kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68617/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }