Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=279
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=280", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=278" }, "data": [ { "id": "espoo_le:agmk23d6zq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22wih4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-08T13:45:06.829613Z", "last_modified_time": "2025-01-24T08:29:51.510591Z", "date_published": null, "start_time": "2025-05-23T11:30:00Z", "end_time": "2025-05-23T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6zq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65002", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/matchbox/", "sv": "https://www.lippu.fi/artist/matchbox/", "en": "https://www.lippu.fi/artist/matchbox/" }, "price": { "fi": "47,90 €", "sv": "47,90 €", "en": "47,90 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-09T15:14:09.591932Z", "last_modified_time": "2024-12-09T15:14:09.591945Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763390.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153333/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-09T15:14:09.567379Z", "last_modified_time": "2025-01-23T14:13:35.757637Z", "date_published": null, "start_time": "2025-01-23T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Legendaarinen rockabilly-yhtye nyt Malmitalolla!</p><p>Matchbox on harvoja jo 1970-luvulla nähtyjä yhtyeitä, joiden kokoonpano on edelleen sama kuin suurimpien hittien päivinä. Yhtye oli suosionsa huipulla Suomessa 1980-luvun alun rockabilly-boomin aikana.</p><p>Yhtyeen suosittuja kappaleita ovat muun muassa ”Rockabilly Rebel ja ”Midnight Dynamos”.</p><p>Esiintymiset TV:ssä ja kiertueilla mm. Jerry Lee Lewisin, Johnny Cashin ja Chuck Berryn kaltaisten suuruuksien kanssa vain vahvistivat bändin asemaa. Näitä vuosia seuranneen hiljaisemman kauden jälkeen yhtye palasi lavoille uuden rockabilly-boomin nostaessa päätään vuonna 1996 ja on edelleen tällä tiellä keikkaillen Isossa-Britanniassa ja muualla Euroopassa.</p><p>Suomeen yhtye saapuu tammikuussa 2025 ja ensimmäinen keikka järjestetään Helsingin Malmitalossa.<br> <br>Kokoonpano 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Kesto: 1 t 15 min, ei väliaikaa</p>", "sv": "<p>Det legendariska rockabilly-bandet på Malms kulturhus!</p><p>Matchbox räknas bland de få band som redan sågs på 1970-talet och vars ensemble fortfarande är densamma som då de stora hittarna släpptes. Bandet var som populärast i Finland under rockabilly-boomen i början av 1980-talet.</p><p>Bandets populära låtar inkluderar “Rockabilly Rebel” och “Midnight Dynamos”. Framträdanden i TV och turnéer med bland annat sådana storheter som Jerry Lee Lewis, Johnny Cash och Chuck Berry stärkte bandets ställning ytterligare. Efter den tystare period som följde på dessa år återvände bandet till scenen med den nya rockabilly-boomen år 1996, och är fortfarande på den vägen med spelningar i Storbritannien och på andra håll i Europa.</p><p>Bandet kommer till Finland i januari 2025, och den första spelningen ordnas i Malms kulturhus i Helsingfors.<br> <br>Ensemble 2024:<br>Graham Fenton - Lead Vocalist,<br>Steve Bloomfield - Lead Guitar / vocals,<br>Jimmy Redhead - Drums / vocals,<br>Gordon Scott - Rhythm Guitar / vocals,<br>Fred Poke - Bass / vocals<br> <br>Längd 1 h 15 min., ingen paus</p>", "en": "<p>Legendary rockabilly band now at Malmitalo!</p><p>Matchbox is one of the few bands dating back to the 1970s whose line-up remains the same as when they had their biggest hits. The band was at the peak of its popularity in Finland during the rockabilly boom of the early 1980s.</p><p>The band’s popular songs include “Rockabilly Rebel” and “Midnight Dynamos”. Appearances on TV and tours with big names like Jerry Lee Lewis, Johnny Cash and Chuck Berry only strengthened the band’s position. After a quieter period following these years, the band returned to the stage as the new rockabilly boom took hold in 1996 and continues on this journey, touring Great Britain and elsewhere in Europe.</p><p>The band will arrive in Finland in January 2025, and their first show will take place at Malmitalo in Helsinki.<br> <br>Line-up in 2024:<br>Graham Fenton – Lead Vocalist,<br>Steve Bloomfield – Lead Guitar / vocals,<br>Jimmy Redhead – Drums / vocals,<br>Gordon Scott – Rhythm Guitar / vocals,<br>Fred Poke – Bass / vocals<br> <br>Duration: 1 h 15 min, no intermission</p>" }, "short_description": { "fi": "Legendaarinen rockabilly-yhtye nyt Malmitalolla!", "sv": "Det legendariska rockabilly-bandet på Malms kulturhus!", "en": "Legendary rockabilly band now at Malmitalo!" }, "name": { "fi": "LOPPUUNMYYTY Matchbox (UK)", "sv": "SLUTSÅLD Matchbox (UK)", "en": "SOLD OUT Matchbox (UK)" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D9651157B5C47F668F5F87A837A7C258/LOPPUUNMYYTY_Matchbox_UK_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D9651157B5C47F668F5F87A837A7C258/SLUTSALD_Matchbox_UK_", "en": "http://www.malmitalo.fi/en/events/event/D9651157B5C47F668F5F87A837A7C258/SOLD_OUT_Matchbox_UK_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65002/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64734", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152843, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-21T12:15:20.180498Z", "last_modified_time": "2024-10-21T12:15:20.180519Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759432.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152843/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-10-21T12:15:20.136671Z", "last_modified_time": "2025-01-23T14:13:29.708830Z", "date_published": null, "start_time": "2024-11-30", "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, "description": { "fi": "<p>Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.</p><p>Vuosien aikana tehdyt naamiot edustavat aineettomia asioita, jotka ovat ottaneet esineen muodon. Niistä on tullut artefakteja – symbolisia esineitä, joista kukin edustaa jotakin, esimerkiksi tiettyä olotilaa tai tunnetta.</p><p>Näyttelyn naamiot on toteutettu useilla eri tekniikoilla pääosin luonnosta kerätyistä tai kierrätetyistä materiaaleista.</p><p><i>”Naamiot leikittelevät kasvon ja persoonan muuttumisen mahdollisuuksilla. Ne edustavat yhteyttä näkymättömiin siteisiin: muihin ihmisiin ja maailmaan – sukupolvien ketjun kautta menneeseen aikaan ulottuviin yhteyksiin. Naamiot voisivat kenties olla väline, jonka avulla voisi saada yhteyden luontoon tai omaan itseen.”</i></p><p>Kristina on monialainen taiteilija, joka työskentelee kuvataiteen ja animaation parissa. Häntä kiehtovat kuvakerronta ja erityisesti symboliikka.</p><p><b>Näyttelyn avajaiset perjantaina 29.11.2024 klo 17–19, tervetuloa!</b></p><p><b>HUOM! 5.2. klo 13:30-18:00 näyttely on tilapäisesti suljettu <br>lyhytelokuvan kuvausten vuoksi.</b></p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä eteläpäädyn galleriaan.</p>", "sv": "<p>Kristina Laines utställning består av flera olika masker.</p><p>De masker som Laine gjort under åren representerar immateriella saker som har tagit formen av objekt. De har blivit artefakter – symboliska föremål av vilka var och en representerar något, ett visst tillstånd eller en viss känsla.</p><p>Maskerna i utställningen har tillverkats med flera olika tekniker, främst av material som plockats från naturen eller återvunnits.</p><p><i>”Maskerna leker med möjligheter att ändra ansiktet och personan. De representerar kontakten med osynliga band: andra människor och världen – med förbindelser som går tillbaka till de gångna tiderna genom kedjan av generationer. Maskerna kunde kanske vara ett verktyg med vilket jag kunde få kontakt med naturen eller mig själv.”</i></p><p>Kristina är en multidisciplinär konstnär som arbetar med bildkonst och animation. Hon fascineras av bildspråk och särskilt symbolik.</p><p><b>Vernissage fredagen 29.11 2024 klo 17–19, välkommen!</b></p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades in 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet i södra gaveln.</p>", "en": "<p>Kristina Laine’s exhibition consists of many different masks.</p><p>Made over the course of several years, the masks represent intangible things that have taken the form of an object. They have become artefacts, objects that each represent something, a particular state of affairs or emotion.</p><p>The masks in the exhibition have been realised with several different techniques, mainly from materials collected from nature or recycled materials.</p><p><i>‘Masks play with the possibilities of changing one’s face and personality. They represent a connection to invisible bonds with other people and the world – connections through the chain of generations to the past. Masks can be a tool to connect with nature or yourself.’</i></p><p>Kristina is a multidisciplinary artist who works with visual arts and animation. She is fascinated by visual narratives and symbolism in particular.</p><p><b>The exhibition will open on Friday, 29 November at 17–19, welcome!</b></p><p>The exhibition has been selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery at the south end of the building.</p>" }, "short_description": { "fi": "Kristina Laineen näyttely koostuu lukuisista erilaisista naamioista.", "sv": "Kristina Laines utställning består av flera olika masker.", "en": "Kristina Laine’s exhibition consists of many different masks." }, "name": { "fi": "Kristina Laine: Taidenaamiot – Ajatukset Artefakteiksi", "sv": "Kristina Laine: Konstmasker – Tankar till artefakter", "en": "Kristina Laine: Art Masks – From Ideas to Artefacts" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Taidenaamiot_Ajatukset_Artefakteiksi", "sv": "http://www.annantalo.fi/sv/evenemang/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Konstmasker_Tankar_till_artefakter", "en": "http://www.annantalo.fi/en/events/event/A5B3F570E56F54C0B92B6EA17F753E91/Kristina_Laine_Art_Masks_From_Ideas_to_Artefacts" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64734/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65504", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165016, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:59.574011Z", "last_modified_time": "2025-01-23T12:14:59.574035Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761780.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165016/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T12:14:59.540134Z", "last_modified_time": "2025-01-23T12:14:59.685268Z", "date_published": null, "start_time": "2025-03-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Miksi presidentti Mauno Koivisto kutsui inkeriläiset Suomeen? Miksi he ovat ajankohtainen vähemmistö juuri nyt?</p><p>Tule kuuntelemaan Hanna-Riitta Toivanen-Kolan luento aiheesta.</p><p>Kieli: suomi<br>Kesto: 1,5 tuntia</p><p>Vapaa pääsy</p>", "sv": "<p>Varför bjöd president Mauno Koivisto in ingermanlandsfinnar till Finland? Varför är de en aktuell minoritet just nu?</p><p>Kom och lyssna på Hanna-Riitta Toivanen-Kolas föreläsning om temat.</p><p>Längd: 1,5 timmar</p><p>Språk: finska</p>", "en": "<p>Why did President Mauno Koivisto invite the Ingrians to Finland? Why are they a timely minority right now?</p><p>Come and listen to Hanna-Riitta Toivanen-Kola’s lecture on the topic.</p><p>Language: Finnish<br>Duration: 1.5 hours</p><p>Language: Finnish</p>" }, "short_description": { "fi": "Miksi presidentti Mauno Koivisto kutsui inkeriläiset Suomeen? Miksi he ovat ajankohtainen vähemmistö juuri nyt?", "sv": "Varför bjöd president Mauno Koivisto in ingermanlandsfinnar till Finland? Varför är de en aktuell minoritet just nu?", "en": "Why did President Mauno Koivisto invite the Ingrians to Finland? Why are they a timely minority right now?" }, "name": { "fi": "Tiistaimatinea: Inkerinsuomalaiset – miksi he ovat nyt ajankohtaisia? – FT Hanna-Riitta Toivanen-Kola", "sv": "Tisdagsmatiné: Ingermanlandsfinnar – varför är de aktuella nu? – FD Hanna-Riitta Toivanen-Kola", "en": "Tuesday Matinee: Ingrian Finns – why are they a timely topic now? – PhD Hanna-Riitta Toivanen-Kola" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/D592B01C08CB420171C9636EE894EE01/Tiistaimatinea_Inkerinsuomalaiset_miksi_he_ovat_nyt_ajankohtaisia_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/D592B01C08CB420171C9636EE894EE01/Tisdagsmatin_Ingermanlandsfinnar_varfor_ar_de_aktuella_nu_", "en": "http://www.vuotalo.fi/en/events/event/D592B01C08CB420171C9636EE894EE01/Tuesday_Matinee_Ingrian_Finns_why_are_they_a_timely_topic_now_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65501", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165013, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:57.672751Z", "last_modified_time": "2025-01-23T12:14:57.672770Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761777.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165013/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T12:14:57.643457Z", "last_modified_time": "2025-01-23T12:14:57.739776Z", "date_published": null, "start_time": "2025-03-19T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith viimeisessä roolissaan ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin, kuuluisaan ranskalaiseen pyhiinvaelluskohteeseen, jossa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta. Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Kesto: 90 min.</p><p>Ohjaus: Thaddeus O'Sullivan<br>Näyttelijät: Laura Linney, Kathy Bates, Maggie Smith ja Stephen Rea.</p><p>Vapaa pääsy</p>", "sv": "<p>I huvudrollerna i den roliga och rörande filmen medverkar Oscarsbelönade Maggie Smith i sin sista roll, Kathy Bates, Laura Linney och Stephen Rea.</p><p>Lily och Eileen som hela sitt liv har passat upp sina män får en möjlighet att lämna de trångsynta cirklarna i 1960-talets Irland och resa till Lourdes, den berömda franska vallfärdsorten. I Lourdes får själva Jungfru Maria källvatten att strömma och enligt rykten har det läkande krafter. Med på resan följer även en ung mamma Dolly med sin lilla son som inte talar och Chrissie som nyligen återvänt efter åratal. Alla förväntar sig mirakel av resan bara för att upptäcka att de redan upplever mirakel i sin vänskap.</p><p>Längd: 90 min.</p>", "en": "<p>The fun and touching film stars Oscar-winning Maggie Smith in her final role as well as Kathy Bates, Laura Linney and Stephen Rea.</p><p>Lily and Eileen, who have been serving men their whole lives, get the opportunity to travel from the tight circles of 1960s Ireland to Lourdes, a famous French pilgrimage site, where supposedly healing spring water flows from the Virgin Mary herself. A young mother, Dolly, with her young, silent son, and Chrissie, who has been away for years, join them for the trip. Everyone expects miracles from the journey only to discover that their friendship is already full of miracles.</p><p>Duration: 90 min</p>" }, "short_description": { "fi": "Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith viimeisessä roolissaan ja Kathy Bates sekä Laura Linney ja Stephen Rea.", "sv": "I huvudrollerna i den roliga och rörande filmen medverkar Oscarsbelönade Maggie Smith i sin sista roll, Kathy Bates, Laura Linney och Stephen Rea.", "en": "The fun and touching film stars Oscar-winning Maggie Smith in her final role as well as Kathy Bates, Laura Linney and Stephen Rea." }, "name": { "fi": "Ihmeiden äärellä – Keskiviikkokino", "sv": "Ihmeiden äärellä – Onsdagskino", "en": "Miracles Club – Wednesday Cinema" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/25ADA3483A3B297DF05ADDF5D1852C8C/Ihmeiden_aarella", "sv": "http://www.vuotalo.fi/sv/evenemang/event/25ADA3483A3B297DF05ADDF5D1852C8C/Ihmeiden_aarella", "en": "http://www.vuotalo.fi/en/events/event/25ADA3483A3B297DF05ADDF5D1852C8C/Miracles_Club" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65501/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65498", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164932, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T11:15:27.708622Z", "last_modified_time": "2025-01-23T11:15:27.708636Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760175.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164932/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T11:15:27.678310Z", "last_modified_time": "2025-01-23T12:14:55.422488Z", "date_published": null, "start_time": "2025-03-12T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Fiktiivinen Parvet-elokuva pohjautuu tosielämän tilanteisiin ja tekee tilaa tarinoille, joita ei kuulla.</p><p>Miten eri taustoista olevat ihmiset kokevat olevansa osa yhteiskuntaa tai sen ulkopuolella? Monitarinallinen elokuva katsoo rehellisesti rakenteista, joiden osa olemme. Suomen uuden aallon elokuvantekijöiden ja moninkertaisten Jussi-ehdokkaiden Hannaleena Haurun ja Katja Gauriloffin ohjaama elokuva on toteutettu yhteisöllisin menetelmin.</p><p>Päänäyttelijät kehittivät omaa hahmoaan läpi elokuvan tuotannon, ja osa hahmoista perustuu omakohtaisiin kokemuksiin. Se on luotu ainutlaatuisesti 70-henkisellä työryhmällä, joka valittiin avoimilla hakemuksilla ja joka pääsi vaikuttamaan elokuvan sisältöön ja tuotantotapoihin. Tavoitteena on ollut kehittää dramaturgisia työkaluja, jotka edesauttaisivat vähemmistöihin kuuluvia ihmisiä Suomessa.</p><p>Ensi-ilta: 18.10.2024<br>Ikäraja: 12<br>Pituus: 83 min.</p><p>Ohjaus: Hannaleena Hauru, Katja Gauriloff<br>Käsikirjoitus: Hannaleena Hauru, Katja Gauriloff, Heta Nuutinen, Krista Yrjölä, Yolanda Correa, Stella Massa, Ritni Ráste Pieski, Senna Vodzogbe<br>Näyttelijät: Aaron Bojang, Adela Ogunbor, Yolanda Correa, Senna Vodzogbe, Stella Massa, Milla Kuikka, Lasse Viitamäki, Denisa Snyder, Mikael Bashmakov, Ritni Ráste Pieski<br>Genret: Draama</p><p>Vapaa pääsy</p>", "sv": "<p>Den fiktiva filmen Flockar är baserad på verkliga situationer och ger plats för berättelser som inte hörs.</p><p>Hur känner sig människor med olika bakgrund som en del av eller utanför samhället? Filmen med många berättelser tar en ärlig titt på de strukturer som vi är en del av. Filmen är regisserad av filmskapare i den nya finländska vågen och flerfaldigt Jussi-nominerade Hannaleena Hauru och Katja Gauriloff och har skapats med hjälp av grupparbetsmetoder. Huvudrollsinnehavarna utvecklade sina egna karaktärer under hela filmproduktionen, och vissa av karaktärerna är baserade på personliga erfarenheter. Den skapades av ett unikt team på 70 personer, som valdes ut genom öppna ansökningar, och som hade inflytande över filmens innehåll och produktionsmetoder. Målet har varit att utveckla dramaturgiska verktyg som kan vara till nytta för personer som tillhör minoriteter i Finland.</p><p>Premiär: 18.10.2024<br>Åldersgräns: 12<br>Längd: 83 min.</p><p>Regi: Hannaleena Hauru, Katja Gauriloff</p>", "en": "<p>The fictional film Parvet is based on real-life situations and creates space for stories that are not heard.</p><p>How do people from different backgrounds experience being part of or excluded from society? The multi-story film takes an honest look at the structures we are part of. The film is directed by Hannaleena Hauru and Katja Gauriloff, who are part of the new wave of Finnish filmmakers and have multiple Jussi nominations. The movie was produced using communal methods.</p><p>The lead actors developed their own characters throughout the film’s production, and some of the characters are based on personal experiences. It was created through a unique process involving a team of 70 people, selected via open applications, who had a say in the film’s content and production methods. It aimed to develop dramaturgical tools that would benefit people from underrepresented groups in Finland.</p><p>Premiere: 18 October 2024<br>Age limit: 12<br>Length: 83 min</p><p>Director: Hannaleena Hauru, Katja Gauriloff</p>" }, "short_description": { "fi": "Fiktiivinen Parvet-elokuva pohjautuu tosielämän tilanteisiin ja tekee tilaa tarinoille, joita ei kuulla.", "sv": "Den fiktiva filmen Flockar är baserad på verkliga situationer och ger plats för berättelser som inte hörs.", "en": "The fictional film Parvet is based on real-life situations and creates space for stories that are not heard." }, "name": { "fi": "Parvet (12) – Keskiviikkokino", "sv": "Flockar (12) – Onsdagskino", "en": "Parvet (12) – Wednesday cinema" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/42B96EBB2A8805DEF6D3D6F354A022A0/Parvet_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/42B96EBB2A8805DEF6D3D6F354A022A0/Flockar_12_", "en": "http://www.vuotalo.fi/en/events/event/42B96EBB2A8805DEF6D3D6F354A022A0/Parvet_12_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65498/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65499", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 165011, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T12:14:55.183232Z", "last_modified_time": "2025-01-23T12:14:55.183250Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760174.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/165011/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T12:14:55.133435Z", "last_modified_time": "2025-01-23T12:14:55.269330Z", "date_published": null, "start_time": "2025-03-12T07: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, "description": { "fi": "<p>Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa.</p><p>Fiktiivinen Parvet-elokuva pohjautuu tosielämän tilanteisiin ja tekee tilaa tarinoille, joita ei kuulla.</p><p>Miten eri taustoista olevat ihmiset kokevat olevansa osa yhteiskuntaa tai sen ulkopuolella? Monitarinallinen elokuva katsoo rehellisesti rakenteista, joiden osa olemme. Suomen uuden aallon elokuvantekijöiden ja moninkertaisten Jussi-ehdokkaiden Hannaleena Haurun ja Katja Gauriloffin ohjaama elokuva on toteutettu yhteisöllisin menetelmin.</p><p>Päänäyttelijät kehittivät omaa hahmoaan läpi elokuvan tuotannon, ja osa hahmoista perustuu omakohtaisiin kokemuksiin. Se on luotu ainutlaatuisesti 70-henkisellä työryhmällä, joka valittiin avoimilla hakemuksilla ja joka pääsi vaikuttamaan elokuvan sisältöön ja tuotantotapoihin. Tavoitteena on ollut kehittää dramaturgisia työkaluja, jotka edesauttaisivat vähemmistöihin kuuluvia ihmisiä Suomessa.</p><p>Ensi-ilta: 18.10.2024<br>Ikäraja: 12<br>Pituus: 83 min.</p><p>Ohjaus: Hannaleena Hauru, Katja Gauriloff<br>Käsikirjoitus: Hannaleena Hauru, Katja Gauriloff, Heta Nuutinen, Krista Yrjölä, Yolanda Correa, Stella Massa, Ritni Ráste Pieski, Senna Vodzogbe<br>Näyttelijät: Aaron Bojang, Adela Ogunbor, Yolanda Correa, Senna Vodzogbe, Stella Massa, Milla Kuikka, Lasse Viitamäki, Denisa Snyder, Mikael Bashmakov, Ritni Ráste Pieski</p><p>Genret: Draama</p><p>Vapaa pääsy</p>", "sv": "<p>Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa.</p><p>Den fiktiva filmen Flockar är baserad på verkliga situationer och ger plats för berättelser som inte hörs.</p><p>Hur känner sig människor med olika bakgrund som en del av eller utanför samhället? Filmen med många berättelser tar en ärlig titt på de strukturer som vi är en del av. Filmen är regisserad av filmskapare i den nya finländska vågen och flerfaldigt Jussi-nominerade Hannaleena Hauru och Katja Gauriloff och har skapats med hjälp av grupparbetsmetoder.</p><p>Huvudrollsinnehavarna utvecklade sina egna karaktärer under hela filmproduktionen, och vissa av karaktärerna är baserade på personliga erfarenheter. Den skapades av ett unikt team på 70 personer, som valdes ut genom öppna ansökningar, och som hade inflytande över filmens innehåll och produktionsmetoder. Målet har varit att utveckla dramaturgiska verktyg som kan vara till nytta för personer som tillhör minoriteter i Finland.</p><p>Premiär: 18.10.2024<br>Åldersgräns: 12<br>Längd: 83 min.</p><p>Regi: Hannaleena Hauru, Katja Gauriloff</p>", "en": "<p>Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa.</p><p>The fictional film Parvet is based on real-life situations and creates space for stories that are not heard.</p><p>How do people from different backgrounds experience being part of or excluded from society? The multi-story film takes an honest look at the structures we are part of. The film is directed by Hannaleena Hauru and Katja Gauriloff, who are part of the new wave of Finnish filmmakers and have multiple Jussi nominations. <br>The movie was produced using communal methods.</p><p>The lead actors developed their own characters throughout the film’s production, and some of the characters are based on personal experiences. It was created through a unique process involving a team of 70 people, selected via open applications, who had a say in the film’s content and production methods. It aimed to develop dramaturgical tools that would benefit people from underrepresented groups in Finland.</p><p>Premiere: 18 October 2024<br>Age limit: 12<br>Length: 83 min</p><p>Director: Hannaleena Hauru, Katja Gauriloff</p>" }, "short_description": { "fi": "Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa.", "sv": "Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa.", "en": "Koululaisesitys, ilmoita ryhmäsi etukäteen kultus.fi-palvelussa." }, "name": { "fi": "Yläkoulukino: Parvet (12)", "sv": "Yläkoulukino: Parvet (12)", "en": "Yläkoulukino: Parvet (12)" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/608B18E87F0554811A3F0BF0491C8C12/Ylakoulukino_Parvet_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/608B18E87F0554811A3F0BF0491C8C12/Ylakoulukino_Parvet_12_", "en": "http://www.vuotalo.fi/en/events/event/608B18E87F0554811A3F0BF0491C8C12/Ylakoulukino_Parvet_12_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65499/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65497", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164930, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T11:15:12.361332Z", "last_modified_time": "2025-01-23T11:15:12.361348Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759144.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164930/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T11:15:12.334610Z", "last_modified_time": "2025-01-23T11:15:12.425411Z", "date_published": null, "start_time": "2025-03-06T16:00:00Z", "end_time": "2025-03-06T17:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Soittaminen on leikkiä... ja soittojamit erityisesti!</p><p>Soitinjameissa pääset mukaan jammailemaan yhdessä kymmenien soittajien kanssa. Ydinporukka muodostuu työväenopiston soitinkurssien opiskelijoista, mutta mukaan saa tulla kuka vaan <br>soittotaitoinen oman soittimensa kanssa.</p><p>Kesto: 1,5 tuntia</p><p>Vapaa pääsy</p>", "sv": "<p>Att spela instrument är som att leka... och särskilt under jamsessioner!</p><p>Under Jamsessioner får du jamma tillsammans med tiotals musiker. Kärngruppen består av studerande på arbetarinstitutets instrumentkurser, men vem som helst som kan spela får komma med sitt eget instrument.</p><p>Längd: 1,5 timmar</p><p>Fritt inträde</p>", "en": "<p>Playing is a joy... particularly at Soitinjamit!</p><p>At Soitinjamit, you get to jam with dozens of musicians. The core group consists of students from the Adult Education Centre’s instrument courses, but anyone who can play with their own instrument is welcome to join.</p><p>Duration: 1.5 hours</p><p>Free admission</p>" }, "short_description": { "fi": "Soittaminen on leikkiä... ja soittojamit erityisesti!", "sv": "Att spela instrument är som att leka... och särskilt under jamsessioner!", "en": "Playing is a joy... particularly at Soitinjamit!" }, "name": { "fi": "Työväenopiston Soitinjamit", "sv": "Arbetarinstitutets Jamsessioner", "en": "Adult education centre’s instrumental jam session – Soitinjamit" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A9CCD537EFA8C9FDB0C2071C3557CE84/Tyovaenopiston_Soitinjamit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A9CCD537EFA8C9FDB0C2071C3557CE84/Arbetarinstitutets_Jamsessioner", "en": "http://www.vuotalo.fi/en/events/event/A9CCD537EFA8C9FDB0C2071C3557CE84/Adult_education_centre_s_instrumental_jam_session_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65496", "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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 164929, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-23T11:15:12.187577Z", "last_modified_time": "2025-01-23T11:15:12.187594Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761739.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/164929/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-23T11:15:12.155478Z", "last_modified_time": "2025-01-23T11:15:12.273479Z", "date_published": null, "start_time": "2025-03-06T14:30:00Z", "end_time": "2025-03-06T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Soittaminen on leikkiä... ja soittojamit erityisesti!</p><p>Soitinjameissa pääset mukaan jammailemaan yhdessä kymmenien soittajien kanssa. Ydinporukka muodostuu työväenopiston soitinkurssien opiskelijoista, mutta mukaan saa tulla kuka vaan <br>soittotaitoinen oman soittimensa kanssa.</p><p>Kesto: 1,5 tuntia</p><p>Vapaa pääsy</p>", "sv": "<p>Att spela instrument är som att leka... och särskilt under jamsessioner!</p><p>Under Jamsessioner får du jamma tillsammans med tiotals musiker. Kärngruppen består av studerande på arbetarinstitutets instrumentkurser, men vem som helst som kan spela får komma med sitt eget instrument.</p><p>Längd: 1,5 timmar</p><p>Fritt inträde</p>", "en": "<p>Playing is a joy... particularly at Soitinjamit!</p><p>At Soitinjamit, you get to jam with dozens of musicians. The core group consists of students from the Adult Education Centre’s instrument courses, but anyone who can play with their own instrument is welcome to join.</p><p>Duration: 1.5 hours</p><p>Free admission</p>" }, "short_description": { "fi": "Soittaminen on leikkiä... ja soittojamit erityisesti!", "sv": "Att spela instrument är som att leka... och särskilt under jamsessioner!", "en": "Playing is a joy... particularly at Soitinjamit!" }, "name": { "fi": "Työväenopiston Soitinjamit", "sv": "Arbetarinstitutets Jamsessioner", "en": "Adult education centre’s instrumental jam session – Soitinjamit" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/21E6437091FA46CB21412BEFF2CA4868/Tyovaenopiston_Soitinjamit", "sv": "http://www.vuotalo.fi/sv/evenemang/event/21E6437091FA46CB21412BEFF2CA4868/Arbetarinstitutets_Jamsessioner", "en": "http://www.vuotalo.fi/en/events/event/21E6437091FA46CB21412BEFF2CA4868/Adult_education_centre_s_instrumental_jam_session_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65496/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65393", "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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153680, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T13:15:16.794825Z", "last_modified_time": "2025-01-03T13:15:16.794846Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759669.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153680/?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-01-03T13:15:16.768708Z", "last_modified_time": "2025-01-23T11:15:10.639705Z", "date_published": null, "start_time": "2025-02-28T08:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan Wilhelmiina Halosen sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa opettaa ja soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Tuokion kesto on noin 45 min.</p><p>Kohderyhmä: 5–6-vuotiaat, 1–2-luokkalaiset <br>Ryhmän koko: max 30</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>", "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2 <br>Gruppstorlek: max 30</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>", "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2 <br>Group size: max 30</p><p>Pre-registration for groups: kultus.hel.fi</p>" }, "short_description": { "fi": "Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.", "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.", "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art." }, "name": { "fi": "Kalevalan päivän karjalainen taidehetki", "sv": "Kalevaladagens karelska konststund", "en": "Kalevala Day Karelian Art Moment" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevalan_paivan_karjalainen_taidehetki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevaladagens_karelska_konststund", "en": "http://www.vuotalo.fi/en/events/event/BBEBAC1D3798041A22DFE0D37ED2ADC8/Kalevala_Day_Karelian_Art_Moment" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65393/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65392", "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: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": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153679, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T13:15:16.640999Z", "last_modified_time": "2025-01-03T13:15:16.641017Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759668.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153679/?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-01-03T13:15:16.609683Z", "last_modified_time": "2025-01-23T11:15:10.546432Z", "date_published": null, "start_time": "2025-02-28T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.</p><p>Opimme myös, mikä kumma on Kalevala ja miten se liittyy karjalaiseen kulttuuriin.</p><p>Työpajassa kuullaan Wilhelmiina Halosen sävelmiä jouhikolla karjalaiseen tapaan. Tarinoista ja musiikista inspiroituneena teemme yhdessä taidetta hiilellä maalaten. Työpajassa opimme valmistamaan itse oman metsäisen hiilimaalin, jota käytetään oman taideteoksen tekemisessä.</p><p>Työpajassa opettaa ja soittaa karjalainen kuvataideopettaja Verna Kuntsi.</p><p>Tuokion kesto on noin 45 min.</p><p>Kohderyhmä: 5–6-vuotiaat, 1–2-luokkalaiset <br>Ryhmän koko: max 30</p><p>Ryhmille ennakkoilmoittautuminen osoitteessa kultus.hel.fi</p>", "sv": "<p>Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.</p><p>Vi får också veta vad Kalevala är för något och hur den hänger ihop med den karelska kulturen.</p><p>I verkstaden får vi höra Wilhelmiina Halonens melodier på en stråkharpa på karelskt vis. Inspirerade av berättelser och musik skapar vi tillsammans konst genom att måla med kol. I verkstaden lär vi oss själv tillverka målfärg av kol med skogskaraktär. Vi använder målfärgen när vi skapar våra egna konstverk.<br>I verkstaden lär ut och spelar den karelska bildkonstläraren Verna Kuntsi.</p><p>Stunden tar cirka 45 min.</p><p>Målgrupp: 5–6-åringar, elever på årskurserna 1–2 <br>Gruppstorlek: max 30</p><p>Förhandsanmälan för grupper på kultus.hel.fi</p>", "en": "<p>At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art.</p><p>We will also learn what Kalevala is and how it relates to Karelian culture.</p><p>In the workshop, we will hear Wilhelmiina Halonen’s melodies with a bowed harp, the Karelian way. Inspired by stories and music, we will make art together with charcoal. In the workshop, we will learn how to make our own woody charcoal paint, which we will use to make our own artwork.</p><p>The workshop is taught by Karelian art teacher Verna Kuntsi, who will also play music.</p><p>The duration of the art moment is approximately 45 minutes.</p><p>Target group: 5–6 years, grades 1–2 <br>Group size: max 30</p><p>Pre-registration for groups: kultus.hel.fi</p>" }, "short_description": { "fi": "Kalevalan päivän karjalaisessa taidehetkessä kuullaan jouhikkoa, ihmetellään feresiä ja tehdään itse taidetta.", "sv": "Under Kalevaladagens karelska konststund lyssnar vi på stråkharpa, förundras över en feresi och skapar själv konst.", "en": "At the Karelian art moment on Kalevala Day, we get to listen to a bowed harp, marvel at a feresi and make art." }, "name": { "fi": "Kalevalan päivän karjalainen taidehetki", "sv": "Kalevaladagens karelska konststund", "en": "Kalevala Day Karelian Art Moment" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/60489CE34442432D3B548178346FA3EB/Kalevalan_paivan_karjalainen_taidehetki", "sv": "http://www.vuotalo.fi/sv/evenemang/event/60489CE34442432D3B548178346FA3EB/Kalevaladagens_karelska_konststund", "en": "http://www.vuotalo.fi/en/events/event/60489CE34442432D3B548178346FA3EB/Kalevala_Day_Karelian_Art_Moment" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65392/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65394", "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: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": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153678, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T13:15:15.783203Z", "last_modified_time": "2025-01-03T13:15:15.783221Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761736.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153678/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-03T13:15:15.756349Z", "last_modified_time": "2025-01-23T11:15:09.543021Z", "date_published": null, "start_time": "2025-02-25T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Luennolla käsitellään Kalevalan merkitystä Gallen-Kallelan taiteelle.</p><p>Lisäksi esitellään Kalevala-aiheisia kuvataideteoksia myös muutamilta muilta suomalaistaiteilijoilta.</p><p>Kesto: 90 min<br>Kieli: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>Föreläsningen handlar om Kalevalas roll för Gallen-Kallelas konst och presenterar även bildkonstverk med Kalevalateman av några andra finländska konstnärer.</p><p>Längd: 90 min.<br>Språk: finska</p><p>Fritt inträde</p>", "en": "<p>The lecture discusses the significance of Kalevala for the art of Gallen-Kallela and also introduces Kalevala-themed works of art from a few other Finnish artists.</p><p>Duration: 90 min<br>Language: Finnish</p><p>Free of charge</p>" }, "short_description": { "fi": "Luennolla käsitellään Kalevalan merkitystä Gallen-Kallelan taiteelle.", "sv": "Föreläsningen handlar om Kalevalas roll för Gallen-Kallelas konst och presenterar även bildkonstverk med Kalevalateman av några andra finländska konstnärer.", "en": "The lecture discusses the significance of Kalevala for the art of Gallen-Kallela and also introduces Kalevala-themed works of art from a few other Finnish artists." }, "name": { "fi": "Tiistaimatinea: FM Tiina Ottela: Akseli Gallen-Kallela ja Kalevala-aiheet", "sv": "Tisdagsmatiné: FM Tiina Ottela: Akseli Gallen-Kallela ja Kalevala-aiheet", "en": "Tuesday Matinee: MA Tiina Ottela: Akseli Gallen-Kallela and Kalevala topics" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4D8D5D244ED96C2FFF5FCDB9E70310D8/Tiistaimatinea_FM_Tiina_Ottela_Akseli_Gallen-Kallela_ja_Kalevala-aiheet", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4D8D5D244ED96C2FFF5FCDB9E70310D8/Tisdagsmatin_FM_Tiina_Ottela_Akseli_Gallen-Kallela_ja_Kalevala-aiheet_", "en": "http://www.vuotalo.fi/en/events/event/4D8D5D244ED96C2FFF5FCDB9E70310D8/Tuesday_Matinee_MA_Tiina_Ottela_Akseli_Gallen-Kallela_and_Kalevala_topics" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65394/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agjsjyty6m", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytykm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytyoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytyry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjytywq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyty2q/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-11-13T09:04:36.306812Z", "last_modified_time": "2025-01-23T10:45:11.783389Z", "date_published": null, "start_time": "2025-02-24T11:00: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, "description": { "fi": "<p>Uudenmaan Muistiluotsin muistisairaille suunnatussa muistitreeniryhmässä harjoitetaan toimintakykyä muistia käyttäen ja aktivoiden.</p><p>Muistisairaan läheisten ryhmässä jaetaan käytännön kokemuksia sekä keskustellaan niistä asioista, jotka kulloinkin mietityttävät.</p><p>Muistitreeni- ja läheisten vertaisryhmä kokoontuvat samanaikaisesti, molemmissa ryhmissä on oma ohjaaja.</p><p>Kokoontuminen: maanantai 20.1., 24.2., 31.3., 28.4., 26.5. klo 12.30–14.30</p><p>Osallistuminen on maksutonta. Ennakkoilmoittautuminen.</p><p>Ilmoittautuminen ja tiedustelut: johanna.juola@espoonmuisti.fi tai 040 170 6771, asta.koskinen@espoonmuisti.fi tai 040 542 5253 </p>" }, "short_description": { "fi": "Uudenmaan Muistiluotsin muistisairaille suunnatussa muistitreeniryhmässä harjoitetaan toimintakykyä muistia käyttäen ja aktivoiden. Ryhmään pitää ilmoittautua." }, "name": { "fi": "Muistitreeniryhmä" }, "location_extra_info": { "fi": "Elina" }, "provider_contact_info": null, "info_url": null, "provider": { "fi": "Uudenmaan Muistiluotsi" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjsjyty6m/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65441", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163425, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T14:14:51.989681Z", "last_modified_time": "2025-01-22T14:14:51.989696Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163425/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-01-22T14:14:51.944940Z", "last_modified_time": "2025-01-22T14:14:52.093349Z", "date_published": null, "start_time": "2025-02-13T15:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa keväällä 2025!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.</p><p>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilla https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p><p>Vapaa pääsy</p>" }, "short_description": { "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa keväällä 2025!" }, "name": { "fi": "Kipinä X Stoa", "sv": "Kipinä X Stoa", "en": "Kipinä X Stoa" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/08939B1BEF1D6DBE9CA73CB8841F99DA/Kipina_X_Stoa", "sv": "http://www.stoa.fi/sv/evenemang/event/08939B1BEF1D6DBE9CA73CB8841F99DA/Kipina_X_Stoa", "en": "http://www.stoa.fi/en/events/event/08939B1BEF1D6DBE9CA73CB8841F99DA/Kipina_X_Stoa" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65441/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65239", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153375, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T15:14:14.526808Z", "last_modified_time": "2024-12-10T15:14:14.526824Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760142.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153375/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T15:14:14.500679Z", "last_modified_time": "2025-01-22T14:14:50.656434Z", "date_published": null, "start_time": "2025-02-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tease & Power-klubi tulee Stoaan! Vapaa pääsy, ilmoittaudu mukaan.</p><p>Klubilla näet burleskia, esittävää taidetta ja dragia. Illan juontajina toimivat suomeksi ja englanniksi Queen Rebecca, Awa Sowe ja Theodora Rex.</p><p>Klubi on esteetön ja tapahtumassa on kuvailutulkkaus sekä viittomakielen tulkkaus. Käytössä on myös hiljainen tila. Tervetuloa sädehtimään!<br> <br>Juonnot suomeksi ja englanniksi. Esityksessä suomenkielinen kuvailutulkkaus ja viittomakielen tulkkaus suomalaisella viittomakielellä.</p><p>Kesto: n. 2 tuntia.</p><p>Vapaa pääsy, muista varata paikka ennakkoon alla olevista linkeistä.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\">Varaa tavallinen istumapaikka tästä</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Varaa esteetön paikka / pyörätuolipaikka tästä</a></u></p><p>Ikäraja: 18+<br>Kieli: monikielinen</p>", "sv": "<p>Klubben Tease & Power kommer till Stoa!</p><p>På klubben får du se burlesk, scenkonst och drag. Värdar för kvällen på finska och engelska är Queen Rebecca, Awa Sowe och Theodora Rex. Klubben är tillgänglighetsanpassad och evenemanget kommer att syn- och teckenspråkstolkas. Det finns också ett tyst rum. Välkommen att stråla!<br> <br>Mellansnack på finska och engelska. Föreställningen syntolkas till finska och teckenspråkstolkas till finskt teckenspråk.<br>Längd: ca 2 timmar.</p><p>Åldersrekommendation: 18+<br>Flerspråkigt</p><p>Free admission, but remember to reserve your spot in advance using the links below.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\"><br>Reserve a standard seat here</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Reserve an accessible seat / wheelchair seat here</a></u></p>", "en": "<p>The Tease & Power club is coming to Stoa!</p><p>The club will bring to you burlesque, performance art and drag. The evening will be hosted in Finnish and English by Queen Rebecca, Awa Sowe and Theodora Rex.</p><p>The club is accessible, and the event has descriptive interpretation and sign language interpretation. The club also has a quiet space for the public. Come and shine with us!<br> <br>The show is hosted in Finnish and English. The performances are interpreted in description interpretation in Finnish and sign language interpretation in Finnish sign language.</p><p>Duration: 2 hours<br>Age Limit: 18+</p><p>Free admission, but remember to reserve your spot in advance using the links below.</p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSdgnjvb_iMN8r4ndz7FzP0OyO-Vth53nm9mqAQe3qCYJ7J41g/viewform\"><br>Reserve a standard seat here</a></u></p><p><u><a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfEAUWgJN4wbYEeSgpc4nSUIETQ8U7fsqhusD998x88hjJzhQ/viewform\">Reserve an accessible seat / wheelchair seat here</a></u></p>" }, "short_description": { "fi": "Tease & Power-klubi tulee Stoaan! Vapaa pääsy, ilmoittaudu mukaan.", "sv": "Klubben Tease & Power kommer till Stoa!", "en": "The Tease & Power club is coming to Stoa!" }, "name": { "fi": "Tease & Power (K18)", "sv": "Tease & Power (K18)", "en": "Tease & Power (18)" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_K18_", "sv": "http://www.stoa.fi/sv/evenemang/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_K18_", "en": "http://www.stoa.fi/en/events/event/90508C9091702EB393B2A488B47C3EF7/Tease_Power_18_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65239/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65238", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.justdancefinland.com/event-details-registration/point-break", "sv": "https://www.justdancefinland.com/event-details-registration/point-break", "en": "https://www.justdancefinland.com/event-details-registration/point-break" }, "price": { "fi": "12 €", "sv": "12 €", "en": "12 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153374, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-10T15:14:12.645360Z", "last_modified_time": "2024-12-10T15:14:12.645377Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759609.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153374/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-12-10T15:14:12.598365Z", "last_modified_time": "2025-01-22T14:14:45.942719Z", "date_published": null, "start_time": "2025-01-25T11:00:00Z", "end_time": "2025-01-25T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tervetuloa koko perheen katutanssitapahtumaan!</p><p>Tapahtuman aikana kilpaillaan kahdessa eri Breaking-kategoriassa. <br>3 vs 3 alle 17-vuotiaiden sarjassa sekä aikuisten 1 vs 1 7 to smoke-sarjassa.</p><p>Tapahtumaan voi osallistua seuraamalla tapahtumia tai osallistumalla tanssiringittelyyn ja kilpailuihin.</p><p>Loop the break & Just Dance Finland Presents:<br>POINT BREAK<br>Breaking Battles<br>at Stoa Helsinki</p><p>3vs3 (Kids/Juniors) 17 and under<br>Prize: 600€<br>1v1 (Top 16 - 7 to Smoke) 18+<br>Prize: 500€<br>Cypher Prelims for Both Categories</p><p>Host: Kissa Uolevi<br>Dj's: Pluto & Tauko<br>Judges: Siiri / Elmonaattori / Gombi</p><p><b>Lipunmyynti ja ilmoittautuminen</b> https://www.justdancefinland.com/event-details-registration/point-break</p>", "sv": "<p>Välkommen till ett streetdansevenemang för hela familjen!</p><p>Under evenemanget ordnas tävling i två olika Breaking-kategorier. <br>Serien 3 vs 3 för personer under 17 år och serien 1 vs 1 7 to smoke för vuxna.</p><p>Du kan delta i evenemanget genom att titta på eller delta i dansringarna och tävlingarna.</p>", "en": "<p>Welcome to a street dance event for the whole family!</p><p>The event includes competitions in two Breaking categories. <br>3 vs 3 in the under-17 series and 1 vs 1 in the adult’s 7 to smoke series.</p><p>You can participate in the event by following the events or by participating in dance circles and the competitions.</p><p>Loop the break & Just Dance Finland Presents:<br>POINT BREAK<br>Breaking Battles<br>at Stoa Helsinki</p><p>3vs3 (Kids/Juniors) 17 and under<br>Prize: 600€<br>1v1 (Top 16 - 7 to Smoke) 18+<br>Prize: 500€<br>Cypher Prelims for Both Categories</p><p>Host: Kissa Uolevi<br>Dj's: Pluto & Tauko<br>Judges: Siiri / Elmonaattori / Gombi</p>" }, "short_description": { "fi": "Tervetuloa koko perheen katutanssitapahtumaan!", "sv": "Välkommen till ett streetdansevenemang för hela familjen!", "en": "Welcome to a street dance event for the whole family!" }, "name": { "fi": "Point Break", "sv": "Point Break", "en": "Point Break" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1A88D585DE78AB8E7B1F568B23655AED/Point_Break_", "sv": "http://www.stoa.fi/sv/evenemang/event/1A88D585DE78AB8E7B1F568B23655AED/Point_Break_", "en": "http://www.stoa.fi/en/events/event/1A88D585DE78AB8E7B1F568B23655AED/Point_Break_" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65238/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d7he", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d77a/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-22T13:26:24.878166Z", "last_modified_time": "2025-01-22T13:26:24.878187Z", "date_published": null, "start_time": "2025-05-30T08:00:00Z", "end_time": "2025-05-30T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Espoon Mokulat ry järjestää Lippulaivan kirjastossa \"Opi suomea - toistoryhmän\" joka perjantai kello 11 alkaen. Ryhmässä opetellaan suomea kieltä toistojen avulla. Ryhmä on maksuton ja avoin kaikille. Ryhmä kokoontuu kokoustila Hytissä tai Kajuutassa. </p><p>Lisätietoja: espoonmokulat@gmail.com</p>", "sv": "<p>Espoo Mokulat rf ordnar \"Lär dig finska - repetitionsgruppen\" i Lippulaiva bibliotek varje fredag från klockan 11. I gruppen lär man sig finska genom repetition. Gruppen är gratis och öppen för alla. Gruppen träffas i mötesrummet Hytti eller Kajuutta. </p><p>För mer information: espoonmokulat@gmail.com</p>", "en": "<p>Espoo Mokulat Association organizes the \"Learn Finnish - Repetition Group\" at Lippulaiva Library every Friday starting at 11 a.m. In the group, participants learn Finnish through repetition. The group is free of charge and open to everyone. The group meets in the meeting room Hytti or Kajuutta. </p><p>For more information: espoonmokulat@gmail.com</p>" }, "short_description": { "fi": "Vertais keskusteluryhmä suomen kielen alkeita varten. ", "sv": "En kamratdiskussionsgrupp för nybörjare i finska språket.", "en": "A discussion group for beginners in the Finnish language." }, "name": { "fi": "Opi suomea toisto-ryhmässä.", "sv": "Lär dig finska i repetitionsgruppen.", "en": "Learn Finnish in the repetition group." }, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "provider": { "fi": "https://www.espoonmokulat.fi/", "sv": "https://www.espoonmokulat.fi/", "en": "https://www.espoonmokulat.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d7he/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d7ta", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d77a/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-22T13:26:23.792535Z", "last_modified_time": "2025-01-22T13:26:23.792560Z", "date_published": null, "start_time": "2025-05-23T08:00:00Z", "end_time": "2025-05-23T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Espoon Mokulat ry järjestää Lippulaivan kirjastossa \"Opi suomea - toistoryhmän\" joka perjantai kello 11 alkaen. Ryhmässä opetellaan suomea kieltä toistojen avulla. Ryhmä on maksuton ja avoin kaikille. Ryhmä kokoontuu kokoustila Hytissä tai Kajuutassa. </p><p>Lisätietoja: espoonmokulat@gmail.com</p>", "sv": "<p>Espoo Mokulat rf ordnar \"Lär dig finska - repetitionsgruppen\" i Lippulaiva bibliotek varje fredag från klockan 11. I gruppen lär man sig finska genom repetition. Gruppen är gratis och öppen för alla. Gruppen träffas i mötesrummet Hytti eller Kajuutta. </p><p>För mer information: espoonmokulat@gmail.com</p>", "en": "<p>Espoo Mokulat Association organizes the \"Learn Finnish - Repetition Group\" at Lippulaiva Library every Friday starting at 11 a.m. In the group, participants learn Finnish through repetition. The group is free of charge and open to everyone. The group meets in the meeting room Hytti or Kajuutta. </p><p>For more information: espoonmokulat@gmail.com</p>" }, "short_description": { "fi": "Vertais keskusteluryhmä suomen kielen alkeita varten. ", "sv": "En kamratdiskussionsgrupp för nybörjare i finska språket.", "en": "A discussion group for beginners in the Finnish language." }, "name": { "fi": "Opi suomea toisto-ryhmässä.", "sv": "Lär dig finska i repetitionsgruppen.", "en": "Learn Finnish in the repetition group." }, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "provider": { "fi": "https://www.espoonmokulat.fi/", "sv": "https://www.espoonmokulat.fi/", "en": "https://www.espoonmokulat.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d7ta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d77a", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d7he/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d7ta/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-22T13:26:07.055776Z", "last_modified_time": "2025-01-22T13:26:07.055792Z", "date_published": null, "start_time": "2025-01-24T09:00:00Z", "end_time": "2025-05-30T09: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, "description": { "fi": "<p>Espoon Mokulat ry järjestää Lippulaivan kirjastossa \"Opi suomea - toistoryhmän\" joka perjantai kello 11 alkaen. Ryhmässä opetellaan suomea kieltä toistojen avulla. Ryhmä on maksuton ja avoin kaikille. Ryhmä kokoontuu kokoustila Hytissä tai Kajuutassa. </p><p>Lisätietoja: espoonmokulat@gmail.com</p>", "sv": "<p>Espoo Mokulat rf ordnar \"Lär dig finska - repetitionsgruppen\" i Lippulaiva bibliotek varje fredag från klockan 11. I gruppen lär man sig finska genom repetition. Gruppen är gratis och öppen för alla. Gruppen träffas i mötesrummet Hytti eller Kajuutta. </p><p>För mer information: espoonmokulat@gmail.com</p>", "en": "<p>Espoo Mokulat Association organizes the \"Learn Finnish - Repetition Group\" at Lippulaiva Library every Friday starting at 11 a.m. In the group, participants learn Finnish through repetition. The group is free of charge and open to everyone. The group meets in the meeting room Hytti or Kajuutta. </p><p>For more information: espoonmokulat@gmail.com</p>" }, "short_description": { "fi": "Vertais keskusteluryhmä suomen kielen alkeita varten. ", "sv": "En kamratdiskussionsgrupp för nybörjare i finska språket.", "en": "A discussion group for beginners in the Finnish language." }, "name": { "fi": "Opi suomea toisto-ryhmässä.", "sv": "Lär dig finska i repetitionsgruppen.", "en": "Learn Finnish in the repetition group." }, "location_extra_info": null, "provider_contact_info": null, "info_url": null, "provider": { "fi": "https://www.espoonmokulat.fi/", "sv": "https://www.espoonmokulat.fi/", "en": "https://www.espoonmokulat.fi/" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d77a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65488", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kinetic-orchestra/", "sv": "https://www.lippu.fi/artist/kinetic-orchestra/", "en": "https://www.lippu.fi/artist/kinetic-orchestra/" }, "price": { "fi": "17 € / 20 €", "sv": "17 € / 20 €", "en": "17 € / 20 €" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163289, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T12:15:42.718716Z", "last_modified_time": "2025-01-22T12:15:42.718732Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764827.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163289/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-22T12:15:42.679363Z", "last_modified_time": "2025-01-22T13:14:58.912688Z", "date_published": null, "start_time": "2025-05-06", "end_time": "2025-05-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Spring Break on tanssiryhmä Kinetic Orchestran järjestämä festivaali, jonka keskiössä on liike. Vuonna 2025 festivaali tuo Stoaan kolme erilaista iltaa.</p><p>Ulkomaisen vierailuteoksen HITO koreografit ja esiintyjät, Akira Yoshida ja Chey Jurado, kuvaavat teoksessaan elämän suunnan löytämistä ja sen kadottamista.</p><p>Oskari Turpeisen ja Kinetic Orchestran yhteistuotanto Block - Maybe We Go Out on tanssiteos, jossa tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen kuvaten kaoottista ja odottavaa tilaa. Lavalla nähdään kolme ystävystä, jotka kelluskelevat kodissaan yrittäen poissulkea tulevan.</p><p>Mukana on myös Jarkko Mandelinin koreografia 9 Laajasalon opiston tanssilinjalle yhteisillassa Samuli Emeryn esittämän soolon We Do This. We Don’t Talk. kanssa.</p><p><b>Näytökset Stoassa:</b><br>ti 6.5. klo 19: Yhteisilta: 9 & We Do This. We Don’t Talk. <u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/BB360600F12622B28BDFA0C013812F45/Yhteisilta__9___We_Do_This__We_Don_t_Talk_\">Lue lisää</a></u></p><p>ke 7.5. klo 19: Akira Yoshida & Chey Jurado: HITO <br><u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida___Chey_Jurado__HITO\">Lue lisää</a></u></p><p>pe 9.5. klo 19: Oskari Turpeinen: Block - Maybe We Go Out<br><u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Lue lisää</a></u></p><p>la 10.5. klo 19: Oskari Turpeinen: Block - Maybe We Go Out<br><u><a href=\"https://www.stoa.fi/fi/tapahtumat/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Lue lisää</a></u></p><p>Festivaalin ohjelmaan kuuluu näytösten lisäksi työpajatoimintaa sekä tanssielokuvanäytäntöjä. Ohjelmisto kokonaisuudessaan osoitteessa: <u> https://springbreakdancefestival.com/ </u></p>", "sv": "<p>Spring Break är en festival arrangerad av dansgruppen Kinetic Orchestra med rörelse i fokus. År 2025 bjuder festivalen på tre olika kvällar med rörelse på Stoa.</p><p>I det utländska gästspelet HITO beskriver koreograferna och artisterna Akira Yoshida och Chey Jurado hur det är att hitta riktning i livet och förlora den.</p><p>Block – Maybe We Go Out, en samproduktion av Oskari Turpeinen och Kinetic Orchestra, är ett dansverk där dans, musik, akrobatik och teater smälter samman och skapar ett tillstånd av kaos och väntan. På scenen ser vi tre polare som flyter omkring i sitt hem och försöker stänga ute framtiden.</p><p>Dessutom bjuds det på Jarkko Mandelins koreografi 9 för danslinjen på Laajasalon opisto under en gemensam kväll med Samuli Emerys solo We Do This. We Don’t Talk.</p><p><b>Föreställningar:</b><br>Tis. 6.5 kl. 19: Gemensam kväll: 9 & We Do This. We Don’t Talk. <u><a href=\"https://www.stoa.fi/sv/evenemangen/event/BB360600F12622B28BDFA0C013812F45/Gemensam_kv_ll__9___We_Do_This__We_Don_t_Talk_\">Läs mer</a></u></p><p>Ons. 7.5 kl. 19: Akira Yoshida & Chey Jurado: HITO<br><u><a href=\"https://www.stoa.fi/sv/evenemangen/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida___Chey_Jurado__HITO\">Läs mer</a></u></p><p>Fre. 9.5 kl. 19: Oskari Turpeinen: Block – Maybe We Go Out<br><u><a href=\"https://www.stoa.fi/sv/evenemangen/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Läs mer</a></u></p><p>Lör. 10.5. kl. 19: Oskari Turpeinen: Block – Maybe We Go Out <br><u><a href=\"https://www.stoa.fi/sv/evenemangen/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Läs mer</a></u></p><p>Förutom föreställningarna innehåller festivalprogrammet verkstäder och visningar av dansfilmer. Det fullständiga programmet finns på www.springbreakdancefestival.com.</p>", "en": "<p>Spring Break is a contemporary dance festival organized by Kinetic Orchestra dance company, centered around movement art.</p><p>In 2025, the festival will bring three different evenings to Cultural Centre Stoa.</p><p>The international guest piece “HITO” features choreographer-performers Akira Yoshida and Chey Jurado, presenting a depiction of finding and losing the right direction in life.</p><p>The co-production of Oskari Turpeinen and Kinetic Orchestra, “Block - Maybe We Go Out”, is a piece where dance, music, acrobatics, and theater blend together to portray a chaotic and anticipatory state. On stage, three friends float in their home, trying to block out what’s to come.</p><p>The festival will also showcase Jarkko Mandelin's choreography \"9\" with Laajasalo Folk High School´s dance programme students, in a joint evening alongside solo \"We Do This. We Don’t Talk.\" performed by Samuli Emery.</p><p><b>Program at Stoa:</b><br>Tue 6.5. at 19: Double Bill: 9 & We Do This. We Don’t Talk.<br><u><a href=\"https://www.stoa.fi/en/events/event/BB360600F12622B28BDFA0C013812F45/Yhteisilta__9___We_Do_This__We_Don_t_Talk_\">Read more</a></u></p><p>Wed 7.5. at 19: Akira Yoshida & Chey Jurado: HITO <br><u><a href=\"https://www.stoa.fi/en/events/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida___Chey_Jurado__HITO\">Read more</a></u></p><p>Fri 9.5. at 19: Oskari Turpeinen: Block - Maybe We Go Out<br> <u><a href=\"https://www.stoa.fi/en/events/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Read more</a></u></p><p>Sat 10.5. at 19: Oskari Turpeinen: Block - Maybe We Go Out<br><u><a href=\"https://www.stoa.fi/en/events/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen__Block___Maybe_We_Go_Out\">Read more</a></u></p><p>In addition to performances, the festival program includes workshops and dance film screenings. The complete program can be found at www.springbreakdancefestival.com.</p>" }, "short_description": { "fi": "Spring Break on tanssiryhmä Kinetic Orchestran järjestämä festivaali, jonka keskiössä on liike. Vuonna 2025 festivaali tuo Stoaan kolme erilaista iltaa.", "sv": "Spring Break är en festival arrangerad av dansgruppen Kinetic Orchestra med rörelse i fokus. År 2025 bjuder festivalen på tre olika kvällar med rörelse på Stoa.", "en": "Spring Break is a contemporary dance festival organized by Kinetic Orchestra dance company, centered around movement art." }, "name": { "fi": "Spring Break Festival", "sv": "Spring Break Festival", "en": "Spring Break Festival" }, "location_extra_info": null, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/099626F86F250AD70A086FCF2D007F36/Spring_Break_Festival", "sv": "http://www.stoa.fi/sv/evenemang/event/099626F86F250AD70A086FCF2D007F36/Spring_Break_Festival", "en": "http://www.stoa.fi/en/events/event/099626F86F250AD70A086FCF2D007F36/Spring_Break_Festival" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65488/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27175, "next": "