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
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 ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=12&publisher_ancestor=ahjo%3A00001
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=13&publisher_ancestor=ahjo%3A00001", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=11&publisher_ancestor=ahjo%3A00001" }, "data": [ { "id": "kultus:agmqjhvd2y", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/helsinki:internet/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:17/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?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, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040050", "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/kultus:56/?format=api" } ], "created_time": "2025-09-01T09:32:09.570806Z", "last_modified_time": "2025-09-01T09:33:25.840971Z", "date_published": null, "start_time": "2025-09-03T08:11:00Z", "end_time": "2025-09-03T08: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": "2025-09-01T12:34:00+03:00", "enrolment_end_time": "2025-09-02T11:11:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "test", "sv": "", "en": "" }, "info_url": { "fi": "javascript:alert()", "sv": "", "en": "" }, "location_extra_info": null, "name": { "fi": "test", "sv": "", "en": "" }, "description": { "fi": "<p><a href=\"@javascript:alert()\">hello</a> </p>\n", "sv": "", "en": "" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqjhvd2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66645", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1219164, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T13:16:39.418547Z", "last_modified_time": "2025-07-09T13:16:39.418585Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772366.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1219164/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T13:16:39.357156Z", "last_modified_time": "2025-09-01T09:15:17.642570Z", "date_published": null, "start_time": "2025-11-05T10:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.", "sv": "Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.", "en": "Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Opi_suomea_laulaen_TAYNNA", "sv": "http://www.stoa.fi/sv/evenemang/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Lar_dig_finska_genom_att_sjunga_", "en": "http://www.stoa.fi/en/events/event/5C4B2B1D2A6E2C1D69516C5B83819E3D/Learn_Finnish_by_Singing_" }, "location_extra_info": null, "name": { "fi": "Opi suomea laulaen TÄYNNÄ – Laulupajat maahanmuuttaneille", "sv": "Lär dig finska genom att sjunga – Sångverkstäder för invandrare", "en": "Learn Finnish by Singing – Song workshops for immigrants" }, "description": { "fi": "<p>Oletko maahanmuuttanut, joka haluaa opiskella suomea? Tule kokeilemaan hauskaa tapaa, joka huomioi musiikin monet mahdollisuudet vahvistaa suomen kielen oppimista.</p><p>Tilaisuus on aikuisille. Pääset laulamaan ja liikkumaan musiikin mukana yhdessä muiden kanssa ja samalla opit suomen kielen ääntämistä ja uusia sanoja. Tule mukaan laulamaan, vaikka osaisit vasta vähän suomea!</p><p>Kielenopiskelu laulaen on kotoutumiskoulutuksissa vuosien aikana kehitetty uusi toimintamalli. MuM Johanna Lehtinen-Schnabel on kehittänyt toimintamallin ja tutkii sitä edelleen. Toiminta huomioi vahvasti taiteen ja musiikin voimauttavan vaikutuksen tukien oppijan kokonaisvaltaista ilmaisua.</p><p>Kesto n. 80 min <br>Maksuton, mutta mukaan ryhmään on ilmoittauduttava etukäteen. <br>Kysy lisää ja ilmoittaudu: sanna.nuutinen@hel.fi</p><p>Syksyn laulupajakerrat: <br>Ke 10.9. klo 10 ja 11.45<br>Ke 5.11. klo 12.30 ja 14.15<br>Ke 10.12. Klo 10 ja 11.45</p>", "sv": "<p>Är du invandrare och vill lära dig finska? Kom och testa ett roligt sätt som beaktar musikens många möjligheter att stärka inlärningen av finska.</p><p>Evenemanget är för vuxna. Du får sjunga och röra på dig till musik tillsammans med andra. Samtidigt lär du dig finskt uttal och nya ord. Kom med och sjung även om du bara kan lite finska!</p><p>Språkinlärning genom sång är ett nytt koncept som utvecklats inom integrationsutbildningen genom åren. MuM Johanna Lehtinen-Schnabel har utvecklat konceptet och studerar det fortfarande. Verksamheten beaktar effektivt konstens och musikens kraftgivande inverkan och stöder inlärarens övergripande uttrycksförmåga.</p><p>Längd ca 80 min.</p><p>Du måste anmäla dig till gruppen på förhand. <br>Fråga mer och anmäl dig: sanna.nuutinen@hel.fi</p><p>Höstens sångverkstäder:<br>On 10.9. kl. 10 och 11.45<br>On 5.11. kl. 12.30 och 14.15<br>On 10.12. kl. 10 och 11.45</p>", "en": "<p>Are you an immigrant who wants to study Finnish? Come and try a fun way of learning that takes into account the many opportunities offered by music to strengthen your learning.</p><p>The event is for adults. You get to sing and move along with music together with others, while learning Finnish pronunciation and new words. Come and sing with us, even if you know just a little Finnish!</p><p>Language learning with singing is a new operating model developed in integration training over the years. MMus Johanna Lehtinen-Schnabel has developed an operating model and is still studying it. The activities pay strong attention to the empowering effect of art and music, supporting the learner’s holistic expression.</p><p>Duration: approx. 80 min</p><p>You must register in advance to join the group. <br>Ask for more information and register: sanna.nuutinen@hel.fi</p><p>Autumn song workshops:<br>Wed 10.9. at 10 and 11.45<br>Wed 5.11. at 12.30 and 14.15<br>Wed 10.12. at 10 ja 11.45</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66645/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66865", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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: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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490452, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T14:13:54.492750Z", "last_modified_time": "2025-08-18T14:13:54.492768Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776244.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-18T14:13:54.380304Z", "last_modified_time": "2025-09-01T09:15:03.070577Z", "date_published": null, "start_time": "2025-09-10T14:00:00Z", "end_time": "2025-09-10T16: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, "provider_contact_info": null, "short_description": { "fi": "Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!", "sv": "Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!", "en": "A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/8DE8DF9CC770BBC7FB2134F544991D39/Keskusteluja_kaupunkielamasta_Kannelmaessa", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/8DE8DF9CC770BBC7FB2134F544991D39/Diskussioner_om_stadslivet_i_Gamlas", "en": "http://www.kanneltalo.fi/en/events/event/8DE8DF9CC770BBC7FB2134F544991D39/Discussions_on_urban_life_in_Kannelmaki" }, "location_extra_info": null, "name": { "fi": "Keskusteluja kaupunkielämästä Kannelmäessä", "sv": "Diskussioner om stadslivet i Gamlas", "en": "Discussions on urban life in Kannelmäki" }, "description": { "fi": "<p>Keskustelutilaisuus Kannelmäen kaupunkielämästä. Keskustelijoiksi toivotaan kaikenikäisiä ja -taustaisia alueen asukkaita. Tervetuloa mukaan keskustelemaan!</p><p>Minkälaista kaupunkielämää Kannelmäessä eletään? Mitä kaupunkielämä sinulle tarkoittaa? Mitä ajattelet hyvään kaupunkielämään kuuluvan? Minkälaisia kykyjä tarvitsemme, jotta yhteiselo kaupunkitilassa sujuisi paremmin?</p><p>Tervetuloa keskustelemaan ja oppimaan uutta Kannelmäen kaupunkielämästä yhdessä muiden asukkaiden kanssa! Tilaisuus on tarkoitettu Kannelmäessä ja lähialueilla asuville.</p><p>Tilaisuuden tavoitteena ei ole löytää ratkaisuja, vaan lisätä ymmärrystä kaupunkitilasta ja sen käyttäjistä sekä Kannelmäen kaupunkielämästä.</p><p>Keskustelu järjestetään Erätauko-menetelmällä. Erätauko-keskustelussa pyrimme syventämään ymmärrystä itsestä, muista ja maailmasta. Puhumme omasta kokemuksesta ja kuuntelemme toista ihmistä. Riittää, että tulet keskusteluun mukaan uteliaalla ja avoimella mielellä. Sinun ei tarvitse olla aiheen asiantuntija eikä puhua suomea äidinkielenä. Keskustelut käydään kuitenkin suomeksi.</p><p>Tilaisuus on ilmainen, mutta vaatii ennakkoilmoittautumisen. Ilmoittaudu tilaisuuteen lomakkeella: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Tilaisuuden järjestää kaupunkimuotoilija Moona Tikka. Tilaisuus toteutetaan Helsingin kaupungin asukasosallisuuden pienavustuksella.</p><p>Verkkosivut: https://www.moonatikka.com/kaupunkielmst<br>Fb-tapahtuma: https://fb.me/e/8YIOEBzYw</p><p>Kaikille avoin ja maksuton tapahtuma. Vaatii ennakkoilmoittautumisen.</p>", "sv": "<p>Ett diskussionsmöte om stadslivet i Gamlas. Områdets invånare i alla åldrar och med olika bakgrund är välkomna att delta i diskussionen. Välkommen att delta i diskussionen!</p><p>Hurdant stadsliv lever man i Gamlas? Vad betyder stadslivet för dig? Vad tycker du hör till ett bra stadsliv? Vilka färdigheter behöver vi för att kunna samexistera bättre i stadsrummet?</p><p>Välkommen att diskutera och lära sig nytt om livet i Gamlas tillsammans med andra invånare! Evenemanget är för dem som bor i Gamlas med omnejd.</p><p>Syftet med evenemanget är inte att hitta lösningar, utan att öka förståelsen för stadsrummet och dess användare samt för stadslivet i Gamlas. Diskussionen ordnas med metoden Dialogpaus.</p><p>I Dialogpausdiskussionen strävar vi efter att fördjupa vår förståelse för oss själva, andra och världen. Vi talar utifrån våra egna erfarenheter och lyssnar på andra. Det räcker att du deltar i diskussionen med ett öppet och nyfiket sinne. Du behöver inte vara expert på ämnet eller ha finska som modersmål. <br>Diskussionerna kommer dock att föras på finska.</p><p>Mötet är kostnadsfritt men kräver förhandsanmälan. Anmäl dig till mötet med formuläret: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>Mötet ordnas av stadsdesignern Moona Tikka. Mötet genomförs med hjälp av ett mindre understöd för Helsingfors stads invånardelaktighet.</p><p>Webbplats (på finska): https://www.moonatikka.com/kaupunkielmst<br>Fb-evenemang: https://fb.me/e/8YIOEBzYw<br>Kontaktuppgifter: moona.tikka@gmail.com och 050 358 8786</p><p>Mötet är öppet för alla och kostnadsfritt. Kräver förhandsanmälan.</p>", "en": "<p>A discussion event focused on urban life in Kannelmäki. People of all ages and backgrounds are welcome to participate in the discussion. Come and join us!</p><p>What kind of urban life do the residents of Kannelmäki lead? What does urban life mean to you? What do you think good urban life entails? What kinds of skills do we need to better co-exist with each other in the urban space?</p><p>Come and discuss the topic and learn new things about urban life in Kannelmäki together with other residents! The event is intended for people living in Kannelmäki and the surrounding areas.</p><p>The aim of the event is not to find solutions but to increase understanding of the urban space and its users, as well as urban life in Kannelmäki. The discussion will be held in Finnish, using the Timeout method.</p><p>In a Timeout discussion, we seek to deepen our understanding of ourselves, others and the world. We speak from our own experience and listen to the other person. All you need to do is join the discussion with an open and curious mind. You do not need to be an expert in the topic or speak Finnish as your first language. However, the discussions will take place in Finnish.</p><p>The event is free of charge but requires advance registration. Sign up for the event using the following form: https://forms.gle/NiGijjEjQj6QS7gs6</p><p>The event is organised by urban designer Moona Tikka. The event will be implemented with a small resident participation grant from the City of Helsinki.</p><p>Website: https://www.moonatikka.com/kaupunkielmst<br>FB event: https://fb.me/e/8YIOEBzYw<br>Contact details: moona.tikka@gmail.com and +358 50 358 8786</p><p>The event is open to all and free of charge. Advance registration required.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66865/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66365", "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:33/?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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://ilmonet.fi/course/H254166", "sv": "https://ilmonet.fi/course/H254166", "en": "https://ilmonet.fi/course/H254166" }, "price": { "fi": "16 €", "sv": "16 €", "en": "16 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490570, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-01T09:15:02.205547Z", "last_modified_time": "2025-09-01T09:15:02.205570Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773634.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490570/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-01T09:15:02.002591Z", "last_modified_time": "2025-09-01T09:15:02.465625Z", "date_published": null, "start_time": "2025-09-09T14:30:00Z", "end_time": "2025-09-09T17: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, "provider_contact_info": null, "short_description": { "fi": "Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.", "sv": "På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.", "en": "In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A2B7F681E375E640E3CABB931DFBEBD6/Monilajiset_kaupunkilaiset_-_kaupunkiluontoretki_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A2B7F681E375E640E3CABB931DFBEBD6/Stadsbor_av_manga_arter_stadsnaturutflykt_", "en": "http://www.kanneltalo.fi/en/events/event/A2B7F681E375E640E3CABB931DFBEBD6/Multispecies_City_Dwellers_Urban_Nature_Walk_" }, "location_extra_info": null, "name": { "fi": "Monilajiset kaupunkilaiset - kaupunkiluontoretki", "sv": "Stadsbor av många arter – stadsnaturutflykt", "en": "Multispecies City Dwellers – Urban Nature Walk" }, "description": { "fi": "<p>Kävelyretkellä etsitään viitteitä toisenlajisista eläimistä ja pohditaan monilajista kanssakaupunkilaisuutta.</p><p>Retken aikana kävellään Kannelmäen, erityisesti Mätäjoen ympäristössä ja keskitytään havainnoimaan kaupunkiluontoa uusilla tavoilla. Kierroksella kävellään noin 4 km mittainen matka, jonka aikana tehdään useita pysähdyksiä ja kuunnellaan, katsotaan, aistitaan ja ajatellaan Kannelmäen toisenlajisia eläimiä. Samalla pohdimme, mihin olemme tottuneet kiinnittämään huomiota kaupunkiympäristössä ja miksi.</p><p>Oppaina toimivat esitystaiteilija Maija Linturi ja teatteripedagogi Camilla Anderzén.</p><p>Ilmoittautuminen ti 12.08.2025 klo 10:00 alkaen: https://ilmonet.fi/course/H254166</p><p>Hinta: 16 €<br>Pukeudu retkelle säänmukaisesti. Halutessasi ota mukaan muistiinpanovälineet.</p><p>Opetuskieli: suomi</p><p>Lähtö retkelle Kanneltalon Sitratorin Unelma-patsaan luota.</p><p>Yhteistyössä Kanneltalo Työväenopiston kanssa.</p>", "sv": "<p>På finska. Under rundvandringen söker vi efter tecken på djur av andra arter och dryftar vad det innebär att vara medstadsbo med andra arter.</p><p>Under utflykten går vi i Gamlas och i synnerhet i Rutiåns omgivning och fokuserar på att upptäcka stadsnaturen på nya sätt. Vi vandrar cirka 4 kilometer under rundvandringen och tar flera pauser och lyssnar, tittar på, känner till och tänker på djur av andra arter i Gamlas. Samtidigt funderar vi på vad vi är vana att fästa uppmärksamhet vid i stadsmiljön och varför.<br>Våra guider är performancekonstnär Maija Linturi och teaterpedagog Camilla Anderzén.</p><p>Anmälan ti 12.8.2025 från och med kl. 10.00.<br>Anmäl dig till utflykten: https://ilmonet.fi/course/H254166</p><p>Klä dig efter vädret inför utflykten. Ta med anteckningsmaterial om du vill.</p><p>Undervisningsspråk: finska</p><p>Vi startar till utflykten vid Dröm-statyn på Cittertorget utanför Gamlasgården.</p>", "en": "<p>In Finnish. During this walk, participants will look for signs of nonhuman animals and reflect on the urban coexistence of multiple species.</p><p>The route takes the group through the Kannelmäki area, especially around Mätäjoki, and focuses on observing urban nature in new ways. The walk covers approximately four kilometres, with several stops along the way to listen, look, sense and think about the nonhuman animals of Kannelmäki. At the same time, we will consider what we are used to noticing in the urban environment and why.<br>The participants at the walk will be guided by performance artist Maija Linturi and theatre pedagogue Camilla Anderzén.</p><p>Registration from 10:00, Tue 12 August 2025, onwards.</p><p>Sign up for the walk: https://ilmonet.fi/course/H254166</p><p>Please wear weather-appropriate clothing. Feel free to bring a notepad and pen with you.</p><p>Language of instruction: Finnish<br>The departure point is the Unelma statue at Kanneltalo's Sitratori.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66365/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66710", "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/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10", "sv": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10", "en": "https://www.lippu.fi/artist/klubb-ankdamm/klubb-ankdamm-magnum-bonum-3921843/#calendar-start=2025-10" }, "price": { "fi": "22 € / 17 €", "sv": "22 € / 17 €", "en": "22 € / 17 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1218497, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-09T11:12:45.901540Z", "last_modified_time": "2025-07-09T11:12:45.901553Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774927.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1218497/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-09T11:12:45.803856Z", "last_modified_time": "2025-09-01T08:14:05.032124Z", "date_published": null, "start_time": "2025-10-24T15: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, "provider_contact_info": null, "short_description": { "fi": "Useista 80-luvun hiteistä tunnettu ruotsalainen Magnum Bonum esiintyy Vuotalossa!", "sv": "Svenska Magnum Bonum, kända för flera 80-talshits, uppträder i Nordhuset!", "en": "Swedish Magnum Bonum, known for several 80s hits, will perform at Vuotalo!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_", "en": "http://www.vuotalo.fi/en/events/event/6202E1883AE509F3C97F16EA0E12199A/Magnum_Bonum_SVE_" }, "location_extra_info": null, "name": { "fi": "Magnum Bonum (SVE) – Klubb Ankdamm", "sv": "Magnum Bonum (SVE) – Klubb Ankdamm", "en": "Magnum Bonum (SVE) – Klubb Ankdamm" }, "description": { "fi": "<p>Useista 80-luvun hiteistä tunnettu ruotsalainen Magnum Bonum esiintyy Vuotalossa!</p><p>Kappaleet kuten Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer ja Skateboard soivat ahkerasti radiossa 1980-luvulla.</p><p>Magnum Bonum perustettiin Huddingessa jo 1970-luvun puolivälissä. Yhtye on myynyt yli 500 000 levyä ja kiertänyt ahkerasti Ruotsissa ja Suomessa vuosina, etenkin huippuvuosinaan 1978–1985. Bändi piti muutaman vuoden tauon, kunnes alkoi soittamaan jälleen 1990-luvun alussa.</p><p>Yhtyeen jäsenet ovat vuosien aikana vaihdelleet ja nykinen timanttinen kokoonpano on tässä:<br>• Mats Hedström – kitara ja laulu, joka on jatkanut musiikin parissa ja elättää itsensä lauluntekijänä ja tuottajana, mm. yhdellä Billboard-ykköshittillä Yhdysvalloissa.<br>• Per Schiller – kitara ja laulu, työskentelee rakennusalalla.<br>• Mark Tysper – basso, yrittäjä.<br>• Dan Mazreliez – rummut, työskentelee ääniteknikkona elokuva- ja tv-alalla, mm. Millennium-trilogian parissa.</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p>", "sv": "<p>Svenska Magnum Bonum, kända för flera 80-talshits, uppträder i Nordhuset!</p><p>Låtar som Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer och Skateboard spelades flitigt i radion under 1980-talet.</p><p>Magnum Bonum bildades i Huddinge redan i mitten av 1970-talet. Bandet har sålt över 500 000 skivor och turnerat flitigt i Sverige och Finland, särskilt under sina glansår 1978–1985. Bandet tog en paus på några år, men började spela igen i början av 1990-talet.</p><p>Bandets medlemmar har varierat genom åren och den nuvarande lysande uppsättningen är denna:<br>Mats Hedström – gitarr och sång, som har fortsatt med musiken och försörjt sig som låtskrivare och producent med bland annat en billboard 1 i USA <br>Per Schiller – gitarr och sång som jobbar i byggbranchen <br>Mark Tysper – bas , entreprenör<br>Dan Mazreliez – trummor, jobbar som ljudtekniker inom film och tv bland annat gjort Millenium trilogin.<br> <br>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p>", "en": "<p>Swedish Magnum Bonum, known for several 80s hits, will perform at Vuotalo!</p><p>Songs like Hög Hatt, Marie, Loverboy, Digital Panik, Radio Love, Gigolo, Vi vill ha mer and Skateboard were frequently played on the radio during the 1980s.</p><p>Magnum Bonum was founded in Huddinge already in the mid-1970s. The band has sold over 500,000 records and toured extensively in Sweden and Finland, especially during its peak years 1978–1985. After a break of a few years, the band started performing again in the early 1990s.</p><p>The band’s members have changed over the years, and the current brilliant lineup is:<br>Mats Hedström – Guitar, Vocals<br>Per Schiller – Guitar, Vocals<br>Mark Tysper – Bass, Vocals<br>Dan Mazreliez – Percussions, Vocals</p><p>Club night, A-rights, refreshments provided by Café Pokkari, the doors will open at 17.30.<br> <br>Duration: apx. 120 min. with intermission.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66710/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agmqhoomci", "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/kultus:22/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:7/?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, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "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/kultus:58/?format=api" } ], "created_time": "2025-09-01T05:22:12.161570Z", "last_modified_time": "2025-09-01T05:45:12.939269Z", "date_published": null, "start_time": "2025-09-02T06:00:00Z", "end_time": "2025-09-02T07: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": "2025-09-01T08:41:00+03:00", "enrolment_end_time": "2025-09-02T09:00:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kokeilu", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "location_extra_info": null, "name": { "fi": "Kokeilu", "sv": "", "en": "" }, "description": { "fi": "<p>Kokeilu</p>\n", "sv": "", "en": "" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmqhoomci/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66956", "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:42/?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:596/?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: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490568, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T13:13:55.941804Z", "last_modified_time": "2025-08-29T13:13:55.941821Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777068.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490568/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T13:13:55.802822Z", "last_modified_time": "2025-08-29T15:13:50.851617Z", "date_published": null, "start_time": "2025-08-30T08:00:00Z", "end_time": "2025-08-30T12: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, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.", "en": "Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva", "sv": "http://www.malmitalo.fi/sv/evenemang/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmin_toripaiva", "en": "http://www.malmitalo.fi/en/events/event/CF7B63DC35DCD185ACA69C7EBDCECF00/Yla-Malmi_Market_Day" }, "location_extra_info": null, "name": { "fi": "Ylä-Malmin toripäivä", "sv": "Ylä-Malmin toripäivä", "en": "Ylä-Malmi Market Day" }, "description": { "fi": "<p>Tervetuloa mukaan kaikille avoimeen toripäivään, jossa pääset hyppäämään markkinatunnelmiin paikallisten toimijoiden ja aktiviteettien parissa.</p><p>Paikan päällä on yli 20 torimyyjää ja esittelijää, joiden antimiin pääset tutustumaan markkinatyyliin. Päivään mahtuu myös muuta pientä ilahduttavaa, somistetaan Malmia kauniin kukkakirjaimin ja mahdollisesti paikan päällä on myös sirkusta. Tervetuloa mukaan! <br> <br>Ylä-Malmin toripäivä on osa OmaStadi-hanketta \"Ylä-Malmin tori ja Ala-Malmin puisto viihtyisäksi!\". Ylä-Malmin torin elävöittäminen on lähtenyt käyntiin asukkaiden ja alueen toimijoiden toiveita ja ehdotuksia kartoittamalla.</p>", "en": "<p>Welcome to an open market day for everyone, where you can enjoy the lively atmosphere with local vendors and activities!</p><p>There will be more than 20 market sellers and exhibitors on site offering their specialties in true market style. The day will also feature other delightful surprises: we will once again decorate the square with beautiful floral letters, and there may even be circus performances! Everyone is welcome!<br> <br>Ylä-Malmi Market Day is part of the OmaStadi project “Making the square of Ylä-Malmi and Ala-Malmi Park more enjoyable!”. The revitalization of Ylä-Malmi Square began by gathering wishes and suggestions from residents and local actors.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66956/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66955", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?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:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?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/artist/savoy-teatteri/itsenaeisyyspaeivaen-rauhanmatinea-aeiti-maa-isaenmaa-3951690/" }, "price": { "fi": "10-30 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490567, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T12:14:36.987794Z", "last_modified_time": "2025-08-29T12:14:36.987812Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777063.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490567/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T12:14:36.877671Z", "last_modified_time": "2025-08-29T14:14:22.473844Z", "date_published": null, "start_time": "2025-12-06T11: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, "provider_contact_info": null, "short_description": null, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/25390F6944DD0778E8FE171583D04C15/Itsenaisyyspaivan_rauhanmatinea_-_Aiti_maa_-_isanmaa" }, "location_extra_info": null, "name": { "fi": "Itsenäisyyspäivän rauhanmatinea - Äiti maa - isänmaa" }, "description": { "fi": "<p>Suomen Rauhanliiton ja Sadankomitean perinteisessä itsenäisyyspäivä matineassa, 6.12 klo 13-15.30 on mukana kertomassa suhteestaan äitimaa – isänmaahan sekä rauhaan useita yhteiskunnan vaikuttajia tieteen, taiteen ja yhteiskunnan muilta aloilta sekä musiikkia ja tanssia kaikkien ikäluokkien makuun.</p><p>Esiintyjinä mm. Kjell Westö, Meri Valkama, CMI - Martti Ahtisaari Peace Foundation, Pekka Haavisto sekä Paleface, Harri Saksala, Tarja Rasmussen tanssiopisto ja paljon lisää tulossa. Tilaisuuden juontaa Jukka Puotila.</p><p>Tilaisuus on hyvä aloitus Itsenäisyyspäivän viettoon.</p><p>Ikäraja: S</p><p>Kesto n. 2 h 30 min, sisältää väliajan</p>" }, "provider": { "fi": "Suomen Rauhanliitto - Finlands Fredsförbund ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66955/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66779", "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/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/", "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-fran-samborombon-till-den-nordiska-kusten-vuotalo-20434114/" }, "price": { "fi": "10€ / 8€", "sv": "10€ / 8€", "en": "10€ / 8€" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1271735, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-16T12:14:26.283312Z", "last_modified_time": "2025-07-16T12:14:26.283328Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775285.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1271735/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-16T12:14:26.158835Z", "last_modified_time": "2025-08-29T12:14:31.778457Z", "date_published": null, "start_time": "2025-11-04T12: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, "provider_contact_info": null, "short_description": { "fi": "Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.", "sv": "Svenska veckans tisdagsmatiné", "en": "From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar_", "en": "http://www.vuotalo.fi/en/events/event/CC8C6D8ACF460D1AA1952F8FD8A002F4/Fran_Samborombon_till_den_nordiska_kusten_-_En_musikalisk_resa_i_Evert_Taubes_fotspar" }, "location_extra_info": null, "name": { "fi": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius", "sv": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius", "en": "Från Samborombon till den nordiska kusten - En musikalisk resa i Evert Taubes fotspår – Pentti Hildén & Mikko Helenius" }, "description": { "fi": "<p>Samborombónista Pohjolan rannikoille - Musiikkimatka Evert Tauben jalanjäljissä. Ruotsalaisuuden viikon eli Svenska veckanin tiistaimatinea ruotsiksi.</p><p>Ohjelmassa on runsas ja monipuolinen kattaus Evert Tauben laululyriikkaa ja monia hänen rakastetuimmista teoksistaan sekä harvemmin kuultuja ”unohdettuja” helmiä.</p><p>Saaristolaisvalssien ja luonnonkuvausten ohella luvassa on myös lauluja, joiden inspiraation lähteenä on Evertin Argentiinassa viettämä aika (1910–1915).</p><p>Argentiinalainen kansanmusiikki ja tango ovat olleet erittäin tärkeitä molemmille artisteille: Pentti on sekä opiskellut että tehnyt yhteistyötä kuuluisien argentiinalaisten kitaristien, kuten Eduardo ja Juan Falún, Jorge Cardoson ja Jorge Morelin kanssa. Bandoneónvirtuoosi Mikko on ollut kiertueella tangolaulaja Martin Alvaradon säestäjänä. Tämän lisäksi Mikko on säestänyt muun muassa Sven Bertil Taubea.</p><p>Pentti Hildén: laulu ja kitara<br>Mikko Helenius: bandoneón, haitari, piano ja laulu<br>Kesto n. 60 min. <br>Kieli: ruotsi.</p>", "sv": "<p>Svenska veckans tisdagsmatiné</p><p>Skärgårdsvalserna och naturskildringarna har sin givna plats men programmet har lika mycket sånger inspirerade av Everts vistelse (1910-1915) i Argentina.</p><p>Argentinsk folkmusik och tango har varit väldigt viktiga för båda artisterna: Pentti har både studerat för och samarbetat med Argentinska gitarrens stora namn såsom Eduardo oah Juan Falú, Jorge Cardoso och Jorge Morel. Bandoneonvirtuosen Mikko har turnerat flirtigt som ackompanjatör för tangosångaren Martin Alvarado. Utöver Tango kan det nämnas att Mikko ackompanjerat bl.a. Sven Bertil Taube.</p><p>Pentti Hildén: sång och gitarr<br>Mikko Helenius bandoneon, dragspel, piano och sång. <br>Längd ca 60 min. <br>Språk: svenska.</p>", "en": "<p>From Samborombón to the Nordic coast - A musical journey in the footsteps of Evert Taube. Swedish Week (Svenska veckan) Tuesday matinée in swedish.</p><p>The programme offers a rich and varied selection of Evert Taube’s songs and includes many of his most beloved works alongside more rarely heard, \"forgotten\" gems.</p><p>The waltzes about the archipelago and descriptions of nature have their rightful place, but the programme also includes songs inspired by Evert's stay in Argentina (1910–1915).</p><p>Argentine folk music and tango have been very important to both artists: Pentti has both studied under and collaborated with great names within Argentine guitar, such as Eduardo and Juan Falú, Jorge Cardoso and Jorge Morel. Bandoneon virtuoso Mikko has toured extensively accompanying tango singer Martin Alvarado. In addition to Tango, Mikko has accompanied Sven Bertil Taube, among others.</p><p>Pentti Hildén: vocals and guitar<br>Mikko Helenius: bandoneon, accordion, piano and vocals<br>Duration apx 60 min.<br>Language: swedish.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66779/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66846", "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: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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490495, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T15:14:00.875409Z", "last_modified_time": "2025-08-21T15:14:00.875432Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776152.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490495/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T15:14:00.716977Z", "last_modified_time": "2025-08-29T12:14:16.814004Z", "date_published": null, "start_time": "2025-09-04T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.", "sv": "Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.", "en": "The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_-dokumenttielokuva_12_ja_avoin_keskustelu", "sv": "http://www.stoa.fi/sv/evenemang/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Dokumentaren_Can_t_Look_Away_12_och_oppen_diskussion", "en": "http://www.stoa.fi/en/events/event/64DE1CAA27A6A786F0BD8331AC57ACEE/Can_t_Look_Away_documentary_film_12_and_open_discussion" }, "location_extra_info": null, "name": { "fi": "Can't Look Away -dokumenttielokuva (12) ja avoin keskustelu", "sv": "Dokumentären Can't Look Away (12) och öppen diskussion", "en": "Can't Look Away documentary film (12+) and open discussion" }, "description": { "fi": "<p>Tuore dokumenttielokuva Can't Look Away (USA, 2025) tarkastelee sosiaalisen median synkempää puolta sekä sen vaikutuksia nuoriin.</p><p>Elokuvassa seurataan oikeusprosessia, jossa ryhmä juristeja pyrkii saattamaan teknologiayhtiöt vastuuseen tuotteidensa ja palveluidensa lapsille ja nuorille aiheuttamista vahingoista.</p><p>Dokumenttielokuva on englanninkielinen ja se näytetään englanninkielisen tekstityksen kanssa.</p><p>Elokuvan kesto on 75 min.<br>Elokuvan ikäsuositus: 12<br>Elokuvan kieli ja tekstitys: englanti</p><p>Näytöksen jälkeen Musiikkisalissa käydään avoin keskustelu aiheen ympärillä. Keskustelun fasilitoi Smartphone Free Childhood Finland -järjestö.</p><p>Paneelissa Elina Kiiski-Kataja (Digirauha ry) ja Anni Pätilä sekä Katariina Leivo (Suojellaan Lapsia ry.)<br>Keskustelutilaisuuden kieli: suomi ja englanti</p><p>Vapaa pääsy</p>", "sv": "<p>Den nya dokumentären Can't Look Away (USA, 2025) utforskar den mörkare sidan av sociala medier och dess inverkan på unga människor.</p><p>Filmen följer den juridiska processen där en grupp advokater försöker hålla teknologibolag ansvariga för den skada som deras produkter och tjänster orsakar barn och ungdomar.</p><p>Dokumentärens språk: engelska, engelsk textning<br>Filmens längd: 75 min.</p><p>Efter visningen ordnas en öppen diskussion kring temat. Diskussionen faciliteras av organisationen Smartphone Free Childhood Finland. <br>Diskussionstillfällets språk: finska och engelska</p><p>Fritt inträde.</p>", "en": "<p>The recent documentary Can't Look Away (USA, 2025) explores the darker side of social media and its impacts on young people.</p><p>The film follows a legal process where a group of lawyers try to hold tech companies accountable for the harm their products and services cause to children and young people.</p><p>Documentary language: English with captions<br>Duration of the film: 75 min.</p><p>After the screening, the theme will be discussed further in an open conversation. The debate is facilitated by the organisation Smartphone Free Childhood Finland.</p><p>Conversation language: Finnish and English</p><p>Free entry.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66846/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66682", "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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1162433, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T08:13:43.171942Z", "last_modified_time": "2025-07-02T08:13:43.171958Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772202.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1162433/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-02T08:13:43.042214Z", "last_modified_time": "2025-08-29T11:17:00.201089Z", "date_published": null, "start_time": "2025-09-13", "end_time": "2025-10-04", "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, "provider_contact_info": null, "short_description": { "fi": "Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.", "sv": "Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.", "en": "An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/BF675A976F98603E8E6E42CA89953EC4/Live_Love_Lahio_Malmi_Vice_20_vuotta_juhlanayttely", "sv": "http://www.malmitalo.fi/sv/evenemang/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_LAHIO_MALMI_VICE_20_AR", "en": "http://www.malmitalo.fi/en/events/event/BF675A976F98603E8E6E42CA89953EC4/LIVE_LOVE_SUBURBS_MALMI_VICE_20_YEARS" }, "location_extra_info": null, "name": { "fi": "Live Love Lähiö – Malmi Vice 20 vuotta juhlanäyttely", "sv": "LIVE LOVE LÄHIÖ – MALMI VICE 20 ÅR", "en": "LIVE LOVE SUBURBS – MALMI VICE 20 YEARS" }, "description": { "fi": "<p>Omaperäinen lähiökulttuurin helmi Malmi Vice juhlistaa 20-vuotista eloaan värikkäällä näyttelyllä Malmitalon galleriassa.</p><p>Taiteilija <b>Valari Tynkkysen </b> luoma ironinen ja oivaltava Malmi Vice sai alkunsa vuosien 2004–2005 taitteessa. Noin 20 vuotta myöhemmin tämä suomenlaajuiseksi levinnyt paikallinen ilmiö on edelleen voimissaan!</p><p>Malmitalon galleria ja aula täyttyy syyskuussa eri tekniikoin valmistetuista töistä, jotka ovat läpileikkauksia Malmi Vice logoista, printeistä ja estetiikasta 20 vuoden ajalta. Jos luulet, että ruska on syksyn värikkäin tapahtuma, olet väärässä.</p><p>Näyttelyn lisäksi Miami Vice näkyy Malmitalossa järjestettävässä Malmi Mayhemi-ilmaistapahtumassa 13.9. klo 13–19, jossa tarjoillaan lähiökulttuurin, urbaanin taiteen ja katumuodin parhaita paloja.</p>", "sv": "<p>Den unika internet- och memekulturens pärla Malmi Vice firar sitt 20-åriga liv med en färgstark utställning i galleriet i Malms kulturhus.</p><p>Den ironiska och insiktsfulla Malmi Vice, som skapades av konstnären Valari Tynkkynen, fick sin början i årsskiftet 2004–2005. Ungefär 20 år senare är detta lokala fenomen som har spridit sig över hela Finland fortfarande i full gång!</p><p>I september fylls galleriet och hallentrén i Malms kulturhus med arbeten som skapats med olika tekniker och som genomskärs av Malmi Vices logotyper, print och estetik under 20 år. Om du tror att ruskan är höstens mest färgstarka händelse, har du fel.</p><p>Förutom i utställningen visas Malmi Vice på gratisevenemanget Malmi Mayhem i Malms kulturhus den 13 september kl. 13–19, som serverar det bästa av förortskultur, urban konst och gatumode.</p><p>Fritt inträde</p>", "en": "<p>An original gem of internet and meme culture, Malmi Vice celebrates its 20th anniversary with a colourful exhibition at Malmitalo's gallery.</p><p>The ironic and insightful Malmi Vice, created by artist Valari Tynkkynen, was born in 2004–2005. Nearly 20 years on, this local phenomenon, which has now spread across Finland, is still going strong!</p><p>In September, Malmitalo's gallery and lobby will be filled with artworks made with various techniques, offering a cross-section of Malmi Vice logos, prints and aesthetics from across two decades. If you think autumn leaves are the most colourful thing this season, think again.</p><p>In addition to the exhibition, Malmi Vice will also take over the free Malmi Mayhemi event at Malmitalo on 13 September from 13:00 to 19:00, featuring the best of suburban culture, urban art and street fashion.</p><p>Free entry</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66682/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66947", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490566, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T10:15:41.458744Z", "last_modified_time": "2025-08-29T10:15:41.458760Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776500.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490566/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T10:15:41.354498Z", "last_modified_time": "2025-08-29T10:15:41.587004Z", "date_published": null, "start_time": "2025-09-19T15: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, "provider_contact_info": null, "short_description": { "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_", "en": "http://www.malmitalo.fi/en/events/event/8E05F904483F1E8104C7E893F9F72A77/The_Last_Viking_16_" }, "location_extra_info": null, "name": { "fi": "The Last Viking (16) – Kino Helios", "sv": "The Last Viking (16) – Kino Helios", "en": "The Last Viking (16) – Kino Helios" }, "description": { "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66947/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66946", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-the-last-viking-3964074/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T10:15:39.665080Z", "last_modified_time": "2025-08-29T10:15:39.665097Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776496.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T10:15:39.524728Z", "last_modified_time": "2025-08-29T10:15:39.826826Z", "date_published": null, "start_time": "2025-09-13T15: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, "provider_contact_info": null, "short_description": { "fi": "Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_", "en": "http://www.malmitalo.fi/en/events/event/C35842F9C71C56A967E18278CEDC26AC/The_Last_Viking_16_" }, "location_extra_info": null, "name": { "fi": "The Last Viking (16) – Kino Helios", "sv": "The Last Viking (16) – Kino Helios", "en": "The Last Viking (16) – Kino Helios" }, "description": { "fi": "<p>Tulevaisuus näyttää valoisalta. Anker vapautuu 15 vuoden vankilatuomion jälkeen ja suunnittelee matkaa paratiisiin viettääkseen loputonta lomaa.</p><p>Ennen sitä hänen on kuitenkin saatava käsiinsä ryöstösaalis, jonka vuoksi hän joutui vankilaan – rahat, jotka hänen kaksoisveljensä Manfred on piilottanut. Valitettavasti Manfred on vetäytynyt traumaattisten kokemusten vuoksi uuteen alter egoonsa, Beatlesien keulahahmoon John Lennoniin. Ja tämä \"John\" ei tiedä mitään kadonneista rahoista.</p><p>Ankerin vanha rikoskumppani Nice Flemming sen sijaan muistaa rahat hyvin ja vaatii nyt omaa osuuttaan. Veljekset palaavat kotiseudulleen etsimään rahoja, mutta löytävät kätköistä paljon enemmän kuin osasivat odottaa…</p><p>Ikäraja: 16<br>Kesto: 116 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66946/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kultus:agmpkiokre", "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/kultus:17/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kultus:5/?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, "price": { "fi": "", "sv": "", "en": "" }, "description": { "fi": "", "sv": "", "en": "" } } ], "data_source": "kultus", "publisher": "ahjo:u48040010", "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/kultus:56/?format=api" } ], "created_time": "2025-08-29T09:21:29.269504Z", "last_modified_time": "2025-08-29T09:37:37.116750Z", "date_published": null, "start_time": "2025-08-31T09:30:00Z", "end_time": "2025-08-31T11: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": "2025-08-29T12:30:00+03:00", "enrolment_end_time": "2025-08-30T12:30:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kokeilu", "sv": "", "en": "" }, "info_url": { "fi": "", "sv": "", "en": "" }, "location_extra_info": null, "name": { "fi": "Kokeilu", "sv": "", "en": "" }, "description": { "fi": "<p>Kokeilu</p>\n", "sv": "", "en": "" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kultus:agmpkiokre/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66945", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:46.435865Z", "last_modified_time": "2025-08-29T09:13:46.435887Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776504.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:46.337686Z", "last_modified_time": "2025-08-29T09:13:46.566433Z", "date_published": null, "start_time": "2025-09-20T15: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, "provider_contact_info": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/D74E194E43B674082FF649D5ED06FD82/Downton_Abbey_Viimeinen_naytos_S_" }, "location_extra_info": null, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66945/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66944", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490562, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:45.003925Z", "last_modified_time": "2025-08-29T09:13:45.003941Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776497.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490562/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:44.903532Z", "last_modified_time": "2025-08-29T09:13:45.133799Z", "date_published": null, "start_time": "2025-09-17T12: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, "provider_contact_info": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/60BB1D03272160B7FC67FD2F5F377FAB/Downton_Abbey_Viimeinen_naytos_S_" }, "location_extra_info": null, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66944/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66943", "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: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:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "sv": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/", "en": "https://www.lippu.fi/artist/kino-helios/kino-helios-downton-abbey-viimeinen-naeytoes-3964073/" }, "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T09:13:43.237268Z", "last_modified_time": "2025-08-29T09:13:43.237285Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776493.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-29T09:13:43.077349Z", "last_modified_time": "2025-08-29T09:13:43.403919Z", "date_published": null, "start_time": "2025-09-12T12: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, "provider_contact_info": null, "short_description": { "fi": "Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_", "en": "http://www.malmitalo.fi/en/events/event/EF6CF8AB1611899D90DA135FA4CEB6C1/Downton_Abbey_Viimeinen_naytos_S_" }, "location_extra_info": null, "name": { "fi": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "sv": "Downton Abbey – Viimeinen näytös (S) – Kino Helios", "en": "Downton Abbey – Viimeinen näytös (S) – Kino Helios" }, "description": { "fi": "<p>Rakastetun brittidraaman paluu elokuvateattereihin seuraa Crawleyn perheen ja heidän palveluskuntansa vaiheita vuosikymmenen vaihtuessa 1930-luvulle.</p><p>Kun rakastetut hahmot yrittävät luotsata Downton Abbeyn kartanoa tulevaisuuteen, heidän on hyväksyttävä muutoksen tuulet ja aloitettava uusi ajanjakso.</p><p>Ikäraja: Sallittu kaikenikäisille<br>Kesto: 124 min<br>Ensi-ilta: 12.09.2025<br>Tekstitys: suomi, ruotsi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66943/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66179", "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:46/?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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1178694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-04T09:13:57.420870Z", "last_modified_time": "2025-07-04T09:13:57.420886Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772438.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1178694/?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": "2025-07-04T09:13:57.314936Z", "last_modified_time": "2025-08-29T08:13:55.244643Z", "date_published": null, "start_time": "2025-10-11T10:00:00Z", "end_time": "2025-10-11T12: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, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.", "sv": "Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.", "en": "Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D56BBBC212B789696FA06FBA81E987A2/Rusinat_pullasta_-_Alyvapaat_Taidepajojen_riemua_jo_10_vuotta_", "sv": "http://www.annantalo.fi/sv/evenemang/event/D56BBBC212B789696FA06FBA81E987A2/Russinen_ur_bullen_De_intelligensbefriade_Konstworkshopparna_fyller_10_ar_", "en": "http://www.annantalo.fi/en/events/event/D56BBBC212B789696FA06FBA81E987A2/Picking_the_best_bits_Alyvapaat_Joy_of_art_workshops_for_a_decade_" }, "location_extra_info": null, "name": { "fi": "Rusinat pullasta - Älyvapaat: Taidepajojen riemua jo 10 vuotta! – Huom! Poikkeava kellonaika.", "sv": "Russinen ur bullen – De intelligensbefriade: Konstworkshopparna fyller 10 år! – Obs! Annat klockslag än normalt.", "en": "Picking the best bits – Älyvapaat: Joy of art workshops for a decade! – Please note the different time." }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä aikaa taiteen parissa kaikille avoimissa työpajoissa, joissa voi piipahtaa tai viipyä pidempään.</p><p><b>Rusinat pullasta</b></p><p>Nyt poimitaan parhaat päältä! Pajoissa pääset tekemään unelmista asumuksia, osallistumaan Annantalon ajoihin ja kenties käymään myös kuussa! Juhlan kunniaksi tehdään myös omia juhlatamineita, joita voi esitellä muotinäytöksessä.</p><p>Tapahtuman järjestävät yhdessä Annantalo ja vapaaehtoisten Älyvapaa-yhteisö jo kymmenettä kertaa – luvassa siis taidepajojen riemua täyden kympin verran!</p><p>Tapahtuma on maksuton, ei ennakkoilmoittautumista.</p><p>Tarkempi ohjelma julkaistaan lähempänä tapahtumaa.<br>Työpajat käynnissä klo 13–15<br>Huom! Viimeiset osallistujat pajoihin klo 15.</p><p>Ikäsuositus: kaikenikäisille, alle 8-v lapset aikuisen kanssa.<br>Työskentelykieli: suomi</p>", "sv": "<p>Under Annegårdens konstlördagar kan hela familjen umgås i konstens tecken i workshoppar som är öppna för alla, där man kan stanna en kortare eller längre stund.</p>", "en": "<p>Annantalo Art Saturdays allow the whole family to spend time together enjoying art in open workshops – pop by briefly or stay for a longer visit.</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66179/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:60a3fc43-8f02-4a09-acc7-dc7de8ca63cf", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "https://www.instagram.com", "language": "fi" }, { "name": "extlink_facebook", "link": "https://www.facebook.com", "language": "fi" }, { "name": "extlink_tiktok", "link": "https://www.tiktok.com", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/919fddf8-6182-f011-b4cc-000d3ab0762c?readableEventId=KuTaSu_sprint_12_review_retro_290820253558622250" }, "price": { "fi": "0" }, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1490560, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-29T07:24:09.811119Z", "last_modified_time": "2025-08-29T07:24:09.811137Z", "name": "Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/4a819001-267f-ef11-ac1e-000d3a67c470/digitalassets/images/1dd607db-e2b2-ef11-b8e8-7c1e523462f9", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490560/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1393/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p316/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7708/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p916/?format=api" } ], "created_time": "2025-08-29T07:24:11.854302Z", "last_modified_time": "2025-08-29T07:24:11.854322Z", "date_published": "2025-08-29T06:02:21Z", "start_time": "2025-08-29T07:00:00Z", "end_time": "2025-08-29T08:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 13, "audience_max_age": 17, "super_event_type": "umbrella", "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": 50, "enrolment_start_time": "2025-08-25T08:00:00+03:00", "enrolment_end_time": "2025-08-29T10:00:00+03:00", "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "KuTaSu sprint 12 review & retro 29.08.2025" }, "info_url": { "fi": "https://www.annantalo.fi/fi/tapahtumat/" }, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi" }, "name": { "fi": "KuTaSu sprint 12 review & retro 29.08.2025" }, "description": { "fi": "<div><p>KuTaSu sprint 12 review & retro 29.08.2025</p></div>" }, "provider": { "fi": "Tapahtuman järjestäjä suomeksi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:60a3fc43-8f02-4a09-acc7-dc7de8ca63cf/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66831", "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: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: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" }, { "@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, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1434092, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-07T15:14:20.021773Z", "last_modified_time": "2025-08-07T15:14:20.021789Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774944.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1434092/?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": "2025-08-07T15:14:19.905985Z", "last_modified_time": "2025-08-28T13:14:06.543179Z", "date_published": null, "start_time": "2025-11-20T09:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/C1216382D83BB5903E74F0831E6B4588/Tarinallinen_konsertti_jouluisissa_tunnelmissa", "sv": "http://www.vuotalo.fi/sv/evenemang/event/C1216382D83BB5903E74F0831E6B4588/Tarinallinen_konsertti_jouluisissa_tunnelmissa", "en": "http://www.vuotalo.fi/en/events/event/C1216382D83BB5903E74F0831E6B4588/Tarinallinen_konsertti_jouluisissa_tunnelmissa" }, "location_extra_info": null, "name": { "fi": "Tarinallinen konsertti jouluisissa tunnelmissa – Lastenkulttuuria jokaiselle", "sv": "Tarinallinen konsertti jouluisissa tunnelmissa – Lastenkulttuuria jokaiselle", "en": "Tarinallinen konsertti jouluisissa tunnelmissa – Lastenkulttuuria jokaiselle" }, "description": { "fi": "<p>Itä-Helsingin musiikkiopisto tarjoaa tarinallisen joulukonsertin päiväkotiyleisölle ja koululaisille.</p><p>Itä-Helsingin musiikkiopisto (IHMO) on musiikin taiteen perusopetusta laajan oppimäärän mukaan antava oppilaitos, jonka juuret ovat länsimaisessa taidemusiikissa.</p><p>Klo 10:00 Konsertti päiväkotiyleisölle<br>Klo 11:30 Konsertti koululaisille</p><p>Rakastamme musiikkia ja tarjoamme monenlaisen musiikin tekemisen mahdollisuuksia. Tehtävämme on luoda iloa ja hyvinvointia niin, että tulevaisuudessa musiikki kuuluu kaikille. Lue lisää ihmo.fi</p><p>Vapaa pääsy</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa https://kultus.hel.fi/fi</p>" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66831/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 10295, "next": "