Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=556
{ "meta": { "count": 31236, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=557", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=555" }, "data": [ { "id": "kulke:65514", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "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": 166729, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T15:15:26.289241Z", "last_modified_time": "2025-01-24T15:15:26.289259Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761014.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166729/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-24T15:15:26.256249Z", "last_modified_time": "2025-01-24T15:15:26.374142Z", "date_published": null, "start_time": "2025-04-09T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/E80FEA4F6F6F92BAAFDD30F849D7AA16/HOW_Radio_Global_Club_Nights" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Katja Thomson on vieraana HOW Radiossa.</p><p>Hän toimii musiikkikasvatuksen lehtorina sekä tutkijana Taideyliopiston Sibelius-Akatemian Music Education, Professionalism, and Eco-Politics -hankkeessa (EcoPolitics, 2021–2025).</p><p>Hän on työskennellyt laajasti musiikkikasvattajana ja taiteilijana kouluissa, yhtyeissä, teatterissa ja erilaisissa yhteisöllisissä ympäristöissä.</p><p>Katja on Euroopan konservatorioiden liiton (AEC) Empowering Artists as Makers in Society (ARTEMIS) -työryhmän puheenjohtaja, joka keskittyy monimuotoisuuteen, inkluusioon ja sukupuolten tasa-arvoon.</p><p>Vuonna 2021 hän väitteli tohtoriksi tutkimuksella, joka käsitteli yhtyeprojektia, johon osallistui pakolaistaustaisia ja maahanmuuttajataustaisia muusikoita sekä Sibelius-Akatemian opiskelijoita.</p><p>Katja asui Isossa-Britanniassa vuosina 1996–2011 ja on kehittänyt luovia ja osallistavia musiikkikasvatusohjelmia Suomessa, Isossa-Britanniassa, Brasiliassa ja Filippiineillä.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: www.helsinkiopenwaves.com</p>", "sv": "<p>Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.</p><p>Hon har arbetat omfattande som musikpedagog och artist i skolor, band, teatrar och olika samhällsmiljöer.</p><p>Katja är ordförande för arbetsgruppen Empowering Artists as Makers in Society (ARTEMIS) i det europeiska förbundet för konservatorier (AEC), som fokuserar på mångfald, inkludering och jämställdhet mellan könen.</p><p>År 2021 doktorerade hon med en undersökning om ett bandprojekt som involverade musiker med flykting- och invandrarbakgrund och studerande från Sibelius-Akademin.</p><p>Katja bodde i Storbritannien under åren 1996–2011 och har utvecklat kreativa och inkluderande program i musikpedagogik i Finland, Storbritannien, Brasilien och Filippinerna.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på www.helsinkiopenwaves.com</p>", "en": "<p>Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland.</p><p>She has worked extensively as a music educator and artist in schools, ensembes, theatre and various community settings. Katja is the chair of the Diversity, Inclusion and Gender Equality working group for Empowering Artists as Makers in Society (ARTEMIS) of the European Association of Conservatoires (AEC). <br>In 2021 she completed her doctoral dissertation on an ensemble project including musicians with refugee and immigrant background and students from the Sibelius Academy. <br>Katja lived in the UK 1996-2011 and has developed music education programmes promoting creative, participatory music practices in Finland, UK, Brazil and the Philippines. <br><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: www.helsinkiopenwaves.com</p>" }, "name": { "fi": "HOW Radio: Global Club Nights – Katja Thomson", "sv": "HOW Radio: Global Club Nights – Katja Thomson", "en": "HOW Radio: Global Club Nights – Katja Thomson" }, "short_description": { "fi": "Katja Thomson on vieraana HOW Radiossa.", "sv": "Katja Thomson är lektor i musikpedagogik och forskare i projektet Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021–2025) vid Konstuniversitetets Sibelius-Akademi.", "en": "Dr. Katja Thomson is a Lecturer in Music Education and a researcher in the project Music Education, Professionalism, and Eco-Politics (EcoPolitics, 2021-2025) at the Sibelius Academy of the University of the Arts Helsinki, Finland." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65514/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64736", "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": 153668, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-03T12:15:17.824633Z", "last_modified_time": "2025-01-03T12:15:17.824651Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759547.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153668/?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": "2025-01-03T12:15:17.798179Z", "last_modified_time": "2025-01-24T13:14:32.451928Z", "date_published": null, "start_time": "2025-02-28", "end_time": "2025-05-03", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Pumpulimuisto", "sv": "http://www.annantalo.fi/sv/evenemang/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Bomullsminnen", "en": "http://www.annantalo.fi/en/events/event/D7BDDEC01D14CDE861C70FB458CE5B3A/Cotton_Memories" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.</p><p>Pumpulimuisto on Pehmeät materiaalit nykytaiteessa -kurssin näyttely. Aalto-yliopiston taiteiden ja suunnittelun korkeakoulun Taiteen ja median laitoksen valinnaisiin opintoihin kuuluva kurssi - lempinimeltään Pehmikset - on ollut opinto-ohjelmassa vuodesta 2011 alkaen.<br> <br>Pumpulimuisto koostuu eri tekniikoin kurssin aikana toteutetuista teoksista. Opiskelijat ovat tutustuneet tekstiilimateriaalien ja -tekniikoiden käyttöön nykytaiteessa luentojen, taiteilijavierailujen ja oman taiteellisen työskentelyn avulla. Näyttelyn teokset ja teema syntyvät opiskelijaryhmän ideoiden pohjalta.</p><p>Vapaa pääsy</p><p><b>Näyttelyn avajaiset 27.2. klo 17-19 - Tervetuloa!</b></p>", "sv": "<p>Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.</p><p>Bomullsminnen är en utställning av Aalto-universitetets konst- och designskolas institution för konst och medias kurs Mjuka material inom samtidskonsten. Den valbara kursen med smeknamnet Mjuksaker har varit en del av studieprogrammet sedan 2011.<br> <br>De studerande har introducerats till användningen av textilmaterial och -tekniker i samtida konst genom föreläsningar, konstnärsbesök och eget konstnärligt arbete. Utställningens verk och tema bygger på studerandegruppens idéer.</p>", "en": "<p>Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials.</p><p>Cotton Memories is an exhibition of the Soft materials in contemporary art course at the Aalto University School of Arts, Design and Architecture. The course, which is part of optional studies and nicknamed Softies, has been in the study programme since 2011.<br> <br>Students have become familiar with the use of textile materials and techniques in contemporary art through lectures, artist visits and their own artistic work. The works and theme of the exhibition are based on the ideas of the student group.</p>" }, "name": { "fi": "Pumpulimuisto", "sv": "Bomullsminnen", "en": "Cotton Memories" }, "short_description": { "fi": "Kuitua, haituvaa, pehmeää, painuvaa – Pumpulimuisto on näyttely pehmeistä materiaaleista.", "sv": "Fiber, dun, mjukt, tryckande – Bomullsminnen är en utställning av mjuka material.", "en": "Fibre, fluff, soft, sinking – Cotton Memories is an exhibition about soft materials." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64736/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d244", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/espoo_le:agggfz7ao4/?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:p1235/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-01-15T13:50:20.831856Z", "last_modified_time": "2025-01-24T11:28:13.422669Z", "date_published": null, "start_time": "2025-05-30T08:00:00Z", "end_time": "2025-05-30T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Rouva Harris lähtee Pariisiin </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Pikkunaisia </p><p><br></p><p> -Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille. </p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S). </p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa. </p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus. </p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu! </p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä. </p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana. </p><p>-Vauvan äänet eivät häiritse elokuvan aikana! </p>", "sv": "<p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>", "en": "<p>Films: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>" }, "name": { "fi": "Baby Kino", "sv": "Baby Kino", "en": "Baby Kino " }, "short_description": { "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina! ", "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!", "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d3py", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?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:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/espoo_le:agggfz7ao4/?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:p1235/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d244/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-01-15T13:50:18.768298Z", "last_modified_time": "2025-01-24T11:28:07.938990Z", "date_published": null, "start_time": "2025-01-31T09:00:00Z", "end_time": "2025-05-30T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>ELOKUVAT: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Rouva Harris lähtee Pariisiin </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Pikkunaisia </p><p><br></p><p> -Babykino on tarkoitettu vanhemmille/hoitajille ja vauvoille. </p><p>-Elokuvat on valittu aikuisten kokoelmasta, mutta ne ovat ikärajaltaan sallittuja (S). </p><p>-Babykino on maksuton ja se järjestetään Ison Omenan kirjaston VOX-tilassa. </p><p>-Elokuvan äänet ovat normaalia hiljaisemmalla ja tilassa on himmeä valaistus. </p><p>-Tilassa on erilaisia sohvia ja tuoleja, sekä vesipiste ja mikro. Omat eväät on sallittu! </p><p>-Lastenhoitohuone löytyy tilan läheisyydestä kirjaston lastenosastolta neuvolan päädystä. </p><p>-Voit tuoda mukanasi oman alustan vauvalle, esimerkiksi kantokassin tai turvaistuimen, jossa vauvasi voi nukkua elokuvan aikana. </p><p>-Vauvan äänet eivät häiritse elokuvan aikana! </p>", "sv": "<p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino är för föräldrar/vårdare och bebisar.</p><p>Filmerna är valda från vuxenkollektionen men är tillåtna för alla åldrar (S).</p><p>Babykino är gratis och arrangeras i VOX-rummet på Iso Omena-biblioteket.</p><p>Ljudnivån på filmen är lägre än normalt, och belysningen i rummet är dämpad.</p><p>I rummet finns olika soffor och stolar, en vattenkran och en mikrovågsugn. Egna snacks är tillåtna!</p><p>Ett skötrum finns i närheten av bibliotekets barnavdelning vid rådgivningens ände.</p><p>Du kan ta med en egen underlag för din bebis, till exempel en bärväska eller bilstol, där din bebis kan sova under filmen.</p><p>Bebisens ljud stör inte under filmen!</p>", "en": "<p>Films: </p><p>31.1. Mamma Mia! </p><p>28.2. You Will Meet a Tall Dark Stranger </p><p>28.3. Mrs Harris goes to Paris </p><p>25.4. Bohemian Rhapsody </p><p>30.5. Little women </p><p><br></p><p>Babykino is intended for parents/caregivers and babies.</p><p>The movies are selected from the adult collection but are rated suitable for all ages (S).</p><p>Babykino is free of charge and takes place in the VOX room at Iso Omena Library.</p><p>The movie audio is quieter than usual, and the room has dim lighting.</p><p>The space features various sofas and chairs, a water station, and a microwave. You’re welcome to bring your own snacks!</p><p>A baby care room is located near the library's children's section at the end of the health center.</p><p>You can bring your own mat for the baby, such as a carrycot or car seat, where your baby can sleep during the movie.</p><p>Baby sounds won’t disturb the movie!</p>" }, "name": { "fi": "Baby Kino", "sv": "Baby Kino", "en": "Baby Kino " }, "short_description": { "fi": "Tervetuloa Babykinoon Ison Omenan kirjastoon joka kuukauden viimeisenä perjantaina! ", "sv": "Välkommen till Babykino på Iso Omena-biblioteket den sista fredagen i varje månad!", "en": "Welcome to Babykino at Iso Omena Library on the last Friday of each month!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d3py/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d4o4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:50.742171Z", "last_modified_time": "2025-01-24T11:23:04.370929Z", "date_published": null, "start_time": "2025-05-24T09:00:00Z", "end_time": "2025-05-24T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d424", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?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": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:50.930286Z", "last_modified_time": "2025-01-24T11:23:04.074973Z", "date_published": null, "start_time": "2025-05-31T09:00:00Z", "end_time": "2025-05-31T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d5he", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4cm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d4o4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d424/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-15T14:06:43.080952Z", "last_modified_time": "2025-01-24T11:22:52.488725Z", "date_published": null, "start_time": "2025-01-18T10:00:00Z", "end_time": "2025-05-31T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tule mukaan katsomaan lauantaileffaa nuortentila voxiin!</p>", "sv": "<p>Kom med och titta på lördagsfilmen i ungdomsutrymmet Vox!</p>", "en": "<p>Come and watch the Saturday movie at the youth space Vox!</p>" }, "name": { "fi": "Lasten lauantaileffa", "sv": "Barnens lördagsfilm", "en": "Kids’ Saturday Movie" }, "short_description": { "fi": "k-7 elokuvia suomeksi", "sv": "Filmer med åldersgräns 7 år på finska", "en": "Movies for children over 7 years old in Finnish" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5he/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65090", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 166311, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:42.194640Z", "last_modified_time": "2025-01-24T11:09:42.194658Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763841.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166311/?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-24T11:09:42.169987Z", "last_modified_time": "2025-01-24T11:09:42.265627Z", "date_published": null, "start_time": "2025-04-03T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_", "sv": "http://www.stoa.fi/sv/evenemang/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_", "en": "http://www.stoa.fi/en/events/event/A63D932EA4E66CAB32651DF12F3F483A/Alakoulukino_Vonkka_7_" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Vonkka perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin.</p><p>Elokuva kertoo siitä, miten maailman suurimmasta keksijästä, taikurista ja suklaatehtailijasta tuli tuntemamme, rakastettu Villi Vonkka.</p><p>Vonkka tarjoaa huumaavan sekoituksen taikaa ja musiikkia, kaaosta ja tunnetta, joka kerrotaan suurella sydämellä ja huumorilla. Timothée Chalamet esittää pääosaa tässä vastustamattoman vauhdikkaassa ja kekseliäässä laajakangasspektaakkelissa. Vonkalla on loputtomasti ideoita ja hän on päättänyt muuttaa maailmaa herkullinen suupala kerrallaan ja samalla todistaa, että parhaat asiat elämässä alkavat unelmasta – ja että joka onnekseen tapaa Villi Vonkan huomaa, että mikä tahansa on mahdollista.<br> <br>Ikäsuositus: K-7<br>Kesto: 117 min<br>Kieli: englanti, tekstitetty suomeksi</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset https://kultus.fi/fi/</p>" }, "name": { "fi": "Alakoulukino: Vonkka (7)", "sv": "Alakoulukino: Vonkka (7)", "en": "Alakoulukino: Vonkka (7)" }, "short_description": { "fi": "Vonkka perustuu Roald Dahlin ikonisen ja huippusuositun lastenkirjan Jali ja suklaatehdas hämmästyttäviin hahmoihin." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65090/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65091", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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": 166309, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:35.941028Z", "last_modified_time": "2025-01-24T11:09:35.941049Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763842.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166309/?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-24T11:09:35.898140Z", "last_modified_time": "2025-01-24T11:09:36.032991Z", "date_published": null, "start_time": "2025-03-10T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet", "sv": "http://www.stoa.fi/sv/evenemang/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet", "en": "http://www.stoa.fi/en/events/event/09164E4E23D369CF6DF6339A1BE4DBCB/Ylakoulukino_Suomeen_juurtuneet" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Shawn Huff ja Ervin Latimer Jr. ovat 1970-luvulla Suomeen saapuneiden afroamerikkalaisten koripallopelaajien (Leon Huff ja Ervin Latimer Sr.) lapsia.</p><p>He ovat kasvaneet suomalaisiksi yhteiskunnallisiksi ja poliittisiksi vaikuttajiksi isiensä periksiantamattomuuden, kunnianhimoisuuden ja rasististen lähtökohtien kautta.</p><p>Suomeen juurtuneet on dokumenttielokuva isien ja poikien välisistä suhteista ja suomalaisuuteen juurtumisesta. Pojat kanavoivat hiljaisten isien kokemukset toimintaan ja molemmat sukupolvet taistelevat tahoillaan tasa-arvoisemman maailman puolesta.</p><p>”Sä voit olla ihan mitä vaan.”<br> <br>Kesto: 1 h 52 min</p><p>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset www.kultus.fi</p>" }, "name": { "fi": "Yläkoulukino: Suomeen juurtuneet – asiantuntijavieraana Ervin Latimer Jr.", "sv": "Yläkoulukino: Suomeen juurtuneet", "en": "Yläkoulukino: Suomeen juurtuneet" }, "short_description": { "fi": "Shawn Huff ja Ervin Latimer Jr. ovat 1970-luvulla Suomeen saapuneiden afroamerikkalaisten koripallopelaajien (Leon Huff ja Ervin Latimer Sr.) lapsia." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65452", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?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": 166308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-24T11:09:30.599542Z", "last_modified_time": "2025-01-24T11:09:30.599560Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761440.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/166308/?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-24T11:09:30.545584Z", "last_modified_time": "2025-01-24T11:09:30.710086Z", "date_published": null, "start_time": "2025-02-18T09:00:00Z", "end_time": "2025-02-19T11:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Hulvaton_aurinkomatka_-elamystila_ja_tyopajat", "sv": "http://www.malmitalo.fi/sv/evenemang/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fantastisk_solresa_upplevelserum_och_workshoppar", "en": "http://www.malmitalo.fi/en/events/event/FA803EC1A99C90EC26EEB167E4C49764/Hupsansaa_ry_Fun-filled_holiday_in_the_sun_experiential_space_and_workshops" }, "location_extra_info": null, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!</p><p>Lähdetään talvilomalla Hulvattomalle aurinkomatkalle! Kimaltava meri kutsuu kalastamaan! Mitä aarteita merestä voisi onkia? Kokeile kalastusta veikeällä lötköpötkö-ongella, nappaakohan kala?</p><p>Aurinkomatkalla voi loikoilla pehmoisella hiekkarannalla, uiskennella jättimäisellä donitsilla ja nauttia aurinkovarjojen loisteesta. Aurinkomatkan pääsylippuun sisältyy pääsy rannalle, seilailua aalloilla, aarteiden ongintaa sekä askartelua!</p><p>Askartelutyöpajoissa tehdään mm. pomppivat auringot, sulaneet jäätelötötteröt ja veikeät kiikarit!</p><p>Loihditaan pomppivista ja värikkäistä auringoista pieni pallopeli, jolla voi harjoitella leikin kautta myös motorisia taitoja. Muotoillaan sulaneita jäätelötötteröitä ja valmistetaan värikkäistä kartioista veikeät kiikarit.</p><p>Askartelutyöpajoissa hyödynnetään kierrätysmateriaaleja.</p><p>Paikka: Kokoushuone 2 ja parvi</p><p>Vapaa pääsy!</p>", "sv": "<p>Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!</p><p>På sportlovet åker vi på en Fantastisk solresa! Det glittrande havet bjuder in till fiske! Vilka skatter kan vi meta upp ur havet? <br>Pröva på fiske med simnudelspö, nappar det?</p><p>På solresan kan man ligga och gona sig på en mjuk sandstrand, simma med en jättedonits och njuta av parasollernas färgglans. Entrébiljetten till solresan innehåller tillgång till stranden, segling på vågor, mete av skatter och pyssel!</p><p>I pysselworkshopparna lagar vi bland annat studsande solar, smälta glasstrutar och skojiga kikare!<br>Vi trollar fram ett litet bollspel av studsande och färgglada solar, med hjälp av vilket vi även kan öva våra motoriska färdigheter via lek. Vi formar smälta glasstrutar och lagar skojiga kikare av färgglada koner.</p><p>I pysselworkshopparna använder vi återvunna material.</p><p>Plats: Mötesrum 2 och balkongen</p><p>Fritt inträde!</p>", "en": "<p>Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!</p><p>Let’s go on a Fun-filled holiday in the sun during the winter break! The sparkling sea invites you to go fishing! What treasures might you catch from the sea? Try your hand at fishing with a fun pool-noodle pole! Will you catch a fish?</p><p>The sunny holiday lets you lounge on a soft sandy beach, splash around on a giant doughnut and enjoy the glow of sunshades. The sunny holiday admission ticket includes access to the beach, sailing on the waves, fishing for treasures and crafting!</p><p>The craft workshops include making bouncing suns, melted ice cream cones and funny binoculars!<br>We’ll have a small ball game with the bouncing and colourful suns, which you can use to practise motor skills through playing. We’ll sculpt melted ice cream cones and turn the colourful cones into whimsical binoculars.</p><p>The craft workshops will make use of recycled materials.</p><p>Location: Meeting room 2 and loft</p><p>Admission is free!</p>" }, "name": { "fi": "Hupsansaa ry: Hulvaton aurinkomatka -elämystila ja työpajat – Talvilomatekemistä", "sv": "Hupsansaa ry: Fantastisk solresa – upplevelserum och workshoppar – Sportlovsaktiviteter", "en": "Hupsansaa ry: Fun-filled holiday in the sun experiential space and workshops – Winter break activities" }, "short_description": { "fi": "Tervetuloa ti 18.2. ja ke 19.2. klo 11–13 Malmitalon talviloman askartelupajoihin ja aarteiden ongintaan!", "sv": "Välkommen till Malms kulturhus ti 18.2. och onsdag 19.2. kl. 11–13 till sportlovets pysselworkshoppar och att meta skatter!", "en": "Join us on Tue, 18 Feb and Wed, 19 Feb, from 11:00 to 13:00 for craft workshops and fishing for treasure during winter break at Malmitalo!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65452/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d5ta", "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:agggfz66ky/?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:agggfz66qa/?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/yso:p11617/?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:p6062/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6ai/?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": [ { "id": 151380, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-06-07T11:33:18.307680Z", "last_modified_time": "2024-06-07T11:33:18.307701Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg", "name": "Kuva: Unsplash", "cropping": "106,0,534,427", "photographer_name": "", "alt_text": "Kuvassa musta konsoliohjain", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-24T10:17:34.973942Z", "last_modified_time": "2025-01-24T10:17:34.973956Z", "date_published": null, "start_time": "2025-05-20T13:00:00Z", "end_time": "2025-05-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": { "fi": "Messi", "sv": "Messi", "en": "Messi" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>", "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>", "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>" }, "name": { "fi": "K-12 nuortenilta", "sv": "K-12 Ungdomarnas kväll", "en": "K-12 youth night" }, "short_description": { "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.", "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.", "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d5ta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d6ai", "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:agggfz66ky/?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:agggfz66qa/?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/yso:p11617/?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:p6062/?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:agmk23d5ta/?format=api" } ], "images": [ { "id": 151380, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-06-07T11:33:18.307680Z", "last_modified_time": "2024-06-07T11:33:18.307701Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/alexey-savchenko-k4Akpt5-Sfk-unsplash.jpg", "name": "Kuva: Unsplash", "cropping": "106,0,534,427", "photographer_name": "", "alt_text": "Kuvassa musta konsoliohjain", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151380/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-01-24T10:17:28.861047Z", "last_modified_time": "2025-01-24T10:17:28.861063Z", "date_published": null, "start_time": "2025-01-28T14:00:00Z", "end_time": "2025-05-20T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": null, "location_extra_info": { "fi": "Messi", "sv": "Messi", "en": "Messi" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa. Voit pelata konsoleilla, koneilla, lautapelejä tai puuhailla muuta mukavaa. Välillä vinkkaamme kirjoja tai teemme sanataidetta yhdessä.</p>", "sv": "<p>Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans. Ni kan spela tv-spel, brädspel eller göra andra roliga saker. Då och då läser vi böcker eller gör ordkonst tillsammans.</p>", "en": "<p>Welcome to the K-12 Youth Night at the Messi to spend some time together. You can play videogames, board games or do other fun things. Every once in a while we'll read books or do some word art together.</p>" }, "name": { "fi": "K-12 nuortenilta", "sv": "K-12 Ungdomarnas kväll", "en": "K-12 youth night" }, "short_description": { "fi": "Tervetuloa K-12 Nuorten iltaan Messiin viettämään aikaa.", "sv": "Välkommen till K-12 Ungdomarnas kväll på Messi för att tillbringa lite tid tillsammans.", "en": "Welcome to the K-12 Youth Night at the Messi to spend some time together. " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6ai/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23d6nm", "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", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "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:05.852783Z", "last_modified_time": "2025-01-24T08:29:51.610422Z", "date_published": null, "start_time": "2025-05-21T11:30:00Z", "end_time": "2025-05-21T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "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" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6nm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "name": "", "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, "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" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Liikkuva Espoo-info Lippulaivan kirjasto", "sv": "Mobila Esbo-info Lippulaiva biblioteket", "en": "Mobile Espoo Info Lippulaiva Library" }, "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." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23d6zq/?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", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759432.jpg", "name": "", "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, "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" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Kristina Laine: Taidenaamiot – Ajatukset Artefakteiksi", "sv": "Kristina Laine: Konstmasker – Tankar till artefakter", "en": "Kristina Laine: Art Masks – From Ideas to Artefacts" }, "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." }, "@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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761780.jpg", "name": "", "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, "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_" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "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" }, "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?" }, "@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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761777.jpg", "name": "", "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, "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" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Ihmeiden äärellä – Keskiviikkokino", "sv": "Ihmeiden äärellä – Onsdagskino", "en": "Miracles Club – Wednesday Cinema" }, "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." }, "@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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760175.jpg", "name": "", "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, "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_" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Parvet (12) – Keskiviikkokino", "sv": "Flockar (12) – Onsdagskino", "en": "Parvet (12) – Wednesday cinema" }, "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." }, "@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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760174.jpg", "name": "", "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, "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_" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Yläkoulukino: Parvet (12)", "sv": "Yläkoulukino: Parvet (12)", "en": "Yläkoulukino: Parvet (12)" }, "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." }, "@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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759144.jpg", "name": "", "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, "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_" }, "location_extra_info": null, "provider_contact_info": null, "provider": 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>" }, "name": { "fi": "Työväenopiston Soitinjamit", "sv": "Arbetarinstitutets Jamsessioner", "en": "Adult education centre’s instrumental jam session – Soitinjamit" }, "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!" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65497/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }