Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=15
{ "meta": { "count": 23126, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=16", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=14" }, "data": [ { "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": [], "info_url": null, "description": 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, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": null, "provider": 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?" }, "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" }, "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>" }, "provider_contact_info": 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": [], "info_url": null, "description": 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, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": null, "provider": 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?" }, "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" }, "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>" }, "provider_contact_info": 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": [], "info_url": null, "description": 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, "name": { "fi": "Red Nose Company: Ihmeellinen maalari", "sv": "Red Nose Company: Ihmeellinen maalari", "en": "Red Nose Company: Ihmeellinen maalari" }, "location_extra_info": null, "provider": 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?" }, "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" }, "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>" }, "provider_contact_info": 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": [], "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/" }, "description": null, "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, "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" }, "location_extra_info": null, "provider": 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." }, "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" }, "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>" }, "provider_contact_info": 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": [], "info_url": null, "description": 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, "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" }, "location_extra_info": null, "provider": 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!" }, "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" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpuc6z64a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?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:p1808/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 2385564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T10:15:36.274249Z", "last_modified_time": "2026-07-08T10:15:36.274262Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/fdc657be-fa5a-4d3f-aeb7-e8772bd9efd8.png", "name": "", "cropping": "0,94,789,883", "photographer_name": "Ai - tekoälykuva", "alt_text": "tekoälyllä tuotettu kuva Azerbaidzanilaisesta Arshin Mal Alan (operetti) musiikkiteoksesta jossa tyttö parvekkeella ja poika kävelee kadulla, he molemmat haaveilevat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-07-08T10:19:06.328049Z", "last_modified_time": "2026-07-08T10:19:06.328065Z", "date_published": null, "start_time": "2026-07-16T13:50:00Z", "end_time": "2026-07-16T14:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Arshin Mal Alan – lasten esittämä azerbaidžanilainen musiikkikomedia (engl.)", "en": "Arshin Mal Alan – an Azerbaijani musical comedy performed by children (English)" }, "location_extra_info": { "fi": "Salonki", "en": "Salonki" }, "provider": null, "short_description": { "fi": "Arshin Mal Alan\" on yksi Azerbaidžanin tunnetuimmista musiikkikomedioista. Lasten esittämä lämminhenkinen ja iloinen näytelmä tarjoaa elämyksiä kaikenikäisille", "en": "\"Arshin Mal Alan\" is one of Azerbaijan's best-known musical comedies. This heartwarming and cheerful play, performed by children" }, "info_url": null, "description": { "fi": "Arshin Mal Alan – lasten esittämä azerbaidžanilainen musiikkikomedia<p>Tervetuloa koko perheen kulttuuritapahtumaan!</p><p>\"Arshin Mal Alan\" on yksi Azerbaidžanin tunnetuimmista musiikkikomedioista. Lasten esittämä lämminhenkinen ja iloinen näytelmä tarjoaa elämyksiä kaikenikäisille.</p><p>📅 16.7.2026 klo 16.50</p><p>📍 Lippulaivan kirjasto, Salonki, Espoo</p><p>Kieli: englanti</p><p>🎟️ Vapaa pääsy</p><p>Lämpimästi tervetuloa!</p>", "en": "Arshin Mal Alan – an Azerbaijani musical comedy performed by children<p>Welcome to a cultural event for the whole family!</p><p>\"Arshin Mal Alan\" is one of Azerbaijan’s best-known musical comedies. This heartwarming and joyful play, performed by children, offers an enjoyable experience for all ages.</p><p>📅 July 16, 2026, at 4:50 p.m.</p><p>📍 Lippulaiva Library, Salonki, Espoo</p><p>Language: English</p><p>🎟️ Free admission</p><p>We warmly welcome you!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpuc6z64a/?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": [], "info_url": null, "description": 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, "name": { "fi": "8.7.2026 Kattotapahtuma - alitapahtuma -testi" }, "location_extra_info": null, "provider": { "fi": "Tapahtuman järjestäjä" }, "short_description": { "fi": "Lyhty kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Pitkä kuvaus</p></div>" }, "provider_contact_info": null, "@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": [], "info_url": null, "description": 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, "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" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tieteen ja toivon klubissa kuullaan Puistokatu 4:n tutkijoiden näkökulmia aikamme kuumiin kysymyksiin sekä Olavi Uusivirran musiikkia" }, "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" }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69326/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c", "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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "1" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:026cc54e-b17a-f111-ab0f-0022489d0839/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:cb296040-b17a-f111-ab0e-70a8a52df8e9/?format=api" } ], "images": [ { "id": 2385562, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-07-08T10:09:54.576570Z", "last_modified_time": "2026-07-08T10:09:54.576583Z", "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/2385562/?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/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" } ], "created_time": "2026-07-08T09:58:32.061802Z", "last_modified_time": "2026-07-08T10:09:55.081197Z", "date_published": "2026-07-08T09:41:29Z", "start_time": "2026-07-10T07:00:00Z", "end_time": "2026-07-10T12:00: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, "name": { "fi": "Testitapahtuma katto" }, "location_extra_info": null, "provider": { "fi": "Millat Ry" }, "short_description": { "fi": "Tapahtuman lyhyt kuvaus" }, "info_url": null, "description": { "fi": "<div><p>Tapahtuman kuvaus suomeksi</p></div>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:65c0a087-eea1-4568-8550-89ab3b9e1a7c/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agpucqzqdy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7349/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824151, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-04-01T10:17:05.647780Z", "last_modified_time": "2026-04-01T10:17:05.647794Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e0ef750-781b-48c4-96de-bc6fd613b376.jpeg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Veikko Somerpuro", "alt_text": "Henri Vanhanen katsoo kameraan, hänellä on puku ja kravatti. Vieressä on kuva hänen , sekä Mika Aaltolan kirjasta, nimeltä Etulinjassa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824151/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T09:31:22.917644Z", "last_modified_time": "2026-07-08T09:34:47.113014Z", "date_published": "2026-07-08T09:00:00Z", "start_time": "2026-09-10T15:00:00Z", "end_time": "2026-09-10T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kirjailijavieraana Henri Vanhanen - Suomi ja maailma: turvallisuuspoliittinen ilta", "sv": "Författargäst: Henri Vanhanen – Finland och världen: en kväll om säkerhetspolitik", "en": "Guest Author Henri Vanhanen - Finland and the World: An Evening on Security Policy " }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "provider": { "fi": "Henri Vanhanen", "sv": "Henri Vanhanen", "en": "Henri Vanhanen" }, "short_description": { "fi": "Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee? ", "sv": "Hur har Finlands säkerhetsmiljö förändrats i en värld i omvandling och i takt med att konkurrensen mellan USA, Ryssland och Kina skärps?", "en": "How has Finland’s security environment changed in a world in transition and amid growing competition between the United States, Russia, and China?" }, "info_url": null, "description": { "fi": "<p>Miten Suomen turvallisuusympäristö on muuttunut kun maailman murros ja Yhdysvaltojen, Venäjän ja Kiinan kilpailu kovenee?</p><p>Vieraana ulko- ja turvallisuuspolitiikan asiantuntija, ja tietokirjailija <strong>Henri Vanhanen</strong>.</p><p>Vanhanen esittelee uutuuskirjaansa ”<strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong>” (Otava 2026). Kirja kuvaa turvallisuuspolitiikan nykyhetkeä ja tulevaisuutta sekä sitä, miten meidän on sopeuduttava muuttuvaan maailmanjärjestykseen ja mitä se vaatii Suomelta.</p><p>Asiantuntija-alustuksen jälkeen on tilaa yleisökysymyksille sekä keskustelulle. Tervetuloa!</p><p>Noudatamme kirjaston tapahtumissa <a href=\"https://www.espoo.fi/fi/kulttuuriespoon-turvallisemman-tilan-periaatteet\">Turvallisemman tilan periaatteita</a>.</p>", "sv": "<p>Hur har Finlands säkerhetsmiljö förändrats i en värld i omvandling och i takt med att konkurrensen mellan USA, Ryssland och Kina skärps?</p><p>Gäst är utrikes- och säkerhetspolitisk expert samt fackboksförfattare <strong>Henri Vanhanen</strong>, som presenterar sin nya bok ”<strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong>” (Otava 2026).</p><p>Boken beskriver dagens och framtidens säkerhetspolitik samt hur Finland behöver anpassa sig till den föränderliga världsordningen och vilka krav detta ställer på oss.</p><p>Efter expertinledningen finns tid för publikfrågor och diskussion. Välkommen!</p><p><a href=\"https://www.espoo.fi/sv/kulturesbos-principer-tryggare-rum\">Vi följer bibliotekets principer för tryggare rum.</a></p><p>Evenemanget är på finska.</p>", "en": "<p>How has Finland’s security environment changed in a world in transition and amid growing competition between the United States, Russia, and China?</p><p>Our guest is foreign and security policy expert and nonfiction author <strong>Henri Vanhanen</strong>, who will present his new book On the <strong>Etulinjassa - Suomen turvallisuus epäjärjestyksen maailmassa</strong> (Otava 2026).</p><p>The book examines the current state and future of security policy and explores how Finland must adapt to a shifting global order and what this requires from us.</p><p>After the expert presentation, there will be time for audience questions and discussion. Welcome!</p><p><a href=\"https://www.espoo.fi/en/cultureespoos-principles-safer-space\">We follow the library’s Safer Space Principles.</a></p><p>The event will be held in Finnish.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agpucqzqdy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69083", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385549, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:05.369717Z", "last_modified_time": "2026-07-08T08:14:05.369739Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792691.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385549/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:05.287481Z", "last_modified_time": "2026-07-08T08:14:05.460933Z", "date_published": null, "start_time": "2026-12-09T15:30:00Z", "end_time": "2026-12-09T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PHMO: Muskarilaisten konsertti", "sv": "PHMO: Muskarilaisten konsertti", "en": "PHMO: Muskarilaisten konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/B5A8AB4951C4AE2EA6A3CADF5CA59968/PHMO_Muskarilaisten_konsertti" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69083/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68657", "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:32/?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:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385548, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.964875Z", "last_modified_time": "2026-07-08T08:14:04.964894Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791518.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T08:14:04.883716Z", "last_modified_time": "2026-07-08T08:14:05.069454Z", "date_published": null, "start_time": "2026-12-07T16:00:00Z", "end_time": "2026-12-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "sv": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantait", "en": "Yhteisötanssit: Sambaa Samba Onlinen kanssa – Malmitalon yhteisömaanantaitj" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kuun ensimmäinen maanantai tanssitaan Malmitalolla!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa", "en": "http://www.malmitalo.fi/en/events/event/CC66EC62CCA94432ACA4EBAD4F1ED548/Yhteisotanssit_Sambaa_Samba_Onlinen_kanssa" }, "description": { "fi": "<p>Kuun ensimmäinen maanantai tanssitaan Malmitalolla!</p><p>Ilmaiset ja kaikille avoimet yhteisötanssit alkavat tanssiopetuksella, jonka jälkeen oppeja pääsee harjoittelemaan livebändin säestyksellä. Tanssittava tyyli vaihtuu joka kuukausi. Tervetuloa tanssimaan!<br> <br>Aikataulu:<br>18–19 Império do Papagaio: samba<br>19–20 Samba Online<br> <br>Império do Papagaion tunnilla pääset tutustumaan brasilialaiseen karnevaalisambaan.</p><p>Samba Online on brasilialainen yhtye, joka tuo lavalle Brasilian perinteiset ja energiset rytmit, kuten samban ja pagoden. Asuttuaan Suomessa useiden vuosien ajan ryhmä brasilialaisia muusikoita sai idean vahvistaa sambakulttuuria Suomessa ja koko Pohjoismaissa.</p><p>Yhtye on jakanut lavan tunnettujen samba-artistien kanssa, kuten Arlindinho Cruzin, joka on Arlindo Cruzin – yhden samban historian merkittävimmistä nimistä – poika sekä Juninho Thybau, joka on Zeca Pagodinhon sukulainen.</p><p>Samba Online on esiintynyt suurilla lavoilla, kuten Apollo Live Clubissa, Biblioteket Livessa, Brazilian Day Stockholmissa sekä Helsinki Samba Carnavalissa Senaatintorilla, sekä esiintymällä Viking Linen aluksilla. Yhtye on esiintynyt kansainvälisesti muun muassa Suomessa, Ruotsissa, Norjassa ja Virossa.</p><p>Kappaleet “Passada de Jogador” ja “Pause e Play” ovat saatavilla kaikilla digitaalisilla alustoilla, ja lisää julkaisuja on tulossa pian. Samba Onlinen suurin vahvuus on sen iloinen ja tarttuva energia sekä tanssittava rytmi, joka saa yleisön liikkumaan ja nauttimaan musiikista alusta loppuun.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68657/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69321", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/", "sv": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/", "en": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706084/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385547, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.494572Z", "last_modified_time": "2026-07-08T08:14:04.494590Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793864.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385547/?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-08T08:14:04.412527Z", "last_modified_time": "2026-07-08T08:14:04.610255Z", "date_published": null, "start_time": "2026-12-05T12:00:00Z", "end_time": "2026-12-05T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mutaveijarit: Joulutouhotus -konsertti", "sv": "Mutaveijarit: Joulutouhotus -konsertti", "en": "Mutaveijarit: Joulutouhotus -konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joulua, joulua odotellaan, odotellessa touhutaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti", "en": "http://www.malmitalo.fi/en/events/event/B9B7354C18834F13AD0B812E9F56C9BF/Mutaveijarit_Joulutouhotus_-konsertti" }, "description": { "fi": "<p>Joulua, joulua odotellaan, odotellessa touhutaan!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis!</p><p>Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule mukaan talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet Mutaveijareiden omia jouluisia sekä talveen sopivia lauluja, sekä tapaat tuttuja hahmoja Mutaveijarilasta ja ehkäpä jostain pohjoisempaakin!</p><p>Mutaveijarit on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestä ja mukaansatempaavista lauluista. Yhtye yhdistelee kappaleissaan rohkeasti ja monipuolisesti eri musiikkityylejä aina kansanmusiikista skahan ja popista tuutulauluun. Yhtyeen jäsenet ovat musiikin ja musiikkikasvatuksen ammattilaisia ja työskentelevät yhtyeen lisäksi monipuolisesti erilaisissa musiikkipedagogisissa tehtävissä.</p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p><p>Kesto: n. 45 min<br>Ikäsuositus: 0–10 v.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69321/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69320", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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" }, { "@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": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/", "sv": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/", "en": "https://www.lippu.fi/event/mutaveijarit-joulutouhotus-konsertti-malmitalo-21706083/" }, "description": null, "price": { "fi": "8€", "sv": "8€", "en": "8€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385546, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T08:14:04.098934Z", "last_modified_time": "2026-07-08T08:14:04.098951Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793863.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385546/?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-08T08:14:03.998973Z", "last_modified_time": "2026-07-08T08:14:04.279270Z", "date_published": null, "start_time": "2026-12-05T08:30:00Z", "end_time": "2026-12-05T09:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mutaveijarit: Joulutouhotus -konsertti", "sv": "Mutaveijarit: Joulutouhotus -konsertti", "en": "Mutaveijarit: Joulutouhotus -konsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Joulua, joulua odotellaan, odotellessa touhutaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti", "en": "http://www.malmitalo.fi/en/events/event/546FEC61D6FF1D67223BFD5C4C903793/Mutaveijarit_Joulutouhotus_-konsertti" }, "description": { "fi": "<p>Joulua, joulua odotellaan, odotellessa touhutaan!</p><p>Mutaveijarilassa on koittanut talvi ja joulukin jo lähestyy. Hulvattomien talvitouhujen lomassa Mutaveijareilla on vielä kuitenkin kaikki jouluvalmistelut aivan kesken! Riisipuuroresepti on hukassa, joululahjat tekemättä ja joulusiivous aivan puolitiessään. Jouluhässäkkä on valmis!</p><p>Onneksi joulupuuhat sujuvat yhdessä leikiten. Tule mukaan talviseen konserttiin valmistautumaan jouluun laulaen ja leikkien Mutaveijareiden kanssa. Konsertissa kuulet Mutaveijareiden omia jouluisia sekä talveen sopivia lauluja, sekä tapaat tuttuja hahmoja Mutaveijarilasta ja ehkäpä jostain pohjoisempaakin!</p><p>Mutaveijarit on riemukas lastenmusiikkiyhtye, joka on tunnettu valloittavasta lavaesiintymisestä ja mukaansatempaavista lauluista. Yhtye yhdistelee kappaleissaan rohkeasti ja monipuolisesti eri musiikkityylejä aina kansanmusiikista skahan ja popista tuutulauluun. Yhtyeen jäsenet ovat musiikin ja musiikkikasvatuksen ammattilaisia ja työskentelevät yhtyeen lisäksi monipuolisesti erilaisissa musiikkipedagogisissa tehtävissä.</p><p>Mutaveijarit: Veikko Muikku, Johanna Mäkitalo, Mari Nieminen, Jussi Nikula, Miia Reko, Eveliina Saikkonen, Saija Santavirta, Leena Untamala</p><p>Kesto: n. 45 min<br>Ikäsuositus: 0–10 v.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69320/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69082", "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": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385545, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T07:13:56.065016Z", "last_modified_time": "2026-07-08T07:13:56.065032Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792688.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385545/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T07:13:55.937821Z", "last_modified_time": "2026-07-08T07:13:56.211535Z", "date_published": null, "start_time": "2026-12-03T16:00:00Z", "end_time": "2026-12-03T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "sv": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti", "en": "PHMO: Pienten konsertti – Soitinryhmien ja musiikkipajojen yhteiskonsertti" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti", "en": "http://www.malmitalo.fi/en/events/event/47C19EAC692CBF5E3273ECAA064A7787/PHMO_Pienten_konsertti" }, "description": { "fi": "<p>Juuri sinä olet lämpimästi tervetullut kuuntelemaan näitä Pohjois-Helsingin musiikkiopiston nuorten taitajien esityksiä – konserttiin on vapaa pääsy!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69082/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69225", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.968686Z", "last_modified_time": "2026-07-08T06:14:36.968704Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793532.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T06:14:36.899826Z", "last_modified_time": "2026-07-08T06:14:37.057051Z", "date_published": null, "start_time": "2026-12-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kauneimmat joululaulut", "sv": "Kauneimmat joululaulut", "en": "Kauneimmat joululaulut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Laula yhdessä ja tee hyvää!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_", "en": "http://www.kanneltalo.fi/en/events/event/0C2C63F65E48211E1D2207CAA9305A99/Kauneimmat_joululaulut_" }, "description": { "fi": "<p>Laula yhdessä ja tee hyvää!</p><p>Suomen Lähetysseuran Kauneimmat Joululaulut kaikuvat jälleen maailman lasten puolesta. Tule laulamaan yhdessä – yksin, kaksin tai isommallakin porukalla!</p><p>Kannelmäen seurakunnan järjestämässä tilaisuudessa joulun tunnelmaan vievät sekä perinteiset tutut joululaulut että viime vuosina suosioon nousseet kappaleet. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69225/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69224", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385543, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T06:14:36.592609Z", "last_modified_time": "2026-07-08T06:14:36.592626Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793531.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385543/?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-08T06:14:36.458970Z", "last_modified_time": "2026-07-08T06:14:36.781023Z", "date_published": null, "start_time": "2026-12-13T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lasten kauneimmat joululaulut", "sv": "Lasten kauneimmat joululaulut", "en": "Lasten kauneimmat joululaulut" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut", "en": "http://www.kanneltalo.fi/en/events/event/617CFF5DB7534950C23F310ECA0141AD/Lasten_kauneimmat_joululaulut" }, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kaikenikäisille pienille ja isoille sopivia joululauluja!</p><p>Kanssasi laulamassa ja joulun tunnelmaa tuomassa on muun muassa lapsikuoro Kannelkellot johtajanaan kanttori Sirkku Rintamäki.</p><p>Kannelmäen seurakunnan järjestämässä yhteislaulutilaisuudessa otetaan huomioon erityisesti perheen pienimmät. Samalla kun laulat itsellesi joulutunnelmaa, voit lahjoittaa maailman lasten hyväksi Suomen Lähetysseuran kautta.</p><p><u><a href=\"https://kauneimmatjoululaulut.fi/\">Lue lisää Kauneimmista Joululauluista</u></a>.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69224/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68961", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?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/kulke:755/?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: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:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-08T05:13:57.696930Z", "last_modified_time": "2026-07-08T05:13:57.696946Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_792384.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-08T05:13:57.546065Z", "last_modified_time": "2026-07-08T05:13:57.956462Z", "date_published": null, "start_time": "2026-12-07T15:00:00Z", "end_time": "2026-12-07T17:50:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "sv": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait", "en": "Pamela Tola: Teräsleidit – kuin viimeistä päivää – Kino Kuutamo | Maksuttomat maanantait" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa", "en": "http://www.kanneltalo.fi/en/events/event/5F101135E845D33164D5A91BC9094BFE/Pamela_Tola_Terasleidit_kuin_viimeista_paivaa" }, "description": { "fi": "<p>Pamela Tolan elokuvassa teräsleidit Inkeri (Leena Uotila), Raili (Seela Sella) ja Kerttu (Sanna-Kaisa Palo) seikkailevat kuin viimeistä päivää.</p><p><b>Elokuvaluento klo 17–17.45<br>Elokuva klo 18–19.50</b></p><p>Vastaanotolla ollessaan Inkeri kuulee lääkärin paljastavan nurkan takana hoitajalle, ettei elinaikaa tai toivoa enää ole. Inkerin tytär Maija (Pirjo Lonka) ottaa tehtäväkseen äitinsä saattohoitamisen vaikka väkisin, mutta Inkerillä on muita suunnitelmia. Viimeisenä tekonaan hän aikoo pelastaa Maijan toistamasta itsensä tekemiä virheitä ja heittäytyä sitten iäksi Jäämereen.</p><p>Inkeri pakenee palvelutalosta viimeiselle matkalleen teräsleidien ja mukaan matkaan tarttuneen Matin (Eero Saarinen) kanssa. Ennen Jäämerta Inkeri heittäytyy vielä elämään: kipeisiin muistoihin, suuriin tunteisiin ja metsäreiveihin.</p><p>Pamela Tolan Teräsleidit – kuin viimeistä päivää on vuoden 2020 katsotuimman kotimaisen elokuvan, rakastetun Teräsleidit-komedian itsenäinen jatko-osa.<br> <br>Ikäraja: 7<br>Pituus: 108 min<br>Ohjaus: Pamela Tola<br>Käsikirjoitus: Pamela Tola, Karoliina Lindgren ja Aleksi Bardy<br>Näyttelijät: Muun muassa Leena Uotila, Seela Sella, Sanna-Kaisa Palo, Eero Saarinen, Pirjo Lonka, Jani Volanen, Linnea Skog, Noa Tola ja Heikki Nousiainen<br>Genre: Komedia<br>Ensi-ilta: 25.12.2025</p><p>Syksyn <b>Kino Kuutamoissa</b> nähdään uusia kotimaisia elokuvia. Elokuvahistorian asiantuntija <b>FT Harri Kilpi</b> johdattaa illan elokuvaan klo 17–17.45. Elokuvan ilmaisnäytös alkaa klo 18.</p><p><b>Maksuttomat maanantait</b> ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja.<br>Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua.<br>Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p><i>Kostnadsfria måndagar</i> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p><i>Free Mondays</i> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68961/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:69226", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/", "sv": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/", "en": "https://www.lippu.fi/event/hos-big-band-swingin-christmas-with-hos-big-band-kanneltalo-21755508/" }, "description": null, "price": { "fi": "20€ 15€ 10€", "sv": "20€ 15€ 10€", "en": "20€ 15€ 10€" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385541, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:43.915743Z", "last_modified_time": "2026-07-07T13:14:43.915759Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_793534.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385541/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:43.807846Z", "last_modified_time": "2026-07-07T13:14:44.051818Z", "date_published": null, "start_time": "2026-12-10T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HOS Big Band: Swingin’ Christmas with HOS Big Band", "sv": "HOS Big Band: Swingin’ Christmas with HOS Big Band", "en": "HOS Big Band: Swingin’ Christmas with HOS Big Band" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Perinteikkäästä otteestaan tunnettu HOS Big Band laulusolisteineen esittää joulumusiikkia laajoina big band sovituksina." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band", "en": "http://www.kanneltalo.fi/en/events/event/9F4097E9D3B3CFFA887B15A59AEA6B2E/HOS_Big_Band_Swingin_Christmas_with_HOS_Big_Band" }, "description": { "fi": "<p>Perinteikkäästä otteestaan tunnettu HOS Big Band laulusolisteineen esittää joulumusiikkia laajoina big band sovituksina.</p><p>Illan mittaan kuullaan tuttuja jouluisia klassikoita ja harvinaisempia swing-helmiä. Virittäydy joulun tunnelmaan HOSsin seurassa!</p><p><b>HOS Big Band</b> (Hämäläis-Osakunnan Soittajat) on 20-henkinen yhtye, jonka riveissä soittaa ja laulaa joukko lahjakkaita musiikin aktiiviharrastajia ja opiskelijoita Helsingistä. Kapellimestarinamme toimii <b>Viljami Heikkinen</b>.</p><p>Ohjelmistomme perustan luovat swing-klassikot, joiden rinnalle on tuotu modernimpia lattari- ja funk-rytmejä. Näiden lisäksi taidamme myös perinteisen tanssimusiikin, kuten valssit, tangot ja humpat. HOSsin historia ulottuu aina perustamisvuoteen 1932, mutta nykyiseen big band -muotoonsa bändi on muovautunut 1980-luvulla.</p><p>Kesto noin 90 min, ei väliaikaa<br>Kieli suomi ja englanti</p><p>Nettisivu: https://hamalais-osakunta.fi/toiminta/valiokunnat-ja-kerhot/kerhot/hamalais-osakunnan-soittajat-hos-big-band</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:69226/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:68611", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 2385540, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-07-07T13:14:43.026928Z", "last_modified_time": "2026-07-07T13:14:43.026943Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_791185.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/2385540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-07-07T13:14:42.922435Z", "last_modified_time": "2026-07-07T13:14:43.154592Z", "date_published": null, "start_time": "2026-12-06T13:00:00Z", "end_time": "2026-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kannelmäen Itsenäisyyspäiväjuhla", "sv": "Kannelmäen Itsenäisyyspäiväjuhla", "en": "Kannelmäen Itsenäisyyspäiväjuhla" }, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla", "en": "http://www.kanneltalo.fi/en/events/event/3F099EDDE697ECBBDA9F6F85664F18A1/Kannelmaen_Itsenaisyyspaivajuhla" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäisyyspäivää Sitratorille!</p><p>Vapaa pääsy.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:68611/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }