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 normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=223
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=224", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=222" }, "data": [ { "id": "elo:e068cc99-7b07-4594-a391-03050e621bfb", "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/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus939252632", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus939252632", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/6137e57b-e006-ef11-9f89-000d3ab3ec01?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus939252632" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 221364, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-13T13:56:10.836935Z", "last_modified_time": "2025-02-13T13:56:10.836955Z", "name": "Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/b6ca9fc4-82e7-ef11-be20-000d3ab0beb8", "cropping": "", "photographer_name": "N2 Albiino, Matti Pyykkö, Helsinki Partners", "alt_text": "Henkilöitä keskustelemassa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221364/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "created_time": "2025-02-13T13:30:02.985813Z", "last_modified_time": "2025-02-13T13:56:13.700485Z", "date_published": "2025-02-13T13:14:33Z", "start_time": "2025-02-18T10:00:00Z", "end_time": "2025-02-18T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 250, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-02-10T08:00:00+02:00", "enrolment_end_time": "2025-02-10T11:30:00+02:00", "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<div><div>Suomenkielinen kuvaus tulisi abc</div></div>", "sv": "<div><div>Ruotsinkielinen kuvaus tulisi tähän abcde</div></div>", "en": "<div><div>Englanninkielinen kuvaus tulisi tähän abcd</div></div>" }, "location_extra_info": null, "short_description": { "fi": "Lyhyt kuvaus abc", "sv": "Lyhyt kuvaus abcde", "en": "Lyhyt kuvaus abcd" }, "provider": { "fi": "Business Helsinki", "sv": "Business Helsinki", "en": "Business Helsinki" }, "provider_contact_info": null, "name": { "fi": "Jarun testitapahtuma 13022025 käyttöoikeuksien testaus", "sv": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus RU", "en": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus ENG" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:e068cc99-7b07-4594-a391-03050e621bfb/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:57bc9162-e8d0-4d2b-8dc5-30577b710f48", "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/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/541a1576-98d9-ef11-a730-000d3ab40ef6?readableEventId=Testi_kyttoikeuksista_1022025_Liisa794551385", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/541a1576-98d9-ef11-a730-000d3ab40ef6?readableEventId=Testi_kyttoikeuksista_1022025_Liisa794551385", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/541a1576-98d9-ef11-a730-000d3ab40ef6?readableEventId=Testi_kyttoikeuksista_1022025_Liisa794551385" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 221217, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-13T13:25:17.723520Z", "last_modified_time": "2025-02-13T13:25:17.723539Z", "name": "Supersankari lentää jee!", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/d2ccd7d7-57e4-ef11-a731-000d3ab40ef6", "cropping": "", "photographer_name": "Super", "alt_text": "Supersuper", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221217/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13582/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14342/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5590/?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" } ], "created_time": "2025-02-13T13:25:20.249278Z", "last_modified_time": "2025-02-13T13:25:20.249306Z", "date_published": "2025-02-13T13:15:04Z", "start_time": "2025-02-14T08:30:00Z", "end_time": "2025-02-14T09: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": 50, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-02-13T08:00:00+02:00", "enrolment_end_time": "2025-02-14T10:00:00+02:00", "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<div><div>Hilipatiheijaa hilipatiajeijaa</div></div>", "sv": "<div><div>Hilipatiheijaa hilipatiajeijaa</div></div>", "en": "<div><div>Hilipatiheijaa hilipatiajeijaa</div></div>" }, "location_extra_info": null, "short_description": { "fi": "pööpelipöö", "sv": "pööpelipöö", "en": "pööpelipöö" }, "provider": { "fi": "Business Helsinki", "sv": "Business Helsinki", "en": "Business Helsinki" }, "provider_contact_info": null, "name": { "fi": "Testi käyttöoikeuksista 14.2.2025 Liisa", "sv": "Testi käyttöoikeuksista 10.2.2025 Liisa", "en": "Testi käyttöoikeuksista 10.2.2025 Liisa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:57bc9162-e8d0-4d2b-8dc5-30577b710f48/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23du7a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dv2u/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-02-13T08:46:55.174646Z", "last_modified_time": "2025-02-13T08:46:55.174663Z", "date_published": null, "start_time": "2025-05-26T10:15:00Z", "end_time": "2025-05-26T11: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, "info_url": null, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:15 - 14:30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>" }, "location_extra_info": { "fi": "Elämysauto Välkky", "sv": "Allaktivitetsbussen Välkky", "en": "Activity Bus Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä elämysauto Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Elämysauto Välkky Hiirisuon asukaspuistossa", "sv": "Allaktivitetsbussen Välkky på rutten", "en": "Activity Bus Välkky on the route" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23du7a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dv2u", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:64122/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67rm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67ya/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23du7a/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-02-13T08:46:53.717411Z", "last_modified_time": "2025-02-13T08:46:53.717429Z", "date_published": null, "start_time": "2025-02-24T11:15:00Z", "end_time": "2025-05-26T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<p>Kirjastoauto Välkky saapuu Hiirisuon asukaspuistolle!</p><p>Viitenä maanantaina klo 13:15 - 14:30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "sv": "<p>Välkky kör till Hiirisuos invånarpark!</p><p>En gång i månaden på måndag kl. 13.15 - 14.30</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>", "en": "<p>Välkky arrives at the Hiirisuo residents' park!</p><p>Once a month on Monday at 13:15 - 14:30.</p><p>27.1.2025</p><p>24.2.2025</p><p>24.3.2025</p><p>28.4.2025</p><p>26.5.2025</p>" }, "location_extra_info": { "fi": "Elämysauto Välkky", "sv": "Allaktivitetsbussen Välkky", "en": "Activity Bus Välkky" }, "short_description": { "fi": "Tule kurkkaamaan, mitä elämysauto Välkystä löytyy!", "sv": "Kom och se vad Välkky har att erbjuda!", "en": "Come and see what Välkky has to offer!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Elämysauto Välkky Hiirisuon asukaspuistossa", "sv": "Allaktivitetsbussen Välkky på rutten", "en": "Activity Bus Välkky on the route" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dv2u/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65598", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 217299, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-12T09:13:52.235585Z", "last_modified_time": "2025-02-12T09:13:52.235598Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765489.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/217299/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-12T09:13:52.192722Z", "last_modified_time": "2025-02-12T09:13:52.313082Z", "date_published": null, "start_time": "2025-02-26T15:00:00Z", "end_time": "2025-02-26T17: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit", "en": "http://www.kanneltalo.fi/en/events/event/C7BD823FBA70D1162E2D8B6E9026212B/Kantsun_kahvit" }, "description": { "fi": "<p>Nyt voit vaikuttaa siihen, mitä tapahtuu kesällä Kannelmäessä!</p><p>Tule suunnittelemaan yhdessä Kanneltalon ja muiden alueen toimijoiden kanssa, millaista ohjelmaa kaupunginosassamme järjestetään kesällä.</p><p>Tarjoamme kahvia, teetä ja pientä syötävää.</p><p>Tapahtumaan ei tarvitse ilmoittautua ja se on maksuton.<br>Tervetuloa – Welcome!</p><p>Kantsun kahvit järjestää yhteistyössä alueen asukkaat, Kannelmäen D-asema ja Helsingin kaupunki</p>" }, "location_extra_info": null, "short_description": { "fi": "Nyt voit vaikuttaa siihen, mitä tapahtuu kesällä Kannelmäessä!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Kantsun kahvit", "sv": "Kantsun kahvit", "en": "Kantsun kahvit" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65598/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65451", "has_user_editable_resources": false, "location": null, "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: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/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T08:14:17.801727Z", "last_modified_time": "2025-01-23T08:14:17.801765Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761418.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T08:14:17.774636Z", "last_modified_time": "2025-02-11T15:13:52.248022Z", "date_published": null, "start_time": "2025-02-14T14:00:00Z", "end_time": "2025-02-14T17: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F31C684559FD446BF38096E8D57474D7/Malmin_sydan", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F31C684559FD446BF38096E8D57474D7/Malms_hjarta", "en": "http://www.malmitalo.fi/en/events/event/F31C684559FD446BF38096E8D57474D7/Heart_of_Malmi" }, "description": { "fi": "<p>Ystävänpäivänä Malmilla osoitetaan rakkautta ja rakennetaan yhdessä säihkyvä sydämenmuotoinen jäälinna Ylä-Malmin torille!</p><p>Malmin sydän on yhteisöllinen taideteos, joka syntyy kaupunkilaisten käsistä ja sydämistä. Yhdessä rakennettava valaistu jäälinna juhlistaa rakkautta, ystävyyttä ja yhteisöä!<br> <br>Osallistuminen on helppoa. Voit tehdä oman jääpalasi jäädyttämällä litran vettä esimerkiksi maitotölkissä. Halutessasi voit koristella jääpalan värein tai luonnonmateriaalein, kuten vaikka kukin tai kävyin - kaikki luonnolle ystävälliset koristelut ovat tervetulleita!<br> <br>Tuo tekemäsi jääpala Ylä-Malmin torille ystävänpäivänä, jolloin kokoonnumme rakentamaan jäälinnaa. Rakentamista ohjaa ja koordinoi erillinen vetäjä, joka varmistaa, että rakennus sujuu turvallisesti ja mukavassa hengessä.<br> <br>Tunnelmallinen ja osallistava tapahtuma sopii kaikille. Tervetuloa mukaan luomaan Malmille yhteinen rakkauden symboli!</p><p><b>Ohjelma:</b><br>Jäänveistäjä Kari Manninen veistämässä jäätä puoliltapäivin ennen tapahtumaa noin kello 16 asti.</p><p>16–19 Seikkailutaidekoulu: jäälinnan rakentamista<br>16–19 Iltakorva - kaupungin korvat kuuntelevat kaupunkilaisia<br>16–19 Helsingin Kaupunginteatterin runokioski<br>16–19 Klovni Dattarataa jakaa ja muotoilee ilmapallohahmoja<br>16.30–17 ja 17.30–18 Laura Helander: saksofonimusiikkia<br>17–17.30 ja 18–18.30 Aura of Puppets: Varpunen<br> <br>Kaupungin korvina toimivat projektijohtaja Salla Ahokas, placemaking-projektipäällikkö Silja Lindblad, Malmin kirjaston johtaja Kalle Riiheläinen sekä Yhdyskuntatyöntekijä Soile Atacocugu. Korvien mukana kahvitarjoilu!</p>", "sv": "<p>På vändagen visar Malmborna kärlek och bygger tillsammans ett gnistrande, hjärtformat isslott på Övre Malms torg!</p><p>Malms hjärta är ett gemenskapskonstverk som stadsborna skapar med sina händer och hjärtan. Vi firar kärleken, vänskapen och gemenskapen med ett upplyst isslott som vi bygger tillsammans!<br> <br>Det är enkelt att delta. Du kan göra din egen isbit genom att frysa in en liter vatten i till exempel en mjölkkartong. Om du vill kan du dekorera isbiten med färger eller naturmaterial, såsom blommor eller kottar – alla naturvänliga dekorationer är välkomna!<br> <br>Ta med dig isbiten till Övre Malms torg på vändagen, då vi samlas för att bygga isslottet. Bygget handleds och samordnas av en separat handledare som ser till att bygget utförs på ett säkert sätt och i en trevlig atmosfär.<br> <br>Ett stämningsfullt och inkluderande evenemang för alla. Välkommen att skapa en gemensam symbol för kärleken i Malm.</p>", "en": "<p>On Valentine's Day, love will be shown at Malmi by building a shining heart-shaped ice castle together at Ylä-Malmi Square!</p><p>The heart of Malmi is a communal artwork that is born from the hands and hearts of city residents. An illuminated ice castle built together celebrates love, friendship and community!<br> <br>Participation is easy. You can make your own ice cube by freezing a litre of water in a milk carton, for example. If you wish, you can decorate the ice cube with colours or natural materials, such as flowers or cones - all nature-friendly decorations are welcome!<br> <br>Bring your ice cube to Ylä-Malmi Square on Valentine’s Day, when we gather to build an ice castle. Building will be guided and coordinated by a separate leader, who ensures that the work runs safely and in a nice spirit.<br> <br>An atmospheric and participatory event is suitable for everyone. Welcome to create a common symbol of love for Malmi.</p>" }, "location_extra_info": null, "short_description": { "fi": "Ystävänpäivänä Malmilla osoitetaan rakkautta ja rakennetaan yhdessä säihkyvä sydämenmuotoinen jäälinna Ylä-Malmin torille!", "sv": "På vändagen visar Malmborna kärlek och bygger tillsammans ett gnistrande, hjärtformat isslott på Övre Malms torg!", "en": "On Valentine's Day, love will be shown at Malmi by building a shining heart-shaped ice castle together at Ylä-Malmi Square!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Malmin sydän – Ystävänpäivä Ylä-Malmin torilla", "sv": "Malms hjärta – Vändag på Övre Malms torg", "en": "Heart of Malmi – Valentine’s day at Ylä-Malmi Square" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65451/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65605", "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: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 214517, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T13:13:59.181156Z", "last_modified_time": "2025-02-11T13:13:59.181170Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760556.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/214517/?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-02-11T13:13:59.141464Z", "last_modified_time": "2025-02-11T13:13:59.256823Z", "date_published": null, "start_time": "2025-04-16T06:15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1AD83B38F42A60046B48EF9B17C56599/Alakoulukino_Mavka", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1AD83B38F42A60046B48EF9B17C56599/Lagstadiekino_Mavka", "en": "http://www.vuotalo.fi/en/events/event/1AD83B38F42A60046B48EF9B17C56599/Alakoulukino_Mavka" }, "description": { "fi": "<p>Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.</p><p>Muinaisista ajoista saakka Ukrainan metsät ovat kätkeneet sisäänsä uskomattomia salaisuuksia ja myyttisiä olentoja.</p><p>Mavka on haltia ja metsän sielu, jonka tehtävä on suojella metsän sydäntä kaikilta vaaroilta, etenkin ihmisiltä. Lucas on läheisen kylän asukas, joka haaveilee urasta muusikkona. Kun heidän maailmansa kohtaavat, tapahtuu jotain odottamatonta: he rakastuvat. Mutta ihmisten ja metsän asukkaiden joutuessa törmäyskurssille vanhan sahalaitoksen perijättären juonien seurauksena, myös Mavka ja Lucas ajautuvat vastakkain. Voittaako rakkaus epäilyksen ja pelon?</p><p>Suomen elokuvasäätiön maahantuontituki 2024</p><p>Ensi-ilta: 02.08.2024<br>Ikäraja: 7<br>Pituus: 99 min.<br>Ohjaus: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Käsikirjoitus: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genret: Animaatio, Koko perheen elokuva<br>Kieli: suomi</p><p>Ryhmille ennakkoilmoittautuminen <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">kultus.fi-palvelussa</a></u></p>", "sv": "<p>Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.</p><p>Sedan urminnes tider har det i skogarna i Ukraina funnits otroliga hemligheter och mytiska varelser dolda för människor. Mavka är en alv och skogens själ vars uppgift är att skydda skogens hjärta från alla faror, särskilt från människor. Lucas bor i en närliggande by och drömmer om en karriär som musiker. När deras världar möts, händer något oväntat: de blir förälskade i varandra. Men när människor och skogsinvånare hamnar på kollisionskurs till följd av den lömska arvtagerskan för det gamla sågverket, ställs Mavka och Lucas också mot varandra. Kan kärleken övervinna tvivel och rädsla?<br>Finlands filmstiftelses importstöd 2024</p><p>Premiär: 2.8.2024<br>Åldersgräns: 7<br>Längd: 99 min.<br>Regi: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Manus: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genre: Animation</p><p>Språk: finska</p><p>Förhandsanmälan för grupper på <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">på kultus.fi</a></u></p>", "en": "<p>A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders.</p><p>Since ancient times, the Ukrainian forests have hidden incredible secrets and mythical creatures. Mavka is a female spirit and the soul of the forest, whose mission is to protect the heart of the forest from all dangers, especially people. Lucas is a resident of a nearby village who dreams of a career as a musician. When their worlds meet, something unexpected happens: they fall in love. But when the lives of people and forest dwellers collide as a result of the schemes of an heiress of an old sawmill, even Mavka and Lucas end up on opposite paths. Can love overcome doubt and fear?</p><p>Finnish Film Foundation’s import subsidy 2024</p><p>Premiere: 2 August 2024<br>Age limit: 7<br>Length: 99 min<br>Director: Oleh Malamuzh, Oleksandra Ruban, Yevheniy Yermak<br>Screenplay: Yaroslav Voytseshek, Lesya Ukrainka</p><p>Genres: Animation<br>Language: Finnish</p><p>Pre-registration for groups <u><a href=\"https://kultus.fi/fi/event/kultus:agkelzc4oi?text=mavka&returnPath=%2Fsearch\">at kultus.fi</a></u></p>" }, "location_extra_info": null, "short_description": { "fi": "Vihreitä arvoja korostava koko perheen animaatio Mavka: Metsän laulu on ukrainalais-amerikkalainen menestyselokuva, joka kannustaa rakentamaan siltoja yli rajojen.", "sv": "Mavka, animationen för hela familjen som betonar gröna värderingar: Skogens väktare är en framgångsrik ukrainsk-amerikansk film som uppmuntrar att bygga broar över gränser.", "en": "A family animation with green values, Mavka: The Forest Song is a Ukrainian-American blockbuster that encourages us to build bridges across borders." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Alakoulukino: Mavka", "sv": "Lågstadiekino: Mavka", "en": "Alakoulukino: Mavka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65605/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65588", "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: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/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 214516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T13:13:58.239232Z", "last_modified_time": "2025-02-11T13:13:58.239246Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761445.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/214516/?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-02-11T13:13:58.185526Z", "last_modified_time": "2025-02-11T13:13:58.332869Z", "date_published": null, "start_time": "2025-04-12T09:00:00Z", "end_time": "2025-04-12T11: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Ilmiomainen_teatteripaasiainen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Fenomenal_teaterpask", "en": "http://www.vuotalo.fi/en/events/event/CBAC9C0865D4C9DE98717AA2CC2A5975/Phenomenal_theatre_Easter" }, "description": { "fi": "<p>Tule mukaan teatterin pyörteisiin Vuotalolle, aiheena on keväinen luonto!</p><p>Tapahtumassa on luvassa teatteria ja teatterileikkejä, joihin voit osallistua haluamallasi tavalla. Voit katsella, kuunnella, improvisoida, askarella, maskeerata ja puvustaa! Luvassa on myös Teatterikoulu ILMI Ö:n oppilaiden ja Teatteri ILMI Ö:n senioreiden TaideLiikutus-yhteisöteatteriryhmän esityksiä.</p><p>Tule mukaan luomaan hauskaa pääsiäistarinaa, kertomaan vitsejä ja osallistumaan pääsiäisrunon tekoon. Vai haluaisitko askarrella metsä- tai meriaiheisen pääsiäismunan pupulle ja oravalle? Kokeile myös ilmiömäisiä tuolileikkejä! Entä kuka ehtisi opastaa pinkkiin pukeutunutta retkeilijää kierrättämisen saloihin?</p><p>Tapahtumassa on myös maskeeraus- ja puvustuspiste sekä kuvausseinä, jonka ääressä voit ottaa ihania keväisiä kuvia.</p><p>Lämpimästi tervetuloa kaikille!</p><p>Yhteistyössä:<br>Teatterikoulu ILMI Ö., Teatteri ILMI Ö., Vuotalo</p><p>Vapaa pääsy</p>", "sv": "<p>Kom med i teaterns fenomenala virvlar i Nordhuset, temat är en vårnatur!</p><p>På evenemangets program står teater och teaterlekar som du kan delta i på det sätt som du vill. Du kan titta, lyssna, improvisera, pyssla, maskera och ta hand om kostymer! Det utlovas även föreställningar med Teaterskolan ILMI Ö:s elever och Teatern ILMI Ö:s gemenskapsteatergrupp för seniorer TaideLiikutus.</p><p>Kom med och skapa en rolig påskberättelse, berätta vitsar och skriv en påskdikt. Eller vill du pyssla ett påskägg med skogs- eller havstema för en kanin och ekorre? Prova också fenomenala stollekar! Och vem har tid att handleda en rosaklädd vandrare i återvinning?</p><p>På evenemanget finns även en maskerings- och kostymstation samt en fotovägg där du kan ta härliga vårfoton.</p><p>Varmt välkommen!</p><p>I samarbete med:<br>Teaterskolan ILMI Ö., Teatern ILMI Ö., Nordhuset</p><p>Fritt inträde</p>", "en": "<p>Join a theatrical vortex at Vuotalo, the theme is spring nature!</p><p>The event will feature theatre and theatrical play that you can participate in any way you want. You can watch, listen, improvise, craft, do makeup and provide costumes! Theatre school ILMI Ö.’s students and Theatre ILMI Ö.’s seniors’ Taideliikutus community theatre group will also perform.</p><p>Join us in creating a fun Easter story, telling jokes and contributing to an Easter poem. Or would you like to craft a forest- or sea-themed Easter egg for a bunny and a squirrel? Why not try some phenomenal chair games? And who could instruct a hiker dressed in pink with the secrets of recycling?</p><p>The event will also feature a makeup and costume stand and a photo wall where you can take lovely spring photos.</p><p>A warm welcome to all!</p><p>In cooperation with:<br>Theatre school ILMI Ö., Theatre ILMI Ö., Vuotalo</p><p>Free admission</p>" }, "location_extra_info": null, "short_description": { "fi": "Tule mukaan teatterin pyörteisiin Vuotalolle, aiheena on keväinen luonto!", "sv": "Kom med i teaterns fenomenala virvlar i Nordhuset, temat är en vårnatur!", "en": "Join a theatrical vortex at Vuotalo, the theme is spring nature!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Ilmiömäinen teatteripääsiäinen", "sv": "Fenomenal teaterpåsk", "en": "Phenomenal theatre Easter" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65588/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64944", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-12T15:14:24.383037Z", "last_modified_time": "2024-12-12T15:14:24.383050Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761704.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153426/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-12T15:14:24.352044Z", "last_modified_time": "2025-02-11T12:13:48.233453Z", "date_published": null, "start_time": "2025-02-07", "end_time": "2025-03-01", "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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life", "sv": "http://www.caisa.fi/sv/evenemang/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life", "en": "http://www.caisa.fi/en/events/event/9A8274ECA494CAC38C21727165B143E3/Tree_God_of_Life" }, "description": { "fi": "<p>Salih Hodhayfa tuo Caisan galleriaan vaikuttavan kokoisia maalauksia, joissa pohditaan puun merkityksiä.</p><p>Näyttely tutkii puun syvällistä symboliikkaa, joka on eri kulttuureissa yhdistetty elämään, suojeluun ja henkiseen viisauteen. Nykymaailman ympäristökriisien keskellä puu muistuttaa meitä luonnon haavoittuvuudesta ja sen merkityksestä niin fyysiselle ympäristölle kuin henkiselle hyvinvoinnillemme, kehottaen toimimaan tulevien sukupolvien hyväksi.</p><p>Monissa kulttuureissa puita on pidetty suojelijajumalina, jotka ilmentävät maan ja taivaan välistä henkistä yhteyttä. Puiden uskottiin kantavan elämän ydintä, toimien välittäjinä ihmisten ja universumin mysteerien välillä. Niitä on pidetty muinaisen tiedon vartijoina, jotka tarjoavat ohjausta ja suojaa niin fyysisesti kuin metafyysisesti niille, jotka etsivät lohtua tai valaistumista niiden oksien alla.</p><p>Ihmiset ovat pitkään löytäneet puiden varjosta turvapaikan, käyttäen niitä levon, pohdiskelun ja meditaation paikkoina. Niistä on tullut pyhiä tiloja, joissa voi pysähtyä ja löytää yhteyden luontoon, rauhaa ja selkeyttä elämän kaoottisen rytmin keskellä.</p><p>Puu toimii voimakkaana muistutuksena ekosysteemiemme haavoittuvuudesta ja kaikkien elävien olentojen keskinäisestä riippuvuudesta. Metsien häviäminen huolestuttavalla vauhdilla ja maapallon luonnonvarojen kasvava uhka korostavat puun merkitystä sekä toivon että toiminnan symbolina.</p><p>Kuuntele taiteilijan haastattelu Radio Helsingin Kaupunkielämää-ohjelmassa <u><a href=\"https://www.radiohelsinki.fi/podcastit/kuvataiteilija-salih-hodhayfa-tuo-caisan-galleriaan-vaikuttavan-kokoisia-maalauksia-joissa-pohditaan-puun-merkityksia/\">klikkaamalla tätä linkkiä</a></u></p>", "sv": "<p>Salih Hodhayfa hämtar målningar av imponerande storlek som begrundar trädets betydelser till Caisas galleri.</p><p>Utställningen utforskar trädets djupa symbolik, som i olika kulturer förknippas med liv, skydd och andlig visdom. Mitt i dagens miljökriser påminner trädet oss om naturens sårbarhet och dess betydelse för både vår fysiska miljö och vårt andliga välbefinnande, och uppmanar oss att agera till förmån för kommande generationer.</p><p>I många kulturer har träd betraktats som skyddsgudar som förkroppsligar den andliga förbindelsen mellan jord och himmel. Träden ansågs bära på livets innersta väsen och fungera som mellanhänder mellan människan och universums mysterier. De har betraktats som väktare av uråldrig kunskap, som erbjuder vägledning och skydd både fysiskt och metafysiskt till dem som söker tröst eller upplysning under deras grenar.</p><p>Människor har länge sökt skydd i skuggan av träd och använt dem som platser för vila, eftertanke och meditation. De har blivit heliga rum där man kan stanna upp och hitta kontakten till naturen, lugn och klarhet mitt i livets kaotiska rytm.</p><p>Trädet är en kraftfull påminnelse om hur sårbara våra ekosystem är och hur beroende alla levande varelser är av varandra. Den oroväckande avskogningen och det växande hotet mot planetens naturresurser understryker vikten av trä som en symbol för både hopp och handling.</p>", "en": "<p>Salih Hodhayfa brings impressively large paintings to Caisa’s gallery that explore the significance of trees.</p><p>The exhibition explores the profound symbolism of trees, which in different cultures are associated with life, protection and spiritual wisdom. Amidst the environmental crises of the modern world, trees remind us of the vulnerability of nature and its importance for both our physical environment and our spiritual well-being, urging us to act for the benefit of future generations.</p><p>In many cultures, trees have been regarded as guardian deities, embodying the spiritual connection between the earth and the sky. Trees were believed to carry the essence of life, acting as intermediaries between humans and the mysteries of the universe. They have been regarded as the guardians of ancient knowledge, offering guidance and protection both physically and metaphysically to those seeking solace or enlightenment underneath their branches.</p><p>People have long found refuge in the shade of trees, using them as places of rest, reflection and meditation. They have become sacred spaces where you can pause to connect with nature and find peace and clarity amidst the chaotic pace of life.</p><p>Trees serve as powerful reminders of the vulnerability of our ecosystems and the interdependence of all living things. The alarming rate of deforestation and the growing threat to the planet’s natural resources highlight the importance of trees as symbols of both hope and action.</p>" }, "location_extra_info": null, "short_description": { "fi": "Salih Hodhayfa tuo Caisan galleriaan vaikuttavan kokoisia maalauksia, joissa pohditaan puun merkityksiä.", "sv": "Salih Hodhayfa hämtar målningar av imponerande storlek som begrundar trädets betydelser till Caisas galleri.", "en": "Salih Hodhayfa brings impressively large paintings to Caisa’s gallery that explore the significance of trees." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Tree God of Life – Salih Hodhayfa", "sv": "Tree God of Life – Salih Hodhayfa", "en": "Tree God of Life – Salih Hodhayfa" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64944/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65587", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 213828, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T08:14:31.130753Z", "last_modified_time": "2025-02-11T08:14:31.130767Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761786.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213828/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-11T08:14:31.092450Z", "last_modified_time": "2025-02-11T08:14:31.198920Z", "date_published": null, "start_time": "2025-04-08T11: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_", "en": "http://www.vuotalo.fi/en/events/event/0ECA958443E702C5B5F1689AFA7BAFE4/Romanikieli_kansainvalinen_tuntematon_ja_uhanalainen_vahemmistokielemme_" }, "description": { "fi": "<p>Romanien kansallispäivänä FT Kimmo Granqvist luennoi romanikielestä Vuotalossa.</p><p>Romanikieli on indoarjalainen kieli, jota puhuu eri puolilla maailmaa vähintään neljä miljoonaa ihmistä. Se monille suomalaisille paljolti tuntematon, vaikka sitä on puhuttu Suomessa 500 vuoden ajan.</p><p>Nykyään se on Suomessa vakavasti uhanalainen kieli, jota kuitenkin yritetään elvyttää vuoteen 2030 ulottuvan elvytysohjelman kautta.</p><p>Kesto: 90 min<br>Vapaa pääsy</p>", "sv": "<p>På romernas nationaldag föreläser FD Kimmo Granqvist om romani i Nordhuset.</p><p>Romani är ett indoariskt språk som talas av minst fyra miljoner människor runt om i världen. Det är i stort sett okänt för många finländare även om det har talats i Finland i 500 år. I dag är det ett allvarligt hotat språk i Finland som man försöker återuppliva genom ett återupplivningsprogram som pågår till 2030.</p><p>Längd: 90 min.</p><p>Språk: finska<br>Fritt inträde</p>", "en": "<p>On the Roma National Day, PhD Kimmo Granqvist will give a lecture on the Roma language at Vuotalo.</p><p>Romani is an Indo-Aryan language spoken by at least four million people around the world. It is largely unknown to many Finns, although it has been spoken in Finland for 500 years. Today, it is a severely endangered language in Finland, but the aim is to revive it through a recovery programme lasting until 2030.</p><p>Duration: 90 min<br>Language: Finnish</p><p>Free of charge</p>" }, "location_extra_info": null, "short_description": { "fi": "Romanien kansallispäivänä FT Kimmo Granqvist luennoi romanikielestä Vuotalossa.", "sv": "På romernas nationaldag föreläser FD Kimmo Granqvist om romani i Nordhuset.", "en": "On the Roma National Day, PhD Kimmo Granqvist will give a lecture on the Roma language at Vuotalo." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tiistaimatinea / Romanien kansallispäivä", "sv": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tisdagsmatiné / Romernas nationaldag", "en": "Romanikieli: kansainvälinen, tuntematon ja uhanalainen vähemmistökielemme – Tuesday matinee / Roma National Day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65587/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65601", "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": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 213827, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-11T08:14:29.856596Z", "last_modified_time": "2025-02-11T08:14:29.856611Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761784.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/213827/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-11T08:14:29.803518Z", "last_modified_time": "2025-02-11T08:14:29.933013Z", "date_published": null, "start_time": "2025-04-04T15:00:00Z", "end_time": "2025-04-04T17: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025", "sv": "http://www.vuotalo.fi/sv/evenemang/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025", "en": "http://www.vuotalo.fi/en/events/event/430B3C81E25403BA99042842DC7C4CA2/AKUSMATA_POLYPHONIC_2025" }, "description": { "fi": "<p>Akusmata Polyphonic 2025 on kokeellisen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.</p><p>Tapahtumaan kutsutut muusikot, säveltäjät ja äänitaiteilijat tarjoavat yleisölle laajan kirjon uutta äänellistä ilmaisua kokeellisen elektronisen musiikin, äänitaiteen ja ambient-musiikin alueilta.</p><p>Ohjelmaan kuuluu modulaarisia äänijärjestelmiä, tee-se-itse-musiikkisoittimia ja asenteella improvisoitua musiikkia. Tapahtumassa esiintyy taiteilijoita ympäri maailmaa!</p><p>Kesto: 2 t sis. väliajan.</p><p>Vapaa pääsy</p>", "sv": "<p>Akusmata Polyphone 2025 är ett evenemang för experimentell ljudkonst och elektronisk musik i Nordhuset.</p><p>De inbjudna musikerna, kompositörerna och ljudkonstnärerna bjuder publiken på ett brett spektrum av nya ljudliga uttryck inom den experimentella elektroniska musiken, ljudkonsten och ambient-musiken.</p><p>På programmet står bland annat modulära ljudsystem, gör-det-själv-musikinstrument och musik som improviseras med attityd. Artister från hela världen uppträder på evenemanget!</p><p>Längd: 2 timmar inklusive paus</p><p>Fritt inträde</p>", "en": "<p>Akusmata Polyphonic 2025 is an experimental sound art and electronic music event in Vuotalo.</p><p>Musicians, composers and sound artists invited to the event offer the audience a wide range of new vocal expression from the areas of experimental electronic music, sound art and ambient music.</p><p>The programme includes modular sound systems, do-it-yourself musical instruments and music improvised with an attitude. The event will feature artists from around the world!</p><p>Duration: 2 hours, incl. intermission</p><p>Free admission</p>" }, "location_extra_info": null, "short_description": { "fi": "Akusmata Polyphonic 2025 on kokeellisen äänitaiteen ja elektronisen musiikin tapahtuma Vuotalossa.", "sv": "Akusmata Polyphone 2025 är ett evenemang för experimentell ljudkonst och elektronisk musik i Nordhuset.", "en": "Akusmata Polyphonic 2025 is an experimental sound art and electronic music event in Vuotalo." }, "provider": null, "provider_contact_info": null, "name": { "fi": "AKUSMATA POLYPHONIC 2025", "sv": "AKUSMATA POLYPHONIC 2025", "en": "AKUSMATA POLYPHONIC 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65601/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "elo:9ed67b19-892c-4294-8743-1f1daadf0e2f", "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/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": { "fi": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887", "sv": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887", "en": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/standaloneforms/bd9f2240-c75a-ef11-bfe3-002248a0c02a?readableEventId=Jarin_testitapahtuma_10022025_kyttoikeuksien_testaus966990887" } } ], "data_source": "elo", "publisher": "ahjo:u021200", "sub_events": [], "images": [ { "id": 210583, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-10T07:48:24.679297Z", "last_modified_time": "2025-02-10T07:48:24.679315Z", "name": "Kuvateksti", "url": "https://assets-eur.mkt.dynamics.com/08272d9d-6d1c-4804-8bdd-9ec1d4a7f5da/digitalassets/images/b6ca9fc4-82e7-ef11-be20-000d3ab0beb8", "cropping": "", "photographer_name": "N2 Albiino, Matti Pyykkö, Helsinki Partners", "alt_text": "Henkilöitä keskustelemassa", "data_source": "elo", "publisher": "ahjo:u021200", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/210583/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25981/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p26626/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p3128/?format=api" } ], "created_time": "2025-02-10T07:48:27.402335Z", "last_modified_time": "2025-02-10T07:48:27.402352Z", "date_published": "2025-02-10T07:28:20Z", "start_time": "2025-02-10T10:00:00Z", "end_time": "2025-02-10T11:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 250, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-02-10T08:00:00+02:00", "enrolment_end_time": "2025-02-10T11:30:00+02:00", "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<div><div>Suomenkielinen kuvaus tulisi abc</div></div>", "sv": "<div><div>Ruotsinkielinen kuvaus tulisi tähän abcde</div></div>", "en": "<div><div>Englanninkielinen kuvaus tulisi tähän abcd</div></div>" }, "location_extra_info": null, "short_description": { "fi": "Lyhyt kuvaus abc", "sv": "Lyhyt kuvaus abcde", "en": "Lyhyt kuvaus abcd" }, "provider": { "fi": "Business Helsinki", "sv": "Business Helsinki", "en": "Business Helsinki" }, "provider_contact_info": null, "name": { "fi": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus", "sv": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus RU", "en": "Jarin testitapahtuma 10022025 käyttöoikeuksien testaus ENG" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/elo:9ed67b19-892c-4294-8743-1f1daadf0e2f/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64768", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201802, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T14:15:27.689500Z", "last_modified_time": "2025-02-07T14:15:27.689531Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760132.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201802/?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-02-07T14:15:27.645084Z", "last_modified_time": "2025-02-07T14:15:27.786135Z", "date_published": null, "start_time": "2025-05-17T08:00:00Z", "end_time": "2025-05-17T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E890DC2279922FC53FD5B0870916CF7A/Annantalon_taidelauantai_Barokkiateljee", "sv": "http://www.annantalo.fi/sv/evenemang/event/E890DC2279922FC53FD5B0870916CF7A/Annegardens_konstlordag_Barockatelj_", "en": "http://www.annantalo.fi/en/events/event/E890DC2279922FC53FD5B0870916CF7A/Annantalo_Art_Saturday_Baroque_studio" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Barokkiateljee</b></p><p>Barokki oli taidesuuntaus 1600-luvulla. Sen tunnusmerkkejä ovat koristeellisuus ja mahtipontisuus. Lauantain avoimessa pajassa virittäydymme barokin tunnelmiin pukeutumalla ja tekemällä muotokuvia toisistamme. Barokkimusiikki luo ympärillemme juhlan tunnelmaa ja barokkimainen garderobi suhisee vaatteiden vaihtuessa ja liitujen tanssiessa paperilla.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton. Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Barockateljé</b><br> <br>Barocken var en konstriktning på 1600-talet. Den kännetecknas av utsmyckning och storslagenhet. I den här workshoppen kommer vi i barockstämning genom att klä ut oss och måla porträtt av varandra. Barockmusik skapar en festlig stämning runt omkring oss och barockgarderoben prasslar när kläder byts och penslar dansar på papper!</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Baroque studio</b></p><p>Baroque was an art movement in the 17th century. Its main features include decorativeness and flamboyance. In this workshop, we tune in to the Baroque style by dressing up and painting portraits of each other. Baroque music creates a festive atmosphere around us while the baroque wardrobe buzzes as we change clothes and let our brushes dance on paper!</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.</p>" }, "location_extra_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Barokkiateljee", "sv": "Annegårdens konstlördag: Barockateljé", "en": "Annantalo Art Saturday: Baroque studio" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64768/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dwvy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxde/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2024-03-13T08:52:37.532917Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T13:00:09.977308Z", "last_modified_time": "2025-02-07T13:00:09.977399Z", "date_published": null, "start_time": "2025-05-20T15:00:00Z", "end_time": "2025-05-20T16: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, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "provider_contact_info": null, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dwvy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dxde", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dwvy/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2024-03-13T08:52:37.532917Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-07T13:00:02.528167Z", "last_modified_time": "2025-02-07T13:00:02.528186Z", "date_published": null, "start_time": "2025-02-11T16:00:00Z", "end_time": "2025-05-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p>" }, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "provider_contact_info": null, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dxde/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64767", "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:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 201401, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-07T11:13:15.526327Z", "last_modified_time": "2025-02-07T11:13:15.526341Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760131.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/201401/?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-02-07T11:13:15.509399Z", "last_modified_time": "2025-02-07T11:13:15.573076Z", "date_published": null, "start_time": "2025-04-26T08:00:00Z", "end_time": "2025-04-26T11: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalon_taidelauantai_Pyorat_vauhdissa", "sv": "http://www.annantalo.fi/sv/evenemang/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annegardens_konstlordag_Hjul_i_rorelse", "en": "http://www.annantalo.fi/en/events/event/5CB78CD20E39E0C2B86BB04BB67CE91B/Annantalo_Art_Saturday_Wheels_in_action" }, "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>Pyörät vauhdissa</b></p><p>Mikä se on, joka pyörät surraten perässä tulla vaapottaa? Aa aa ankka, sii sii siili vai keti keti kettu? Tule keksimään ja valmistamaan mukana vedettävä, pyörillä kulkeva ihme ja kumma. Siitä voi tulla pienoisveistos. Se voi olla luonnosta, saduista tai tarinoista muotonsa saanut olento. Tämä pyörillä kulkeva keksintö rakennetaan mm puuseppien työskentelystä syntyneistä ylijäämä palikoista ja luonnonmateriaaleista, kuten kävyt, oksat ja tammenterhot.</p><p>Osallistumiseen ei tarvita ennakkotaitoja ja kaikki ovat tervetulleita. Tarvittaessa lapsille on saatavilla kuulosuojaimia ja muita aistiapuvälineitä. Käytössä on myös hiljainen tila. Annantalon taidelauantai on maksuton.</p><p>Työpajan ohjaavat Annantalon taidekasvattajat.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.</p><p><b>Hjul i rörelse</b><br>Vad är det som vaggar bakom mig med snurrande hjul? A a ankan, i i igelkotten eller re re räven? Kom och uppfinn och bygg en förunderlig varelse som man dra bakom sig på hjul. Det kan bli en liten skulptur! Det kan vara en varelse från naturen, sagor eller berättelser. Denna hjulförsedda uppfinning byggs bland annat av rester från snickares arbete och naturmaterial såsom kottar, kvistar och ekollon.</p><p>Inga förkunskaper krävs för att delta och alla är välkomna. Vid behov finns hörselskydd och andra sensoriska hjälpmedel tillgängliga för barnen. Det finns också ett tyst rum. Konstlördagen på Annegården är avgiftsfri.</p><p>Workshoppen leds av Annegårdens konstpedagoger.<br>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer.</p><p><b>Wheels in action</b><br>What is it that comes with the wheels buzzing, wobbling behind you? Da da duck, mo mo mole or foxy foxy fox? Come invent with us and create your own draggable, wheeled wondrous creature. Maybe a small sculpture? It can be a creature inspired by nature, fairy tales or stories. This wheeled invention is built, for example, from surplus blocks left over from carpenters and natural materials, such as cones, branches and acorns.</p><p>No skills required to participate. Everyone is welcome. If necessary, hearing protection and other sensory aids are available for children. There is also a quiet space. The Annantalo Art Saturday is free of charge.</p><p>The workshop is led by art educators from Annantalo.<br>A warm welcome to Annantalo on Saturdays!</p>" }, "location_extra_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": "På Annegårdens konstlördag kan hela familjen tillbringa tid tillsammans i konstworkshoppar som är öppna för alla. Man kan både titta in eller stanna kvar längre.", "en": "On Annantalo’s Art Saturdays, the whole family can spend time together with art in workshops open to everyone. You can make just a brief pitstop or stay longer." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Annantalon taidelauantai: Pyörät vauhdissa", "sv": "Annegårdens konstlördag: Hjul i rörelse", "en": "Annantalo Art Saturday: Wheels in action" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64767/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65512", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166644, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T14:15:04.881456Z", "last_modified_time": "2025-01-24T14:15:04.881473Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765025.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166644/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T14:15:04.850563Z", "last_modified_time": "2025-02-06T15:13:05.142125Z", "date_published": null, "start_time": "2025-03-03", "end_time": "2025-03-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Sininen_sinfonia_Oodi_vedelle", "sv": "http://www.vuotalo.fi/sv/evenemang/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Sininen_sinfonia_Oodi_vedelle", "en": "http://www.vuotalo.fi/en/events/event/052068C0E1AFEB4FB8192ACF71B36DB2/Vesa_Linna_Blue_Symphony_Ode_to_Water" }, "description": { "fi": "<p>Sininen sinfonia -näyttely on tietokirjailija ja valokuvaaja Vesa Linnan oodi vedelle.</p><p>Näyttelyn valokuvat ovat Vesa Linnan Sininen sinfonia -tietokirjasta, jossa sukelletaan veden saloihin ja valotetaan tämän yhdisteen erityislaatuisuutta.</p><p>Vesi on meille helposti arkipäiväinen asia, mutta usein ihmeellisempi kuin voimme aavistaa. Se on myös kaiken elämän perusta maapallolla. Maailmassa ei olisi ensimmäistäkään ihmistä, eläintä tai kasvia ilman vettä. Jopa happi, jota hengitämme, on peräisin vedestä.</p><p>Vesa Linna on kiitosta saanut visualisti, joka toimii tietokirjojen kirjoittamisen lisäksi ammattivalokuvaajana. Linna on aikaisemmin julkaissut muun muassa tietokirjat Helsingin ja Suomenlinnan historiasta sekä musiikista.</p><p>Näyttely on Vuotalon 2. kerroksessa, vitriinikäytävällä.</p>", "sv": "<p>Utställningen Sininen sinfonia är fackboksförfattaren och fotografen Vesa Linnas ode till vattnet.</p><p>Fotografierna i utställningen är hämtade från Vesa Linnas faktabok Sininen sinfonia, där vi dyker ner i vattnets mysterier och belyser den speciella karaktären för detta ämne.</p><p>Vatten kan lätt bli väldigt vardagligt, men är ofta mer mirakulöst än vi kan föreställa oss. Det är också grunden till allt liv på jorden. Utan vatten skulle det inte finnas en enda människa, ett enda djur eller en enda växt i världen. Till och med syret vi andas kommer från vatten.</p><p>Vesa Linna är en hyllad visualist som förutom att skriva facklitteratur även arbetar som professionell fotograf. Linna har tidigare gett ut faktaböcker om bland annat Helsingfors och Sveaborgs historia samt om musik.</p>", "en": "<p>The Blue Symphony exhibition is the ode of non-fiction writer and photographer Vesa Linna to water.</p><p>The photographs in the exhibition are from Vesa Linna's Blue Symphony non-fiction book, which dives into the secrets of water and sheds light on the uniqueness of this compound.</p><p>We easily consider water an everyday element, and yet it is often more miraculous than we can imagine. It is also the foundation of all life on Earth. There would not be a single human, animal or plant in the world without water. Even the oxygen we breathe comes from water.</p><p>Vesa Linna is an acclaimed visualist who works not only as a non-fiction writer, but also as a professional photographer. Among others, Linna has previously published non-fiction books on the history of Helsinki and Suomenlinna as well as music.</p>" }, "location_extra_info": null, "short_description": { "fi": "Sininen sinfonia -näyttely on tietokirjailija ja valokuvaaja Vesa Linnan oodi vedelle.", "sv": "Utställningen Sininen sinfonia är fackboksförfattaren och fotografen Vesa Linnas ode till vattnet.", "en": "The Blue Symphony exhibition is the ode of non-fiction writer and photographer Vesa Linna to water." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Vesa Linna: Sininen sinfonia – Oodi vedelle", "sv": "Vesa Linna: Sininen sinfonia – Oodi vedelle – Den blå synfonin – En ode till vattnet", "en": "Vesa Linna: Blue Symphony – Ode to Water" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65512/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "linkedevents:agg-122", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65409/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65410/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-02-06T14:13:25.845595Z", "last_modified_time": "2025-02-06T14:13:25.845619Z", "date_published": null, "start_time": "2025-02-17T08:00:00Z", "end_time": "2025-02-18T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "description": { "fi": "<p>Tervetuloa animoimaan talvilomalla!</p><p>Kaksipäiväisessä työpajassa tutustutaan stopmotion-animaation tekemiseen. Käytössä ovat tabletit ja ohjelmina ovat Stopmotion Pro ja Procreate. Työpajassa on lyhyt lounastauko (klo 11.30–12), joten lapsille kannattaa pakata eväitä ja juomapullo mukaan.<br> <br>Työpajan ohjaajana toimii taidekasvattaja Kristina Laine.<br> <br><b>Ilmoittautuminen</b><br>Työpaja on maksuton, mutta vaatii sitovan ilmoittautumisen. Paikkoja on rajatusti.</p><p>Ilmoittaudu tästä linkistä:<br>https://forms.office.com/e/7YZuf8PaQ9<br> <br>Tila: Maissi<br>Kielet: suomi ja englanti tarvittaessa<br>Ohjaaja: Kristina Laine</p>", "sv": "<p>Välkommen animera på vinterlovet!</p><p>I den två dagar långa verkstaden får du lära dig hur man gör en stopmotion-animation. Verkstaden innehåller en kort lunchrast (kl. 11.30–12), så packa gärna mat och dryck för barnen.</p><p>Anmäl dig på denna länk:: https://forms.office.com/e/7YZuf8PaQ9</p>", "en": "<p>Welcome to animate on your Winter Holiday!</p><p>In the two-day workshop, you will learn about making stop motion animation. The workshop has a short lunch break (11:30 a.m. to 12 noon), so we recommend packing snacks and a drink for the children.</p><p>Sign up at this link: https://forms.office.com/e/7YZuf8PaQ9</p>" }, "location_extra_info": null, "short_description": { "fi": "Tervetuloa animoimaan talvilomalla!", "sv": "Välkommen animera på vinterlovet!", "en": "Welcome to animate on your Winter Holiday!" }, "provider": null, "provider_contact_info": null, "name": { "fi": "Animoin! – Animaatiotyöpaja 7–12-vuotiaille lapsille TÄYNNÄ ", "sv": "Jag animerar! – Animationsverkstad för barn mellan 7 och 12 år ", "en": "I animate! – Animation workshop for children aged 7–12 FULL " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-122/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65540", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 174766, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-28T14:14:30.349021Z", "last_modified_time": "2025-01-28T14:14:30.349038Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765065.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/174766/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-28T14:14:30.300301Z", "last_modified_time": "2025-02-06T14:13:08.205638Z", "date_published": null, "start_time": "2025-02-01", "end_time": "2025-02-28", "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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla", "en": "http://www.kanneltalo.fi/en/events/event/073251B57BE10D5CFEBAA7846F5796BD/Sanna_Liisanantti_Elamanpolulla" }, "description": { "fi": "<p>Jokaisella meistä on oma polkumme, jolla tapahtuneet kokemukset kulkevat mukanamme muistoissamme.</p><p>Kuinka paljon historiaa kätkeytyy pitkään eläneen ihmisen elämäntarinaan?</p><p>“Mennyt aika kiinnostaa minua juuri tavallisen ihmisen kokemana, ei vuosilukuina ja valtaapitäneiden nimiluetteloina. Menneen ajan arkiset visuaaliset elementit, kuparipannut, puuhellat ja rintamamiestalot kiehtovat minua valtavasti. Myös nykyaikaan sijoittuvien kuvien tekeminen on ollut antoisaa, koska rypyt ja harmaat hiukset kertovat viisaudesta. Olen halunnut kuvillani tuoda esille omaa näkemystäni vanhenemisen kauneudesta ja auttaa löytämään sen hyvät puolet.</p><p>Nämä kuvat olen tehnyt käsin piirtäen ja maalaten, mikä näkyy jäljessä. Samoin elämä jättää meihin jälkiä, joita ei voi tietokoneella jälkikäteen siistiä. Nämä jäljet ovat niitä tarinoita, joita haluan kuulla ja haluan kerrottavan nuoremmille sukupolville sekä jaettavan samoja kokeneiden kanssa.\" Sanna Liisanantti kertoo.</p><p>Teokset esillä Kanneltalon kahvilassa.</p><p>Vapaa pääsy.</p>", "sv": "<p>Var och en av oss har sin egen väg, där vi bär med oss de upplevelser vi varit med om i minnet.</p><p>Hur mycket historia döljer sig i livshistorien för en person som har levt länge?</p><p>“Jag är intresserad av det förflutna så som det upplevs av den vanliga människan, inte av årtal och namnlistor på makthavare. De vardagliga visuella elementen från en svunnen tid, kopparpannor, träspisar och frontmannahus fascinerar mig enormt. Det har också varit givande att ta bilder som placerar sig i samtiden, eftersom rynkorna och det grå håret är tecken på visdom. Genom mina bilder har jag velat uttrycka min egen syn på skönheten i åldrandet och hjälpa att upptäcka de goda i det.</p><p>Dessa bilder är ritade och målade för hand, vilket också syns. På samma sätt lämnar livet spår efter sig som inte kan snyggas upp med en dator i efterhand. Dessa spår är de historier jag vill höra och berätta för yngre generationer och dela med andra som har upplevt samma saker.”</p>", "en": "<p>Each of us has our own path, through which the experiences that we have had accompany us in our memories.</p><p>How much history is hidden in the life story of a long-lived person?</p><p>“I am interested in the past time as experienced by ordinary people, not as years and lists of names of those in power. The everyday visual elements of the past, copper pans, wood stoves and traditional houses fascinate me immensely. Making pictures that are set in modern times has also been rewarding, because wrinkles and grey hair tell about wisdom. I have wanted to use my pictures to bring out my own vision of the beauty of ageing and to help find what is good in it.</p><p>I have made these pictures by drawing and painting by hand, which shows in them. Similarly, life leaves us traces that cannot be cleaned up with a computer afterwards. These traces are the stories I want to hear and to be told to younger generations and shared with those who have experienced the same.”</p>" }, "location_extra_info": null, "short_description": { "fi": "Jokaisella meistä on oma polkumme, jolla tapahtuneet kokemukset kulkevat mukanamme muistoissamme.", "sv": "Var och en av oss har sin egen väg, där vi bär med oss de upplevelser vi varit med om i minnet.", "en": "Each of us has our own path, through which the experiences that we have had accompany us in our memories." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura", "sv": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura", "en": "Sanna Liisanantti – Elämänpolulla – Haagan Taideseura" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65540/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65455", "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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 154886, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-16T09:14:58.511476Z", "last_modified_time": "2025-01-16T09:14:58.511494Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764819.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/154886/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-16T09:14:58.479346Z", "last_modified_time": "2025-02-06T13:14:21.486995Z", "date_published": null, "start_time": "2025-02-08T12: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, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Inkluderande_danslektion_for_barn_", "en": "http://www.annantalo.fi/en/events/event/55CDFAAEF3B21AE2286A4E58E06AD3CA/Children_s_Inclusive_Dance_Class_" }, "description": { "fi": "<p>Kaaos Companyn lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen. <br> <br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi <br>www.kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme.</p><p>Lokalen är tillgänglighetsanpassad.</p><p>Fri entré, förhandsanmälning. <br> <br>Antal deltagare: max 18 (barn och vuxna tillsammans) <br>Anmäl dig på förhand via e-post: info@kaaoscompany.fi <br>Lokal: Dansklassrummet <br>Undervisningsspråk: Finska, engelska</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability. The lesson lasts one hour.</p><p>The space is accessible. The lessons are free.</p><p>Number of participants: max 18 (children and adults together)</p><p>Enrolment: info@kaaoscompany.fi <br>www.kaaoscompany.fi <br> <br>Class: Danceclass <br>Language: Finnish/english</p>" }, "location_extra_info": null, "short_description": { "fi": "Kaaos Companyn lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "provider": null, "provider_contact_info": null, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24633, "next": "