Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=10&publisher_ancestor=ahjo%3A00001
{ "meta": { "count": 12736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=11&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=9&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "jiiri:cb296040-b17a-f111-ab0e-70a8a52df8e9", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "1" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 2385579, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-09T11:38:56.113987Z", "last_modified_time": "2026-07-09T11:38:56.114025Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/8b35bcdc-c0d5-f011-8544-7ced8d2e6e81", "name": "testikuva", "cropping": "", "photographer_name": "Testihenkilö", "alt_text": "testikuva", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385579/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbat76e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p12297/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?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:p13050/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?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:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p23886/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p272/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?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:p3670/?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:p5121/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7179/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p965/?format=api" } ], "created_time": "2026-07-09T11:38:59.357509Z", "last_modified_time": "2026-07-09T11:38:59.357529Z", "date_published": "2026-07-08T09:41:56Z", "start_time": "2026-07-19T07:00:00Z", "end_time": "2026-07-19T12: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, "short_description": { "fi": "Tapahtuman lyhyt kuvaus" }, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi</p></div>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "name": { "fi": "Testitapahtuma 10" }, "provider": { "fi": "Millat Ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cb296040-b17a-f111-ab0e-70a8a52df8e9/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69604", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/", "sv": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/", "en": "https://www.lippu.fi/sv/event/hopeacine-vuotalo-vuotalo-21877354/" }, "price": { "fi": "10€", "sv": "10€", "en": "10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T11:14:38.908400Z", "last_modified_time": "2026-07-09T11:14:38.908416Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791048.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T11:14:38.805755Z", "last_modified_time": "2026-07-09T11:14:39.029330Z", "date_published": null, "start_time": "2026-12-15T12:00:00Z", "end_time": "2026-12-15T14: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, "short_description": { "fi": "Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!" }, "description": { "fi": "<p>Tervetuloa nauttimaan huippusuosituista HopeaCine-näytöksistä ja tekijävierailuista!</p><p>Kerro kaikille on voimaelokuva Amanda Aaltosesta, joka kieltäytyy alistumasta hänelle varattuun köyhän naisen ankeaan kohtaloon ja etsii huimapäisesti onneaan maailmalta. Rangaistukseksi sääntöjen rikkomisesta yhteiskunta anastaa häneltä kaikkein tärkeimmän, vapauden, ja sulkee hänet Seilin saarelle.</p><p>Ohjaaja: Alli Haapasalo<br>Pääosissa: Aamu Milonoff, Krista Kosonen, Marketta Tikkanen, Jakob Öhrman<br>Kesto: 1 t 52min + 30 min keskustelu<br>Kieli: suomi</p><p>**</p><p><b>HopeaCinen</b> syksyn ohjelmistossa on tuttuun tapaan kotimaisia uutuuselokuvia kerran kuussa. Kuhunkin esitykseen kutsutaan vieraiksi elokuvantekijöitä tai elokuva-asiantuntijoita, jotka näytöksen jälkeen avaavat elokuvan tekoprosessia ja tarjoavat uutta ajateltavaa elokuvakatselun syventämiseksi.</p><p>HopeaCine-sarjan elokuvia esitetään Cinema Orionissa, Malmitalossa ja Vuotalossa.</p><p>Joulukuun elokuva: Kerro kaikille<br>Cinema Orion ke 9.12. klo 13.00<br>Malmitalo to 10.12. klo 13.00<br>Vuotalo ti 15.12. klo 14.00</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille", "en": "http://www.vuotalo.fi/en/events/event/A77F53D0413D88940FB5147E191620EC/HopeaCine_Kerro_kaikille" }, "name": { "fi": "HopeaCine: Kerro kaikille", "sv": "HopeaCine: Kerro kaikille", "en": "HopeaCine: Kerro kaikille" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69604/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69603", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/", "sv": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/", "en": "https://www.lippu.fi/sv/event/finglish-standup-ilta-ali-jahangiri-karim-aldulaimi-with-guests-vuotalo-21741830/" }, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385576, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T11:14:38.223461Z", "last_modified_time": "2026-07-09T11:14:38.223477Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791075.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385576/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T11:14:38.102189Z", "last_modified_time": "2026-07-09T11:14:38.353171Z", "date_published": null, "start_time": "2026-12-12T16:00:00Z", "end_time": "2026-12-12T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Kaksikielinen komediailta, jossa nauru ei katso kieltä!", "sv": "En komedikväll på finska och engelska där skrattet inte bryr sig om språk!", "en": "A bilingual comedy event where laughter knows no language boundaries!" }, "description": { "fi": "<p>Kaksikielinen komediailta, jossa nauru ei katso kieltä!</p><p>Luvassa on ilta täynnä huippukoomikoita, jotka esiintyvät sekä suomeksi että englanniksi. Lavalle nousee sekä uusia nousevia nimiä että kokeneita konkareita ja tunnelma on taatusti katossa!</p><p>Illan MC:nä toimii karismaattinen <b>Karim Aldulaimi</b>, yksi Suomen kiinnostavimmista ja nopeimmin nousevista stand up -koomikoista. Karim on valloittanut yleisön lavalla, somessa ja sydämissä ja vauhti vain kiihtyy!</p><p>Illan päättää <b>Ali Jahangiri</b>.<br> <br>Finglish Stand Up -illoissa on aina hyvä meininki: lavalla nähdään koomikoita eri taustoista ja tyyleistä, ja monikielinen huumori yhdistää yleisön! Tule nauramaan mukana – Finglish Stand Up yhdistää kielet, kulttuurit ja komiikan parhaat puolet!</p><p>Kieli: suomi, englanti.<br> <br>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30. Kesto: n.2 h sis. väliaika. Liput à 20/15 € @ Lippu.fi tai lippuautomaatilta ovella.</p>", "sv": "<p>En komedikväll på finska och engelska där skrattet inte bryr sig om språk!</p><p>Det blir en kväll full av toppkomiker som uppträder på både finska och engelska. På scenen ser vi både nya lovande namn och erfarna veteraner, och stämningen kommer garanterat att nå taket!</p><p>Kvällens konferencier är den karismatiske <b>Karim Aldulaimi</b>, en av Finlands mest intressanta och snabbast stigande stand up-komiker. Karim har fängslat publiken på scenen, i sociala medier och i deras hjärtan, och tempot bara ökar!<br> <br>På Finglish Stand Up-kvällarna är det alltid god stämning – vi får se komiker från olika bakgrunder och stilar på scenen, och publiken förenas av den flerspråkiga humorn. Kom med och skratta – Finglish Stand Up förenar språk, kulturer och komikens bästa sidor! Huvudartist: <b>Ali Jahangiri.</b></p><p>Språk: finska, engelska<br>Klubbkväll, A-rättigheter, Café Pokkari står för serveringen, dörrarna öppnas kl. 17.30. Längd: ca 120 min. inkl. paus. Bilj. à 20/15 € @ Lippu.fi eller från biljettautomaten i aulan.</p>", "en": "<p>A bilingual comedy event where laughter knows no language boundaries!</p><p>The evening will be full of top comedians performing in both Finnish and English. The stage will feature new up-and-coming names as well as seasoned veterans, and the atmosphere is guaranteed to go through the roof!<br> <br>The MC of the evening will be the charismatic <b>Karim Aldulaimi</b>, one of Finland’s most interesting and fastest-rising stand-up comedians. Karim has captivated audiences on stage, on social media and in people’s hearts, and he is only picking up steam!</p><p><b>Ali Jahangiri</b> closes the evening.</p><p>Finglish Stand Up evenings are always a great time – comedians from different backgrounds and styles take to the stage, and the audience is united by multilingual humour! Come laugh with us – Finglish Stand Up brings together languages, cultures and the best aspects of comedy!</p><p>Language: Finnish, English</p><p>Club evening, alcohol serving licence, refreshments by Café Pokkari, starting from 5.30 PM. Duration: roughly 120 min, incl. intermission. Tickets à 20/15 € @ Lippu.fi or from the ticket machine at the door.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up", "en": "http://www.vuotalo.fi/en/events/event/6F2593CCBA5F7B432CBDCA131506B193/Finglish_Stand_Up" }, "name": { "fi": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests", "sv": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests", "en": "Finglish Stand Up – Ali Jahangiri, Karim Aldulaimi & guests" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69603/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69600", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385573, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T09:14:30.510962Z", "last_modified_time": "2026-07-09T09:14:30.510976Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789982.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385573/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T09:14:30.361331Z", "last_modified_time": "2026-07-09T09:14:30.724604Z", "date_published": null, "start_time": "2026-12-05T06:00:00Z", "end_time": "2027-01-30T14: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, "short_description": { "fi": "Tiesitkö, että Vuosaaressakin on joskus tallustanut mammutti? Koko perheen näyttely kurkistaa esihistorialliseen aikaan." }, "description": { "fi": "<p>Tiesitkö, että Vuosaaressakin on joskus tallustanut mammutti? Koko perheen näyttely kurkistaa esihistorialliseen aikaan.</p><p><i>Minä olen pieni kallio.</p><p>Nimeni on nykyään Stenkullan kallio,<br>mutta minulla on ollut myös monia muita nimiä.</p><p>Minä olen ollut täällä jo pitkään.</p><p>Olen nähnyt monia kansoja ja kuullut monia kieliä.</p><p>Olen seurannut ihmisiä ja heidän elämäänsä:<br>surua, iloa, vihaa ja rakkautta.</p><p>Olen nähnyt, kuinka luonto ja eläimet ovat muuttuneet.</p><p>Nyt haluan kertoa teille, mitä kaikkea olen kokenut.</i></p><p>Ikikallion tarina alkaa yli 100 000 vuoden takaa ajasta, jolloin Vuosaaren alueella kulki mammutteja ja niiden metsästäjiä. Tuhansien vuosien aikana kallio ehtii ihmetellä monen eri ihmisheimon puuhia sekä ympäristössä tapahtuvia muutoksia. Lasten kokoisessa näyttelyssä pääset eläytymään aikakaudesta ja tunnelmasta toiseen. Lopulta päädyt nykyaikaan, jossa maa yhä kätkee sisäänsä menneisyyden sirpaleita. Vuosaaren mammutistakin on jäänyt jäljelle valtava kyynärluu.</p><p>Näyttely on toteutettu selkosuomeksi <i>Ikikallion tarinoita – mammuteista meidän aikaamme</i> -kuvakirjan pohjalta. Tarinan on kirjoittanut arkeologi <b>Andreas Koivisto</b>, ja kuvituksen on tehnyt esihistoriaan erikoistunut taiteilija <b>Tom Björklund</b>. Vantaan kaupunginmuseon alkuperäisnäyttely on muokattu Vuotalon galleriatilaan sopivaksi.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita", "en": "http://www.vuotalo.fi/en/events/event/CCB01825D8841E2F01A52E3E5E8DF182/Ikikallion_tarinoita" }, "name": { "fi": "Ikikallion tarinoita", "sv": "Ikikallion tarinoita", "en": "Ikikallion tarinoita" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69599", "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:53/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385572, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-09T08:14:06.405137Z", "last_modified_time": "2026-07-09T08:14:06.405154Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790982.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385572/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-09T08:14:06.289505Z", "last_modified_time": "2026-07-09T08:14:06.620066Z", "date_published": null, "start_time": "2026-11-05", "end_time": "2026-11-15", "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, "short_description": { "fi": "Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.", "en": "The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026." }, "description": { "fi": "<p>Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan teoksia kansainvälisiltä ja paikallisilta taiteilijoilta, joiden kriittinen ajattelu, visiot, kokemukset ja unelmat avaavat pieniä ikkunoita maailmaan, jossa elämme.</p><p>Caisa on festivaalin keskeinen yhteistyökumppani ja keskeinen esityspaikka. Festivaalin ohjelmisto, lipunmyynti sekä ilmoittautuminen Audience Clubiin ja Soup Talk -keskustelutilaisuuksiin avautuvat syyskuun puolivälissä.</p><p>Jos haluat syventää suhdettasi tanssiin ja esitystaiteeseen, olet tervetullut mukaan <b>Audience Club</b> -ryhmään, joka osallistuu festivaaliin yhdessä ja seuraa sen ohjelmaa. Audience Club tarjoaa fasilitoituja keskusteluja, luovia tehtäviä ja ohjattuja harjoitteita, jotka tukevat ajatustenvaihtoa sekä yhteyden rakentumista teoksiin ja muihin katsojiin.</p><p>Toinen tapa tutustua ohjelmaan on osallistua <b>Soup Talk</b> -keskusteluihin, joissa ohjelmistossa vierailevat taiteilijat kohtaavat paikallisen taiteilijan ja yleisön soppakulhon ja keskustelun äärellä. Tervetuloa kuuntelemaan, esittämään kysymyksiä ja keskustelemaan. Soup Talkit järjestetään yhteistyössä Caisan kanssa.</p><p>Liikkeellä marraskuussa järjestetään 5.–15.11.2026.</p>", "en": "<p>The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026.</p><p>The festival is an invitation to come together and experience works by international and local artists, whose critical thinking, visions, experiences, and dreams open small windows onto the world we are living in.</p><p>Caisa is an important partner of the festival and a central venue. The festival programme, ticket sales, and registration for the Audience Club and Soup Talks will open in mid-September.</p><p>If you wish to deepen your engagement with dance and performance, you are welcome to join the <b>Audience Club</b>, a group that follows the festival programme together. The Audience Club offers facilitated discussions, creative tasks, and guided exercises that support exchange and foster connections with both the works and fellow audience members.</p><p>Another way to engage with the programme is by joining <b>Soup Talks</b>, a series of informal conversations with artists presenting their work during the festival. Visiting artists meet a local artist and the audience around a bowl of soup and conversation. Everybody is invited to listen, ask questions, and take part in the discussion. Soup Talks are organised in collaboration with Caisa.</p><p>Moving in November takes place from 5 to 15 November 2026.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/AB3F02D13860C7DFB53334DC4B81197A/Liikkeella_marraskuussa", "en": "http://www.caisa.fi/en/events/event/AB3F02D13860C7DFB53334DC4B81197A/Liikkeeella_marraskuussa_Moving_in_November" }, "name": { "fi": "Liikkeellä marraskuussa", "en": "Liikkeeellä marraskuussa – Moving in November" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69599/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69584", "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: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: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:733/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385487, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T10:14:51.585331Z", "last_modified_time": "2026-07-03T10:14:51.585347Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_790818.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385487/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T10:14:51.504757Z", "last_modified_time": "2026-07-09T08:14:06.129984Z", "date_published": null, "start_time": "2026-11-05", "end_time": "2026-11-15", "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, "short_description": { "fi": "Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.", "en": "The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026." }, "description": { "fi": "<p>Kansainvälinen nykytanssifestivaali Liikkeellä marraskuussa viettää 40-vuotisjuhlavuottaan 2026.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan teoksia kansainvälisiltä ja paikallisilta taiteilijoilta, joiden kriittinen ajattelu, visiot, kokemukset ja unelmat avaavat pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on festivaalin pitkäaikaisin yhteistyökumppani ja keskeinen esityspaikka. Festivaalin ohjelmisto, lipunmyynti sekä ilmoittautuminen Audience Clubiin ja Soup Talk -keskustelutilaisuuksiin avautuvat syyskuun puolivälissä.</p><p>Jos haluat syventää suhdettasi tanssiin ja esitystaiteeseen, olet tervetullut mukaan <b>Audience Club</b> -ryhmään, joka osallistuu festivaaliin yhdessä ja seuraa sen ohjelmaa. Audience Club tarjoaa fasilitoituja keskusteluja, luovia tehtäviä ja ohjattuja harjoitteita, jotka tukevat ajatustenvaihtoa sekä yhteyden rakentumista teoksiin ja muihin katsojiin.</p><p>Toinen tapa tutustua ohjelmaan on osallistua <b>Soup Talk</b> -keskusteluihin, joissa ohjelmistossa vierailevat taiteilijat kohtaavat paikallisen taiteilijan ja yleisön soppakulhon ja keskustelun äärellä. Tervetuloa kuuntelemaan, esittämään kysymyksiä ja keskustelemaan. Soup Talkit järjestetään yhteistyössä Caisan kanssa.</p><p>Liikkeellä marraskuussa järjestetään 5.–15.11.2026.</p>", "en": "<p>The international contemporary dance festival Moving in November celebrates its 40th anniversary in 2026.</p><p>The festival is an invitation to come together and experience works by international and local artists, whose critical thinking, visions, experiences, and dreams open small windows onto the world we are living in.</p><p>Stoa is a long-time partner of the festival and a central venue. The festival programme, ticket sales, and registration for the Audience Club and Soup Talks will open in mid-September.</p><p>If you wish to deepen your engagement with dance and performance, you are welcome to join the <b>Audience Club</b>, a group that follows the festival programme together. The Audience Club offers facilitated discussions, creative tasks, and guided exercises that support exchange and foster connections with both the works and fellow audience members.</p><p>Another way to engage with the programme is by joining <b>Soup Talks</b>, a series of informal conversations with artists presenting their work during the festival. Visiting artists meet a local artist and the audience around a bowl of soup and conversation. Everybody is invited to listen, ask questions, and take part in the discussion. Soup Talks are organised in collaboration with Caisa.</p><p>Moving in November takes place from 5 to 15 November 2026.</p><p>Paikka: Teatterisali, Musiikkisali, Aula<br>Ohjelmisto julkistetaan ja lipunmyynti aukeaa syksyllä 2026</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeella_marraskuussa", "sv": "http://www.stoa.fi/sv/evenemang/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeella_marraskuussa", "en": "http://www.stoa.fi/en/events/event/7264FD7423DE0DC70896B44DE70BFA62/Liikkeeella_marraskuussa_Moving_in_November" }, "name": { "fi": "Liikkeellä marraskuussa", "sv": "Liikkeellä marraskuussa", "en": "Liikkeeellä marraskuussa – Moving in November" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69584/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69309", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385489, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T11:14:29.732866Z", "last_modified_time": "2026-07-03T11:14:29.732881Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793732.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385489/?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-07-03T11:14:29.624036Z", "last_modified_time": "2026-07-09T07:14:10.632872Z", "date_published": null, "start_time": "2026-11-21T12:00:00Z", "end_time": "2026-11-21T15: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, "short_description": { "fi": "Lapsen oikeuksien viikolla Stoassa lauantai on pienten ja suurten eliökuntalaisten päivä!" }, "description": { "fi": "<p>Lapsen oikeuksien viikolla Stoassa lauantai on pienten ja suurten eliökuntalaisten päivä!</p><p>Päivän ohjelma on inspiroitunut <b>Anni Kytömäen</b> <i>Eliökuntalaisten manifestista</i>, ja sen aikana juhlitaan viisautta, leikkiä ja luovuutta, jota on erityisesti eliökuntalaisista pienimmillä. <u><a href=\"https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/manifesti_fi_A4_riisuttu_Optimized.pdf\">Voit tutustua manifestiin tästä</u></a>, ja <u><a href=\"https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/eliokuntalaisten%20manifesti%20selkosuomi.pdf\">täältä pääset lukemaan selkokielelle mukautetun manifestin</u></a>.</p><p>Nyt on aikuisten vuoro kuunnella, millaisia polkuja lapset tulevaisuuteen haluavat tallata. Lisäksi luvassa on ainakin paljon mukavaa tekemistä, popcornia – ja tietysti myös tanssia.</p><p>Ohjelma tarkentuu.</p><p>Vapaa pääsy.</p>", "sv": "<p>https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/manifest%20for%20alla%20levande.pdf</p>", "en": "<p>https://stoa.fi/instancedata/prime_product_resurssivaraus/kulke/FileManager/Files/Eli%C3%B6kuntalaisten%20manifesti/A%20Manifesto%20for%20a%20living%20world.pdf</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_", "sv": "http://www.stoa.fi/sv/evenemang/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_", "en": "http://www.stoa.fi/en/events/event/D8876F30977ABA691E27E00AF5309F98/Pienten_ja_suurten_eliokuntalaisten_klubi_" }, "name": { "fi": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille", "sv": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille", "en": "Pienten ja suurten eliökuntalaisten klubi – lapsille ja aikuisille" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69309/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69299", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385076, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T08:14:04.347349Z", "last_modified_time": "2026-06-11T08:14:04.347364Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793722.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385076/?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-11T08:14:04.262814Z", "last_modified_time": "2026-07-09T07:13:56.518866Z", "date_published": null, "start_time": "2026-09-04T07:30:00Z", "end_time": "2026-09-04T08:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!", "sv": "Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!", "en": "Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!" }, "description": { "fi": "<p>Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!</p><p>Sadut syntyvät lasten ideoista improvisoiden ja niityllä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.</p><p><b>Jussi Ollila</b> on näyttelijä ja muusikko, jonka erityisosaamista on improvisaatio ja lastenkulttuuri. Hänet voi tunnistaa myös lastenohjelmien Maltin ja Valtin Valtin roolista. Jussilla on oma kiertävä teatteri Tarinataikurit ja hän soittaa TomuTomu -yhtyeessä.</p><p>Paikkana on Stoan aukion vieressä kasvava Eliökuntalaisten niitty. Tapaamispaikka aukion Stoa-veistoksilla.</p><p>Myrskysään sattuessa tuokio siirtyy sisätiloihin tai sille etsitään uusi ajankohta.</p><p>Myös perheet ovat tuokioihin tervetulleita!</p><p>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy, mukaan mahtuvat perheet, päiväkotiryhmät ja muut kokoonpanot. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Varhaiskasvatusryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.hel.fi 4.8. klo 10 alkaen</u></a>.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!</p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av det liv man möter på ängen. Den trogna utflyktsgitarren är med.</p><p><b>Jussi Ollila</b> är skådespelare och musiker med specialkompetens inom improvisation och barnkultur. Man känner igen honom också från rollen som Valtti i barnprogrammet Maltti ja Valtti. Jussi har sin egen ambulerande teater, Tarinataikurit, och spelar i bandet TomuTomu.</p><p>Platsen är Alla Levandes äng, som växer fram intill Stoaplatsen. Mötesplatsen är vid skulpturerna på Stoaplatsen.</p><p>Vid oväder flyttas sagostunden inomhus eller så hittas ett nytt datum för den.</p><p>Också familjer är välkomna att delta!</p><p>Åldersrekommendation: 3–7 år <br>Längd: cirka 45 min. <br>Språk: finska</p><p>Fritt inträde: familjer, daghemsgrupper och andra sällskap är välkomna. <a href=\"https://kultus.hel.fi/sv/search?places=tprek%3A7259\"><u>Obligatorisk förhandsanmälan för grupper inom småbarnspedagogiken på kultus.hel.fi från och med den 4 augusti kl. 10</u></a>.</p>", "en": "<p>Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!</p><p>The stories are improvised based on children’s ideas and inspired by the life that we encounter in a meadow. A trusty campground guitar accompanies our travels.</p><p><b>Jussi Ollila</b> is an actor and musician whose special areas of expertise are improvisation and children’s culture. He is also known for his role as Valtti in the children’s programme Maltti ja Valtti. Jussi runs his own travelling theatre company, Tarinataikurit, and plays in the band TomuTomu.</p><p>The venue is the Meadow of the Living World growing next to the Stoa square. We'll meet at the Stoa sculpture in the square.</p><p>In the event of stormy weather, the event will be moved indoors or rescheduled.</p><p>Families are also welcome to join us!</p><p>Recommended age: 3–7 <br>Duration: roughly 45 min <br>Language: Finnish</p><p>Free entry; families, daycare groups and other groups are welcome. <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7259\"><u>Obligatory advance registration for early childhood education groups at kultus.hel.fi from 4 August at 10.00 onwards</u></a>.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_Jussis_angssagor_", "en": "http://www.stoa.fi/en/events/event/C0E14653C6D6FF310C598232F177E34F/Jussin_niittysadut_Jussi_s_meadow_fairytales_" }, "name": { "fi": "Jussin niittysadut – Tarinallinen satuhetki Eliökuntalaisten niityllä", "sv": "Jussin niittysadut (Jussis ängssagor) – Sagostund på Alla Levandes äng", "en": "Jussin niittysadut (Jussi’s meadow fairytales) – A storytelling session on the Meadow of the Living World" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69299/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69298", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385075, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T08:14:04.039419Z", "last_modified_time": "2026-06-11T08:14:04.039434Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793721.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385075/?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-11T08:14:03.950226Z", "last_modified_time": "2026-07-09T07:13:56.348449Z", "date_published": null, "start_time": "2026-09-04T06:30:00Z", "end_time": "2026-09-04T07:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!", "sv": "Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!", "en": "Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!" }, "description": { "fi": "<p>Jussi Ollila toimii oppaana ihmeellisiin, ilahduttaviin ja hurjiinkin tarinoihin. Tänä syksynä seikkailuun sukelletaan niittymaisemissa!</p><p>Sadut syntyvät lasten ideoista improvisoiden ja niityllä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara.</p><p><b>Jussi Ollila</b> on näyttelijä ja muusikko, jonka erityisosaamista on improvisaatio ja lastenkulttuuri. Hänet voi tunnistaa myös lastenohjelmien Maltin ja Valtin Valtin roolista. Jussilla on oma kiertävä teatteri Tarinataikurit ja hän soittaa TomuTomu -yhtyeessä.</p><p>Paikkana on Stoan aukion vieressä kasvava Eliökuntalaisten niitty. Tapaamispaikka aukion Stoa-veistoksilla.</p><p>Myrskysään sattuessa tuokio siirtyy sisätiloihin tai sille etsitään uusi ajankohta.</p><p>Myös perheet ovat tuokioihin tervetulleita!</p><p>Ikäsuositus: 3–7-vuotiaat <br>Kesto: n. 45 min <br>Kieli: suomi</p><p>Vapaa pääsy, mukaan mahtuvat perheet, päiväkotiryhmät ja muut kokoonpanot. <a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7259\"><u>Varhaiskasvatusryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.hel.fi 4.8. klo 10 alkaen</u></a>.<br> <br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Jussi Ollila guidar oss genom underbara, glädjande och till och med smått otroliga berättelser. I höst ger vi oss ut på äventyr i ängslandskap!</p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av det liv man möter på ängen. Den trogna utflyktsgitarren är med.</p><p><b>Jussi Ollila</b> är skådespelare och musiker med specialkompetens inom improvisation och barnkultur. Man känner igen honom också från rollen som Valtti i barnprogrammet Maltti ja Valtti. Jussi har sin egen ambulerande teater, Tarinataikurit, och spelar i bandet TomuTomu.</p><p>Platsen är Alla Levandes äng, som växer fram intill Stoaplatsen. Mötesplatsen är vid skulpturerna på Stoaplatsen.</p><p>Vid oväder flyttas sagostunden inomhus eller så hittas ett nytt datum för den.</p><p>Också familjer är välkomna att delta!</p><p>Åldersrekommendation: 3–7 år <br>Längd: cirka 45 min. <br>Språk: finska</p><p>Fritt inträde: familjer, daghemsgrupper och andra sällskap är välkomna. <a href=\"https://kultus.hel.fi/sv/search?places=tprek%3A7259\"><u>Obligatorisk förhandsanmälan för grupper inom småbarnspedagogiken på kultus.hel.fi från och med den 4 augusti kl. 10</u></a>.</p>", "en": "<p>Jussi Ollila serves as a guide into stories that are wondrous, delightful and even thrilling. This autumn, we dive into adventures through meadows!</p><p>The stories are improvised based on children’s ideas and inspired by the life that we encounter in a meadow. A trusty campground guitar accompanies our travels.</p><p><b>Jussi Ollila</b> is an actor and musician whose special areas of expertise are improvisation and children’s culture. He is also known for his role as Valtti in the children’s programme Maltti ja Valtti. Jussi runs his own travelling theatre company, Tarinataikurit, and plays in the band TomuTomu.</p><p>The venue is the Meadow of the Living World growing next to the Stoa square. We'll meet at the Stoa sculpture in the square.</p><p>In the event of stormy weather, the event will be moved indoors or rescheduled.</p><p>Families are also welcome to join us!</p><p>Recommended age: 3–7 <br>Duration: roughly 45 min <br>Language: Finnish</p><p>Free entry; families, daycare groups and other groups are welcome. <a href=\"https://kultus.hel.fi/en/search?places=tprek%3A7259\"><u>Obligatory advance registration for early childhood education groups at kultus.hel.fi from 4 August at 10.00 onwards</u></a>.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_", "sv": "http://www.stoa.fi/sv/evenemang/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_Jussis_angssagor_", "en": "http://www.stoa.fi/en/events/event/691BF08803460CBE7842EF701E1CECCF/Jussin_niittysadut_Jussi_s_meadow_fairytales_" }, "name": { "fi": "Jussin niittysadut – Tarinallinen satuhetki Eliökuntalaisten niityllä", "sv": "Jussin niittysadut (Jussis ängssagor) – Sagostund på Alla Levandes äng", "en": "Jussin niittysadut (Jussi’s meadow fairytales) – A storytelling session on the Meadow of the Living World" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69298/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69300", "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:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385079, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-06-11T09:14:53.311746Z", "last_modified_time": "2026-06-11T09:14:53.311763Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793723.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385079/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-06-11T09:14:53.121242Z", "last_modified_time": "2026-07-09T07:13:54.861722Z", "date_published": null, "start_time": "2026-08-29T11:00:00Z", "end_time": "2026-08-29T13: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, "short_description": { "fi": "Suomen luonnon päivänä metsä kutsuu! Liity mukaan kävelylle Hallainvuoreen ja Pekko Käpin konserttiin.", "sv": "Skogen kallar på Finska naturens dag! Följ med på en promenad till Hallonberget och Pekko Käppis konsert.", "en": "On Finnish Nature Day, the forest beckons! Join us for a walk to Hallainvuori and a concert by Pekko Käppi." }, "description": { "fi": "<p>Suomen luonnon päivänä metsä kutsuu! Liity mukaan kävelylle Hallainvuoreen ja Pekko Käpin konserttiin.</p><p>Konserttipaikalla partiolaiset keittävät metsäkahvit 50:lle ensimmäiselle.</p><p><b>klo 14 | kävely toimittaja Riikka Kaihovaaran seurassa.</b><br>Lähtö: Leikkipaikka Hallainvuori, Myllärintie 6.<br><u><a href\"https://ilmonet.fi/course/H265474>Ilmoittaudu kävelylle Riikka Kaihovaaran seurassa tästä linkistä</u></a>.</p><p><b>klo 14 | kävely lapsille ja aikuisille biologi ja tietokirjailija Sanja Hakalan seurassa ötököihin tutustuen.</b><br>Lähtö: Leikkipaikka Hallainvuori, Myllärintie 6.<br><u><a href\"https://ilmonet.fi/course/H265473>Ilmoittaudu Sanja Hakalan ötökkätutkimusmatkalle tästä.</u></a></p><p><b>klo 15 | Metsäkonsertissa jouhikkotaiteilija Pekko Käppi</b><br>Ota mukaan istuinalusta. Konserttiin voi tulla, vaikka ei osallistuisi ohjelmallisille kävelyille. Ei ilmoittautumista. Opastus konserttipaikalle leikkipaikka Hallainvuorelta, Myllärintie 6 klo 14.45.</p><p><b>Pekko Käppi</b> on monipuolinen musiikintekijä, joka on erikoistunut vanhaan suomalaiseen lauluperinteeseen ja soittaa suomalais-karjalaista jouhikkoa. Käppi tunnetaan erityisesti jouhikon soiton uuden tulemisen pioneerina, mutta myös tutkijana, opettajana, tuottajana ja säveltäjänä. Hänen sävellyksiään on syntynyt elokuviin, teatteriin, installaatioihin ja äänilevyille. Käpin musiikissa yhdistyvät kansanperinne, tarinat, blues-sävyt sekä voimakas ja vangitseva lavakarisma.</p><p><b>Riikka Kaihovaara</b> on suomalainen dokumentaristi, toimittaja ja kirjailija. Kaihovaara työskentelee Yleisradiossa ja on tehnyt useita dokumenttisarjoja ja -elokuvia yhteiskunnallisista aiheista. Kaihovaaran esseekokoelmissa <i>Villi ihminen ja muita luontokappaleita</i> sekä <i>Vieras eläin ja muita uusia luontokappaleita</i> pohditaan luontosuhdetta ja ihmisen roolia osana luontoa. Hänen töitään leimaavat luonnon ja luonnollisuuden käsitteiden kriittinen tutkiminen.</p><p><b>Sanja Hakala</b> on biologi, tietokirjailija ja tutkijatohtori Helsingin yliopistossa. Hän tutkii hyönteisten sosiaalista käytöstä, erityisesti muurahaisia, laajemmin elonkirjoa ja ihmisten suhtautumista siihen esimerkiksi kaupunkien viherrakentamisessa. Hakala on kirjoittanut mm. teokset <i>Pikku Myyn ötökkäkirja</i> ja <i>Muumipapan lintukirja</i>, ja tehnyt tiedeviestintää Ötökkäakatemiassa.</p><p>Ota mukaan istuinalusta ja halutessasi evästä. Varaudu säänmukaisilla varusteilla ja hyvillä kengillä.</p><p>Lisätiedot:<br>Vapaa pääsy. Tervetuloa! Ilmoittaudu haluamallesi kävelylle.<br>Huomaathan, että reitit eivät ole esteettömiä.<br>Säävaraus: Kovalla sateella tai myrskytuulella konsertti siirretään sisätiloihin Stoaan. Samoin ötökkäkävely toteutetaan Stoan sisällä työpajana.<br>Älä jätä metsään mitään roskia.</p><p>Tapahtuman järjestää Stoa: Itäkeskuksen kirjasto, Kulttuuripalvelut, Helsingin työväenopisto ja Nuorisopalvelut.</p>", "sv": "<p>Skogen kallar på Finska naturens dag! Följ med på en promenad till Hallonberget och Pekko Käppis konsert.</p><p>På konsertplatsen kokar scouterna skogskaffe till de 50 första besökarna.</p><p><b>kl. 14 | Promenad tillsammans med journalisten Riikka Kaihovaara.</b> <br>Avfärd: Hallonbergets lekplats, Mjölnarvägen 6. <br><u><a href=\"https://ilmonet.fi/course/H265474?lang=sv\">Anmäl dig till promenaden tillsammans med Riikka Kaihovaara via den här länken</u></a>.</p><p><b>kl. 14 | Promenad för barn och vuxna tillsammans med biologen och den facklitterära författaren Sanja Hakala, där vi lär oss mer om insekter.</b> <br>Avfärd: Hallonbergets lekplats, Mjölnarvägen 6. <br><u><a href=\"https://ilmonet.fi/course/H265473?lang=sv\">Anmäl dig till Sanja Hakalas insektstudieresa här.</u></a></p><p><b>kl. 15 | Skogskonsert med stråkharpisten Pekko Käppi</b> <br>Ta med sittunderlag. Du kan komma på konserten även om du inte deltar i de guidade vandringarna. Ingen anmälan. Guidning till konsertplatsen från Hallonbergets lekplats, Mjölnarvägen 6, kl. 14.45. <br> <br> <br><b>Pekko Käppi</b> är en mångsidig musikskapare som har specialiserat sig på den gamla finska sångtraditionen och spelar finsk-karelsk stråkharpa. Käppi är framför allt känd som en pionjär inom den nya eran för stråkharpan, men också som forskare, lärare, producent och kompositör. Han har gjort kompositioner för filmer, teaterföreställningar, installationer och grammofonskivor. I Käppis musik förenas folktradition, berättelser, bluestoner med en stark och fängslande scenkarisma.</p><p><b>Riikka Kaihovaara</b> är en finsk dokumentärfilmare, journalist och författare. Kaihovaara arbetar på Rundradion och har gjort flera dokumentärserier och dokumentärfilmer om samhällsfrågor. I sina essäsamlingar <i>Villi ihminen ja muita luontokappaleita</i> och <i>Vieras eläin ja muita uusia luontokappaleita</i> reflekterar Kaihovaara över människans förhållande till naturen och hennes roll i den. Hennes verk präglas av en kritisk granskning av begreppen natur och naturlighet.</p><p><b>Sanja Hakala</b> är biolog, facklitterär författare och forskardoktor vid Helsingfors universitet. Hon forskar i insekternas sociala beteende, särskilt myrornas, samt i den biologiska mångfalden i stort och människors inställning till den, till exempel när det gäller grönt byggande i städer. Hakala har skrivit bland annat böckerna <i>Pikku Myyn ötökkäkirja</i> och <i>Muumipapan lintukirja</i> samt arbetat med vetenskapskommunikation inom nätverket Ötökkäakatemia.</p><p>Ta med sittunderlag och matsäck om du vill. Se till att ha rätt utrustning för vädret och bra skor.</p><p>Mer information:</p><p>Fritt inträde. Välkommen! Anmäl dig till en valfri promenad.</p><p>Observera att vandringslederna inte är tillgängliga.</p><p>Enbart om vädret tillåter: Vid kraftigt regn eller stormvindar flyttas konserten inomhus till Stoa. Även insektspromenaden genomförs som en verkstad inne på Stoa.</p><p>Lämna inget skräp efter dig i skogen.</p><p>Evenemanget ordnas av Stoa: Östra centrums bibliotek, Kulturtjänsterna, Helsingfors finska arbetarinstitut och Ungdomstjänsterna</p>", "en": "<p>On Finnish Nature Day, the forest beckons! Join us for a walk to Hallainvuori and a concert by Pekko Käppi.</p><p>At the concert venue, Scouts serve a cup of forest-style coffee to the first 50 people.</p><p><b>14.00 | A walk with journalist Riikka Kaihovaara.</b> <br>Departure point: Playground Hallainvuori, Myllärintie 6. <br><u><a href=\"https://ilmonet.fi/course/H265474?lang=en\">Sign up for the walk with Riikka Kaihovaara via this link</u></a>.</p><p><b>14.00 | A walk for children and adults, led by biologist and non-fiction writer Sanja Hakala, to learn about bugs.</b> <br>Departure point: Playground Hallainvuori, Myllärintie 6. <br><u><a href=\"https://ilmonet.fi/course/H265473?lang=en\">Sign up for Sanja Hakala’s bug excursion here.</u></a></p><p><b>15.00 | Forest concert by jouhikko bowed lyre artist Pekko Käppi</b> <br>Bring something to sit on. You are welcome to attend the concert even if you do not take part in the guided walks. No registration required. Attendees are guided to the concert venue from Playground Hallainvuori, Myllärintie 6, at 14.45. <br> <br> <br><b>Pekko Käppi</b> is a versatile musician who specialises in the old Finnish song tradition and plays the Finnish-Karelian jouhikko bowed lyre. Käppi is best known as a pioneer of the revival of the jouhikko, but also as a researcher, teacher, producer and composer. He has composed music for films, theatre, installations and recordings. Käppi’s music combines folk traditions, storytelling and blues influences, delivered with a powerful and captivating stage presence.</p><p><b>Riikka Kaihovaara</b> is a Finnish documentary filmmaker, journalist and author. Kaihovaara works for the Finnish Broadcasting Company and has produced numerous documentary series and films on societal matters. Kaihovaara’s essay collections <i>Villi ihminen ja muita luontokappaleita</i> (‘Wild Human and other Creatures’) and <i>Vieras eläin ja muita uusia luontokappaleita</i> (‘Alien Animal and Other New Creatures’) delve into humankind’s relationship with nature and its role as part of nature. Her works are characterised by critical examination of the concepts of nature and naturalness.</p><p><b>Sanja Hakala</b> is a biologist, non-fiction writer and postdoctoral researcher at the University of Helsinki. She studies the social behaviour of insects, particularly ants, as well as biodiversity at large and people’s attitudes towards it, e.g. in the context of green construction in cities. Hakala has written works such as <i>Pikku Myyn ötökkäkirja</i> (‘Little My’s Bug Book’) and <i>Muumipapan lintukirja</i> (‘Moominpappa’s Bird Book’), and she has carried out science communication in the Ötökkäakatemia network.</p><p>Bring something to sit on and a snack if you like. Dress for the weather and wear suitable shoes.</p><p>Further information:</p><p>Free entry. See you there! Sign up for the walk of your choice.</p><p>Please note that the routes are not accessible.</p><p>Subject to weather conditions: In the event of heavy rain or strong wind, the concert will be moved indoors to Stoa. Similarly, the bug walk will then take place inside Stoa as a workshop.</p><p>Please do not leave any litter in the forest.</p><p>The event is organised by Stoa: Itäkeskus Library, Cultural Services, Helsinki Finnish Adult Education Centre and Youth Services.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/8B98D98603660D2FD7CEE575BB858041/Stoan_Suomen_luonnon_paiva", "sv": "http://www.stoa.fi/sv/evenemang/event/8B98D98603660D2FD7CEE575BB858041/Finska_naturens_dag_pa_Stoa_", "en": "http://www.stoa.fi/en/events/event/8B98D98603660D2FD7CEE575BB858041/Finnish_Nature_Day_at_Stoa" }, "name": { "fi": "Stoan Suomen luonnon päivä", "sv": "Finska naturens dag på Stoa", "en": "Finnish Nature Day at Stoa" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69300/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69592", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385570, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T13:14:36.632209Z", "last_modified_time": "2026-07-08T13:14:36.632252Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791317.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385570/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:34.963902Z", "last_modified_time": "2026-07-08T13:14:36.787439Z", "date_published": null, "start_time": "2026-11-17T16:00:00Z", "end_time": "2026-11-17T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa." }, "description": { "fi": "<p>PHMO:sta kajahtaa! -konserttisarja koostuu kolmesta konsertista, joista jokaisessa on oma soittimellinen profiilinsa.</p><p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston eri ikäisten taitajien esityksiä – konsertteihin on vapaa pääsy!</p><p>Konsertit 2., 3. ja 17.11. klo 18.00 Malmitalossa.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti", "en": "http://www.malmitalo.fi/en/events/event/7ACEAB45A64AA0ED15E3FA224752CFEA/PHMOsta_kajahtaa_-oppilaskonsertti" }, "name": { "fi": "PHMOsta kajahtaa! -oppilaskonsertti", "sv": "PHMOsta kajahtaa! -oppilaskonsertti", "en": "PHMOsta kajahtaa! -oppilaskonsertti" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69592/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69597", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385569, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:11.015854Z", "last_modified_time": "2026-07-08T12:14:11.015870Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789838.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385569/?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-07-08T12:14:10.924922Z", "last_modified_time": "2026-07-08T12:14:11.157290Z", "date_published": null, "start_time": "2026-12-12T12:00:00Z", "end_time": "2026-12-12T12:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/EB8DDA43F6D5FE2DE85C58484958A8B0/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69597/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68477", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385568, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:09.302461Z", "last_modified_time": "2026-07-08T12:14:09.302476Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789834.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385568/?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-07-08T12:14:09.195425Z", "last_modified_time": "2026-07-08T12:14:09.444935Z", "date_published": null, "start_time": "2026-12-03T08:00:00Z", "end_time": "2026-12-03T08:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/132F3F1F6F217003ABD6F2FE510116BD/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68477/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69596", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": { "fi": "6 €", "sv": "6 €", "en": "6 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:08.898629Z", "last_modified_time": "2026-07-08T12:14:08.898646Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789836.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385567/?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-07-08T12:14:08.804035Z", "last_modified_time": "2026-07-08T12:14:09.028449Z", "date_published": null, "start_time": "2026-12-02T15:30:00Z", "end_time": "2026-12-02T16: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, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B3DD51BA8F0CD72A31D038D63E084427/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/B3DD51BA8F0CD72A31D038D63E084427/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/B3DD51BA8F0CD72A31D038D63E084427/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69596/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69598", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:08.524304Z", "last_modified_time": "2026-07-08T12:14:08.524320Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789832.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385566/?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-07-08T12:14:08.412254Z", "last_modified_time": "2026-07-08T12:14:08.662024Z", "date_published": null, "start_time": "2026-12-02T08:00:00Z", "end_time": "2026-12-02T08:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/DE966008F7C772A0819499051E0AA2E4/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69595", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T12:14:07.975179Z", "last_modified_time": "2026-07-08T12:14:07.975195Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_789827.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385565/?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-07-08T12:14:07.835707Z", "last_modified_time": "2026-07-08T12:14:08.205962Z", "date_published": null, "start_time": "2026-12-01T08:00:00Z", "end_time": "2026-12-01T08:40:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?" }, "description": { "fi": "<p>Elipä suuren suuressa kaupungissa kerran yksinäinen mies, Maalari-Sutinen nimeltään. Mistä löytäisin – niin tuumi hän – paremman elämän?</p><p><i>Ihmeellinen maalari</i> on palkitun Red Nose Companyn uusin 3–8-vuotiaille lapsille suunnattu esitys, joka toteutetaan yhteistuotantona Lahden kaupunginteatterin kanssa. Se perustuu <b>Kaarina Helakisan</b> rakastettuun samannimiseen satuun. Esitys korostaa yhteistyön ja ystävyyden merkitystä, ja ehdottaa onnen lähteeksi kanssaihmisten huomaamista.</p><p><i>Ihmeellinen maalari</i> on Red Nose Companyn Mike & Zin -duosta tutun <b>Timo Ruuskanen sooloteos</b>, joka yhdistää klovneriaa, nukketeatteria, tarinankerrontaa ja live-musiikkia luoden kauniin ja taianomaisen maailman, jonka äärelle voivat asettua niin perheen pienimmät kuin aikuiskatsojatkin. Tervetuloa!</p><p>1.–3.12. klo 10 esitykset järjestetään varhaiskasvatusryhmille: <u><a href=\"https://kultus.hel.fi/fi/search?places=tprek%3A7254\">voit ilmoittaa ryhmäsi maksuttomiin esityksiin osoitteessa kultus.hel.fi</u></a>.</p><p>2.12. klo 17.30 ja 12.12. klo 14 esityksiin lippuja hintaan 6 € / kpl myy lippu.fi. Liput tulevat myyntiin syksyn aikana.</p><p>Kesto: 40 minuuttia<br>Ikäsuositus: 3 +<br>Kieli: suomi<br> <br>Teksti: Kaarina Helakisa & Timo Ruuskanen<br>Ohjaus, esityskonsepti ja esiintyjä: Timo Ruuskanen<br>Lavastus, puvut, nuket ja videosuunnittelu: Tiina Hauta-Aho<br>Äänisuunnittelu ja musiikki: Jukka Vierimaa ja Timo Ruuskanen<br>Valosuunnittelu: Jere Kolehmainen<br>Kuva: Tiina Hauta-aho<br>Yhteistuotanto: Red Nose Company ja Lahden kaupunginteatteri</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari", "sv": "http://www.annantalo.fi/sv/evenemang/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari", "en": "http://www.annantalo.fi/en/events/event/4C9C60316107771B68ED9DB0090A2740/Red_Nose_Company_Ihmeellinen_maalari" }, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69595/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69577", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-den-mysiga-julkonserten-vuotalo-21855885/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-den-mysiga-julkonserten-vuotalo-21855885/", "en": "https://www.lippu.fi/event/klubb-ankdamm-den-mysiga-julkonserten-vuotalo-21855885/" }, "price": { "fi": "20€ / 15€", "sv": "20€ / 15€", "en": "20€ / 15€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385479, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-03T06:16:20.123834Z", "last_modified_time": "2026-07-03T06:16:20.123854Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792333.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385479/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-03T06:16:19.910668Z", "last_modified_time": "2026-07-08T11:16:48.858337Z", "date_published": null, "start_time": "2026-11-28T16:00:00Z", "end_time": "2026-11-28T20: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, "short_description": { "fi": "Lämminhenkinen joulukonsertti kutsuu nauttimaan musiikista, tarinoista ja yhteislaulusta.", "sv": "En stämningsfull julkonsert med musik, berättelser och allsång.", "en": "A warm Christmas concert with music, stories and sing-alongs." }, "description": { "fi": "<p>Lämminhenkinen joulukonsertti kutsuu nauttimaan musiikista, tarinoista ja yhteislaulusta.</p><p>Tämän vuoden <i>Den mysiga julkonserten</i> -konsertissa tapaamme jälleen artisti ja juontaja <b>Janniken</b>. Hänen kanssaan esiintyy tuttuun tapaan laulava pariskunta <b>Maria ja Tomas Höglund</b>, joiden stemmalaulu on ollut yksi viime vuosien erittäin pidettyjen konserttien kohokohdista.</p><p>Tämän vuoden erityisvieraana on ruotsalainen supertähti <b>Patrik Isaksson</b>. Tunnetuilla ja rakastetuilla kappaleillaan hän tuo konserttiin erityistä loistoa.</p><p>Tarjolla on joululauluja, viisuja ja poppia, ja artistit esittävät myös tunnettuja kappaleita omasta ohjelmistostaan.</p><p>Yleisö voi siis odottaa iltaa, joka on täynnä ihanaa joulutunnelmaa. Luvassa on yhteislaulua, hauskoja tarinoita ja paikallisen lapsikuoron esiintyminen. Tietysti myös pidetty house-band on mukana luomassa lämpöä ja juhlavuutta.</p><p>Viime vuosien konsertit ovat olleet suuri menestys ja saaneet yleisöltä upeaa palautetta. Odotamme innolla, että pääsemme luomaan yhdessä vielä lisää ikimuistoisia jouluhetkiä vuonna 2026.</p><p>Lämpimästi tervetuloa <i>Den Mysiga Julkonserten 2026</i> -konserttiin!</p><p>Klubi-ilta, A-oikeudet. Tarjoiluista vastaa Café Pokkari. Ovet avataan klo 17.30. Konsertin kesto on noin 120 minuuttia, sisältäen väliajan. Liput à 20 / 15 € Lippu.fi-sivustolta tai lippuautomaatilta ovelta.</p>", "sv": "<p>En stämningsfull julkonsert med musik, berättelser och allsång.</p><p>I årets upplaga av <i>Den mysiga julkonserten</i> möter ni återigen artisten och programledaren <b>Jannike</b>. Tillsammans med henne medverkar det sjungande paret <b>Maria och Tomas Höglund</b>. Deras stämsång blev en av de stora höjdpunkterna under fjolårets mycket uppskattade konserter.</p><p>Årets speciella gästartist är den svenska superstjärnan <b>Patrik Isaksson</b>. Med sina välkända och älskade låtar ger han årets konsert extra guldkant.</p><p>Vi kommer att bjuda på jullåtar, visor, pop och artisterna kommer att framföra en och annan känd låt ur sin egen repertoar.<br>Publiken kan alltså se fram emot en kväll fylld av härlig julstämning. Det blir allsång, roliga historier och framträdanden av en lokal barnkör. Självklart finns även vårt uppskattade husband på plats. De bidrar till den varma och festliga atmosfären.</p><p>Förra årets konserter blev en stor succé med fantastisk respons från publiken. Vi ser fram emot att tillsammans skapa ännu fler minnesvärda julögonblick 2026.</p><p>Varmt välkomna till <i>Den Mysiga Julkonserten 2026</i>!<br> <br>Klubbkväll med A-rättigheter, serveringen sköts av Café Pokkari. Dörrarna öppnas kl. 17.30. Konsertens längd är ca 120 min. inkl. paus. Biljetter à 20 / 15 € via Lippu.fi eller från biljettautomaten vid dörren.</p>", "en": "<p>A warm Christmas concert with music, stories and sing-alongs.</p><p>In this year’s edition of <i>Den mysiga julkonserten</i>, we once again have the pleasure of meeting artist and host <b>Jannike</b>. Joining her, as familiar favourites, are the singing couple <b>Maria and Tomas Höglund</b>, whose harmonies have been one of the highlights of the dearly loved concerts of recent years.</p><p>This year’s special guest is Swedish superstar <b>Patrik Isaksson</b>. With his well-known and beloved songs, he adds an extra touch of sparkle to the concert.</p><p>The evening features Christmas songs and pop, and the artists also perform well-known songs from their own repertoires.</p><p>Audiences can look forward to an evening filled with wonderful Christmas atmosphere. There will be sing-alongs, funny stories and a performance by a local children’s choir. Of course, our celebrated house band will also be there, helping to create a warm and festive atmosphere.</p><p>The concerts in recent years have been a great success and have received wonderful feedback from audiences. We look forward to creating even more memorable Christmas moments together in 2026.</p><p>A warm welcome to <i>Den Mysiga Julkonserten 2026</i>!</p><p>Club night with alcohol serving licence. Refreshments by Café Pokkari. Doors open at 17:30. Duration: about 120 minutes, including intermission. Tickets à 20/15 euros via Lippu.fi or from the ticket machine at the door.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/EDF0413AEB2B10D544EA45E1E588534C/Den_mysiga_julkonserten_2026_Jannike_Patrik_Isaksson_SVE_samt_Tomas_och_Maria_Hoglund", "sv": "http://www.vuotalo.fi/sv/evenemang/event/EDF0413AEB2B10D544EA45E1E588534C/Den_mysiga_julkonserten_2026_Jannike_Patrik_Isaksson_SVE_samt_Tomas_och_Maria_Hoglund", "en": "http://www.vuotalo.fi/en/events/event/EDF0413AEB2B10D544EA45E1E588534C/Den_mysiga_julkonserten_2026_Jannike_Patrik_Isaksson_SVE_samt_Tomas_och_Maria_Hoglund" }, "name": { "fi": "Den mysiga julkonserten 2026: Jannike, Patrik Isaksson (SVE) samt Tomas och Maria Höglund – Klubb Ankdamm", "sv": "Den mysiga julkonserten 2026: Jannike, Patrik Isaksson (SVE) samt Tomas och Maria Höglund – Klubb Ankdamm", "en": "Den mysiga julkonserten 2026: Jannike, Patrik Isaksson (SVE) samt Tomas och Maria Höglund – Klubb Ankdamm" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69577/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68467", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1816577, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-04-14T12:14:03.400450Z", "last_modified_time": "2026-04-14T12:14:03.400465Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_786155.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1816577/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-04-14T12:14:03.230416Z", "last_modified_time": "2026-07-08T11:16:20.197011Z", "date_published": null, "start_time": "2026-08-19T14: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, "short_description": { "fi": "Kantria hehkuva ilta loistavan live-musiikin parissa kutsuu jälleen kävijät koolle Malmin tapahtumakesään!", "sv": "En kväll med glödande country och fantastisk livemusik bjuder åter in besökarna till Malms evenemangssommar!", "en": "An evening glowing with country and great live music invites visitors to the Malmi Summer of Events once again!" }, "description": { "fi": "<p>Kantria hehkuva ilta loistavan live-musiikin parissa kutsuu jälleen kävijät koolle Malmin tapahtumakesään!</p><p><b>Aikataulu</b><br>17.30–18.20\tWilliam Öster & the Moonliners<br>19.00–20.00\tSteve'n'Seagulls</p><p><b>Päivän ohjelma<br>klo 17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners tarjoilee sydäntä lämmittäviä melodioita ja jalalla poljettavaa twangia. Luvassa on rentoa, intiimiä bluesin, kantrin ja folkin fuusiota – musiikkia, joka lohduttaa ja kutsuu liikkeelle.<br>Williamin karismaattista laulua ja tarinankerrontaa säestää The Moonliners -yhtye: Sebastian Finska (pedal steel- ja sähkökitarat), Tommi Teronen (koskettimet), Juha ”Mid Tempo” Mäkinen (basso) ja Jani Ahtiainen (rummut). Tule sellaisena kuin olet ja anna grooven viedä.</p><p><b>klo 19.00–20.00 Steve ’n’ Seagulls</b><br>Vuonna 2010 perustettu Steve ’n’ Seagulls tunnetaan omaleimaisesta tyylistään, jossa newgrass, country, rock ja bluegrass kohtaavat. Yhtyeen laaja soitinarsenaali – banjosta kontrabassoon ja haitarista mandoliiniin – vaihtuu lennosta, ja kokonaisuus on hioutunut vuosien saatossa timantinkovaksi live elämykseksi.</p><p>Steve ’n’ Seagulls on julkaissut neljä albumia ja kiertänyt maailmaa Euroopasta Pohjois Amerikkaan, Australiaan ja Etelä Amerikkaan asti. Keikat tunnetaan energisyydestään, taidokkuudestaan ja tarttuvasta tunnelmastaan, jossa viihdytään ja nautitaan musiikista täysillä.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>En kväll med glödande country och fantastisk livemusik bjuder åter in besökarna till Malms evenemangssommar!</p><p><b>Tidtabell</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n' Seagulls</p><p><b>Dagens program<br>kl. 17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners bjuder på hjärtevärmande melodier och fottrampande twang. Lättsam, intim blandning av blues, country och folkmusik – musik som ger tröst och kallar till rörelse.<br>Williams karismatiska sång och historieberättande ackompanjeras av The Moonliners: Sebastian Finska (pedal steel och elgitarr), Tommi Teronen (keyboard), Juha ”Mid Tempo” Mäkinen (bas) och Jani Ahtiainen (trummor). Kom som du är och låt grooven föra.</p><p><b>kl. 19.00–20.00 Steve 'n' Seagulls</b><br>Steve 'n' Seagulls bildades 2010 och är känt för sin särpräglade stil, där newgrass, country, rock och bluegrass möts. Bandets stora instrumentarsenal – allt från banjo till kontrabas och från dragspel till mandolin – byts ut i farten, och helheten har under åren finslipats till en diamanthård liveupplevelse.</p><p>Steve 'n' Seagulls har släppt fyra album och turnerat världen över från Europa till Nordamerika, Australien och Sydamerika. Spelningarna är kända för sin energi, skicklighet och greppande stämning, där människor trivs och njuter av musiken till fullo.</p><p>Evenemangen har fritt inträde!</p>", "en": "<p>An evening glowing with country and great live music invites visitors to the Malmi Summer of Events once again!</p><p><b>Schedule</b><br>17.30–18.20 William Öster & the Moonliners<br>19.00–20.00 Steve 'n’ Seagulls</p><p><b>Programme of the day<br>17.30–18.20 William Öster & the Moonliners</b><br>William Öster & the Moonliners will offer heart-warming melodies and foot-stomping twang. The audience is in for a relaxed, intimate fusion of blues, country and folk – music that will comfort and invite you to move.<br>William's charismatic singing and storytelling will be accompanied by The Moonliners: Sebastian Finska (pedal steel and electric guitars), Tommi Teronen (keyboards), Juha ‘Mid Tempo’ Mäkinen (bass) and Jani Ahtiainen (drums). Come as you are and let the groove take you.</p><p><b>19.00–20.00 Steve 'n' Seagulls</b><br>Formed in 2010, Steve 'n' Seagulls are known for their distinctive style, where newgrass, country, rock and bluegrass meet. The band's vast arsenal of instruments from banjo to double bass and from accordion to mandolin changes on the fly, and this musical mixture has been honed into a cutting live experience over the years.</p><p>Steve 'n' Seagulls have released four albums and toured the world from Europe to North America, Australia and South America. Their shows are known for energy, skill and infectious atmosphere, where people are entertained and enjoy the music to the full.</p><p>Entry to the events is free of charge!</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners", "sv": "http://www.malmitalo.fi/sv/evenemang/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners", "en": "http://www.malmitalo.fi/en/events/event/114280A1BD6B84AC757ECD85F06A0C3D/Steve_n_Seagulls_William_Oster_the_Moonliners" }, "name": { "fi": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malmin tapahtumakesä 2026", "sv": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malms evenemangssommar 2026", "en": "Steve ’n’ Seagulls, William Öster & the Moonliners – Malmi Summer of Events 2026" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:47528682-b39e-4d24-91c6-d2eb7aecb0bc", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:79290/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" } ], "created_time": "2026-07-08T10:16:50.272605Z", "last_modified_time": "2026-07-08T10:16:50.272623Z", "date_published": "2026-07-08T10:15:49Z", "start_time": "2026-07-08T10:25:00Z", "end_time": "2026-07-08T12:25:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lyhty kuvaus" }, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "name": { "fi": "8.7.2026 Kattotapahtuma - alitapahtuma -testi" }, "provider": { "fi": "Tapahtuman järjestäjä" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:47528682-b39e-4d24-91c6-d2eb7aecb0bc/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69326", "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: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: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: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:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T10:15:03.669438Z", "last_modified_time": "2026-07-08T10:15:03.669462Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793939.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T10:15:03.510646Z", "last_modified_time": "2026-07-08T10:15:03.877386Z", "date_published": null, "start_time": "2026-12-11T16: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, "short_description": { "fi": "Tieteen ja toivon klubissa kuullaan Puistokatu 4:n tutkijoiden näkökulmia aikamme kuumiin kysymyksiin sekä Olavi Uusivirran musiikkia" }, "description": { "fi": "<p>Tieteen ja toivon klubissa kuullaan Puistokatu 4:n tutkijoiden näkökulmia aikamme kuumiin kysymyksiin sekä Olavi Uusivirran musiikkia</p><p>Puheenvuoroissa käsitellään mm. tuloeroja, kiertotalouden valuvikoja sekä sukupolvien välistä anteeksiantoa. Myös yleisölle tarjotaan mahdollisuus kommenttipuheenvuoroihin ja aikaa yhteiseen keskusteluun.</p><p>Klubia kipparoi laulaja-lauluntekijä <b>Olavi Uusivirta</b>, joka esittää tutkijoiden puheenvuorojen välissä kappaleita uransa eri vaiheilta.</p><p><b>Puistokatu 4</b> on Kaivopuistossa sijaitseva Tieteen ja toivon talo, joka tutkimuksellaan ja tapahtumillaan pyrkii kohti kestäviä tulevaisuuksia ja ymmärrystä siitä, mitä tarkoittaa hyvä elämä planeetallamme ja planeettamme kanssa. Puistokatu 4:n tutkijoista mukana ovat <b>Mikael Nurminen, Lotta Staffans, Teija Ahopelto</b> ja <b>Hanna Paulomäki</b>.</p>" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta", "sv": "http://www.stoa.fi/sv/evenemang/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta", "en": "http://www.stoa.fi/en/events/event/9485E1FCBF2D441BB082A20D3597BEF5/Puistokatu_4_x_Stoa_Tieteen_ja_toivon_klubi_Olavi_Uusivirta" }, "name": { "fi": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta", "sv": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta", "en": "Puistokatu 4 x Stoa: Tieteen ja toivon klubi & Olavi Uusivirta" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }