Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=65
{ "meta": { "count": 21736, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=66", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=64" }, "data": [ { "id": "espoo_le:agno52lisq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494109, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-05T13:34:15.416410Z", "last_modified_time": "2025-12-05T13:34:15.416426Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/08c7e94f-f774-40f1-a7ea-fde8ac4133bb.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "SuZan Alakas tapahtuman mainoksessa", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494109/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-05T13:34:40.941622Z", "last_modified_time": "2025-12-05T13:34:40.941642Z", "date_published": null, "start_time": "2026-01-12T09:00:00Z", "end_time": "2026-01-12T10: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, "short_description": { "fi": "Liity mukaan tapahtumaan ”Kestävä myynti: mitä, miksi, miten” ja opi, kuinka kestävä myynti voi kasvattaa yrityksesi liikevaihtoa, mainetta ja suosituksia. ", "en": "Join us for “Sustainable Selling: What, Why, How” to learn how sustainable selling can grow your company’s revenue, reputation and referrals. " }, "info_url": null, "description": { "fi": "<p>Liity mukaan tapahtumaan ”Kestävä myynti: mitä, miksi, miten” ja opi, kuinka kestävä myynti voi kasvattaa yrityksesi liikevaihtoa, mainetta ja suosituksia. Esittelijänä Suzan Alakas Norlumen Sales Trainingista. </p>", "en": "<p>Join us for “Sustainable Selling: What, Why, How” to learn how sustainable selling can grow your company’s revenue, reputation and referrals. Presented by Suzan Alakas from Norlumen Sales Training. </p>" }, "name": { "fi": "Kestävä myynti: mitä, miksi, miten/ tapahtuma on englannin kielinen", "en": "Sustainable Selling: What, Why, How" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "provider": { "fi": "Suzan Alakas from Norlumen Sales Training. ", "en": "Suzan Alakas from Norlumen Sales Training. " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno52lisq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn6ceeyi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66tq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66w4/?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:p2901/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd5mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd5ym/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6oy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd6ze/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7dy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cd7y4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceaqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cea3i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebgm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cebqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceb4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cechy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cecsy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cec5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6cedii/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceduy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceea4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceelu/?format=api" } ], "images": [ { "id": 150450, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-01-17T07:59:13.420035Z", "last_modified_time": "2024-01-17T07:59:13.420055Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/shakki.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "shakkinappuloita pelilaudalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-12-02T12:04:10.465231Z", "last_modified_time": "2025-12-05T12:54:05.938353Z", "date_published": null, "start_time": "2026-01-08T15:00:00Z", "end_time": "2026-05-28T15: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, "short_description": { "fi": "Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. ", "sv": "Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.", "en": "The club is for players who already know the basics. Guidance available." }, "info_url": null, "description": { "fi": "<p>Klubi on tarkoitettu jo alkeet osaaville pelaajille. Opastusta saatavilla. Tervetuloa!</p>", "sv": "<p><br></p><p>Klubben är för spelare som redan kan grunderna. Vägledning finns tillgänglig.</p>", "en": "<p>The club is for players who already know the basics. Guidance available.</p>" }, "name": { "fi": "Shakkiklubi", "sv": "Schackklubb ", "en": "Chess Club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pointti", "sv": "Pointti", "en": "Pointti" }, "provider": { "fi": "Sellon kirjasto", "sv": "Sellobiblioteket", "en": "Sello Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn6ceeyi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnntkqnye", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqjbu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqjke/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqjsm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqj3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqkdi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqkky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqksu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqk2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqlku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqls4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkql24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmcq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmj4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqmzu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnbe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqniq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno4rclhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agno4rcmum/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoajs7gum/?format=api" } ], "images": [ { "id": 1490710, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-09-10T07:15:40.691205Z", "last_modified_time": "2025-09-10T07:15:40.691220Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/7748b1a8-abc8-43d7-b337-f8bfc73f5ba6.png", "name": "", "cropping": "218,0,782,563", "photographer_name": "eenevski", "alt_text": "Pöydällä paperi, jossa lukee \"Let's Discuss\". Paper with a text \"Let's Discuss\".", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490710/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-01T11:13:04.313604Z", "last_modified_time": "2025-12-05T11:13:46.845088Z", "date_published": null, "start_time": "2026-01-07T16:00:00Z", "end_time": "2026-05-27T16: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, "short_description": { "fi": "Sinulle, joka haluat pitää englannin kielen taitosi ajan tasalla, keskustella kiinnostavista aiheista ja viettää aikaa rennossa ilmapiirissä.", "sv": "Håll dina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.", "en": "Keep your English language skills up to date, discuss interesting topics with like-minded individuals, and socialise in a relaxing environment." }, "info_url": null, "description": { "fi": "<p>Englanninkielinen keskusteluryhmä on tarkoitettu niille, jotka haluavat pitää englannin kielen taitonsa ajan tasalla, keskustella kiinnostavista aiheista samanhenkisten ihmisten kanssa ja viettää aikaa rennossa ilmapiirissä.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Den engelskspråkiga diskussionsgruppen är för personer som vill hålla sina engelskkunskaper aktuella, diskutera intressanta ämnen med likasinnade och umgås i en avslappnad miljö.</p><p><br></p><p>#HelloEspoo</p>", "en": "<p>The English discussion group is for people who want to keep their English language skills up to date, discuss interesting topics with like-minded individuals, and socialise in a relaxing environment. The only rule is that we keep the conversation in English. We meet in once per week in Tapiola library.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Englanninkielinen keskusteluryhmä", "sv": "Engelskspråkig diskussionsgrupp", "en": "English Discussion Group" }, "provider_contact_info": null, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnntkqnye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67257", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?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: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, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491324, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:13:45.145784Z", "last_modified_time": "2025-11-07T09:13:45.145799Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772167.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491324/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T09:13:44.946637Z", "last_modified_time": "2025-12-04T16:12:51.601710Z", "date_published": null, "start_time": "2025-12-04", "end_time": "2026-01-10", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.", "sv": "Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.", "en": "The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION", "en": "http://www.vuotalo.fi/en/events/event/0746507D1ED34BAFE15991FC978B1453/REFRACTION" }, "description": { "fi": "<p>Valitut taideteokset ovat taiteilijoilta Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard, sekä Greta Granö ja gallery of light and shadow.</p><p>REFRACTION (Refraktio) on valoa ja muistia käsittelevä ryhmänäyttely, jonka on kuratoinut Yasmin Ibrahim. Vuoden pimeimpänä kuukautena palaamme valossa kylpeviin muistoihin ja niiden vaihtumiseen, muuttumiseen ja pysähtymiseen. Teokset liikkuvat henkilökohtaisen ja julkisen välillä ja käyttävät valoa metaforisesti ja kirjaimellisesti heijastamaan omia kokemuksiamme ja sitä, miten ne näyttäytyvät ulkomaailmalle.</p><p>Näyttely on ammentanut inspiraatiota Yasmin Ibrahimin omasta suhteesta valoon pohjoiselle pallonpuoliskolle globaalista etelästä saapuneena maahanmuuttajana. Kukin työ esittelee valon haurautta, sitä kuinka valo muuttaa muistia ja rikkoo ja vakiinnuttaa sen.</p><p>Valittujen teosten tekijät ovat Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero ja Ozeya Vineyard ja gallery of light and shadow. Jokainen työ tarkastelee valon käyttöä ja suhdettamme siihen, sekä sitä mitä meidän pitäisi valaista. Kuraattorina Ibrahim on kiinnostunut Suomessa varjoon jääneiden taiteilijoiden valon kuvauksista ja käytöstä sekä muistin kyvystä liikuttaa tai jähmettää meidät ja ottaa meidät mukaan tai sulkea meidät ulkopuolelle.</p><p>Tervetuloa avajaisiin Vuotaloon 4.12. klo 18.30–20.00!</p><p>Kuva credit: Still from “Stepping into the Light\"<br>Legendary Overall Mother Lola Gorgeous Gucci <br>Xclusive Lanvin House Ball 2023.</p>", "sv": "<p>Konstnärer: Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Ozeya och Aero Vineyard, och Greta Granö och gallery of light and shadow.</p><p>REFRACTION är en grupputställning om ljus och minnen, kuraterad av Yasmin Ibrahim. Under årets mörkaste månad minns vi minnen fyllda av ljus, och hur de skiftar, förändras och stagnerar. I rörelsen mellan det personliga och det offentliga används ljuset på ett metaforiskt och bokstavligt sätt för att reflektera över vad vi upplever och hur det porträtteras för omvärlden.</p><p>Med inspiration från Yasmin Ibrahims egen relation till ljuset som en invandrare från den globala södern som nu bor på norra halvklotet visar alla de utvalda konstverken hur skört ljuset är, hur det förändrar minnet och vad som stör och stabiliserar det.</p><p>De utvalda konstverken är skapade av Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero och Ozeya Vineyard samt gallery of light and shadow. Varje verk utforskar hur vi använder ljus, vår relation till ljuset och vad vi borde belysa. Som kurator är Ibrahim intresserad av hur underrepresenterade konstnärer i Finland skildrar och använder ljus, och hur minnen kan förflytta sig, frysa, stänga ut eller inkludera oss.</p><p>Välkommen till invigningen på Nordhuset den 4 december kl. 18.30–20.00!</p><p>Med stöd av Catalysti ry och TAIKE.</p>", "en": "<p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and Greta Granö and a gallery of light and shadow.</p><p>REFRACTION is a group exhibition curated by Yasmin Ibrahim on light and memory. During the darkest month of the year, we remember memories engulfed in light, how they shift, change and become stagnant. Moving between the personal and the public, light is used in a metaphoric and literal sense to reflect what we experience and how it is portrayed to the outside world.</p><p>Inspired by Yasmin Ibrahim’s own relationship to light as an immigrant from the Global South living in the Northern Hemisphere, each selected artwork shows the fragility of light, how it changes memory, what disrupts and settles it.</p><p>The artworks selected are by Landys Roimola, Shubhangi Singh, Lada Suomenrinne, Aero and Ozeya Vineyard, and a gallery of light and shadow. Each piece looks at the use of light, our relationship to it, and what should be shed light on. As a curator, Ibrahim is interested in the depictions and usage of light by underrepresented artists in Finland, and how memory can move, freeze, exclude or include us.</p><p>Welcome to the opening at Vuotalo on 4.12 between 18:30-20:00!<br>Supported by Catalysti ry and TAIKE.</p><p>Photo credit: Still from “Stepping into the Light\"</p><p>Legendary Overall Mother Lola Gorgeous Gucci<br> <br>Xclusive Lanvin House Ball 2023.</p>" }, "name": { "fi": "REFRACTION – Kuratoinut Yasmin Ibrahim", "sv": "REFRACTION – Kurerad av Yasmin Ibrahim", "en": "REFRACTION – Curated by Yasmin Ibrahim" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67257/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:45307/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:de728393-b30b-48c4-aa49-e3814ac980d1/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_youtube", "link": "https://Youtube.com", "language": "fi" }, { "name": "extlink_instagram", "link": "https://Instagram.com", "language": "fi" }, { "name": "extlink_tumblr", "link": "https://Tumblr.com", "language": "fi" } ], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=4122025_JIIRI_Sprint_retro_ja_review_-_Alitapahtuma2128169567" }, "description": { "fi": "Hintatietojen kuvaus suomeksi" }, "price": { "fi": "15" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1494096, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-04T15:49:34.041592Z", "last_modified_time": "2025-12-04T15:49:34.041611Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/b64288a3-3a8e-f011-b4cc-000d3ab33a80", "name": "Kuvateksti", "cropping": "", "photographer_name": "Kuvaajan nimi", "alt_text": "Kuvan Alt-teksti", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494096/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helsinki:aflfbatkwe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6165/?format=api" } ], "created_time": "2025-12-04T07:13:36.453930Z", "last_modified_time": "2025-12-04T15:49:34.627964Z", "date_published": "2025-12-04T07:07:38Z", "start_time": "2025-12-31T06:00:00Z", "end_time": "2025-12-31T21:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 15, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 500, "minimum_attendee_capacity": 15, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "JIIRI Sprint retro ja review - Alitapahtuma" }, "info_url": null, "description": { "fi": "<div><div>JIIRI Sprint retro ja review -Alitapahtuma</div><div><div><div><div><div><div><div><div><div><br> </div></div></div></div></div></div></div></div></div></div>" }, "name": { "fi": "4.12.2025 JIIRI Sprint retro ja review - Alitapahtuma" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapahtumapaikan lisätiedot - Suomi" }, "provider": { "fi": "Annantalo (KYMP)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:d5f44420-5f04-4570-ae8a-7e73eda65f12/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnotqwcee", "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:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwava/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbgq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwbu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwb3y/?format=api" } ], "images": [ { "id": 1494090, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T13:05:49.978934Z", "last_modified_time": "2025-12-04T13:05:49.978948Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/baafaf82-fb8a-4fe9-8ac5-659901285934.jpg", "name": "", "cropping": "0,200,1200,1400", "photographer_name": "", "alt_text": "Maisema ja linnut", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494090/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-04T13:17:42.065505Z", "last_modified_time": "2025-12-04T13:17:42.065524Z", "date_published": null, "start_time": "2026-01-30T15:30:00Z", "end_time": "2026-05-08T15: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, "short_description": { "fi": "Tarinoiden lukeminen lapsille espanjaksi" }, "info_url": null, "description": { "fi": "<p>Tarinoiden lukeminen lapsille espanjaksi</p>" }, "name": { "fi": "Cuentacuentos" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Kirjasto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnotqwcee/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22s2hi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventCancelled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "http://www.instagram.com/tapiolankirjasto", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22syx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szpy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sz3m/?format=api" } ], "images": [ { "id": 1490255, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-16T08:48:48.109280Z", "last_modified_time": "2025-06-16T08:48:48.109294Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/36b381d6-d08e-493e-8924-579bc40511c3.jpg", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "Taru Mäkelä", "alt_text": "Kuvassa kuvaelementteinä neulontaa, pienoismallin rakentamista ja piirtämistä, keskellä kuva miehestä, joka pitää käsissään kirjaa ja katsoo kameraan hymyillen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-16T09:00:19.849830Z", "last_modified_time": "2025-12-04T12:30:33.357044Z", "date_published": null, "start_time": "2025-09-09T09:00:00Z", "end_time": "2025-12-09T12: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, "short_description": { "fi": "Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä.", "sv": "Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.", "en": "Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories." }, "info_url": null, "description": { "fi": "<p>Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä. Tule kuuntelemaan ääneen luettuja katkelmia valituista teoksista vapaalla tyylillä - jos kaipaat käsillesi tekemistä, pakkaa piirustusvälineet tai neuletyö mukaasi, tai vaikkapa Warcraft-projektisi. Piirustusvälineitä saat käyttöösi myös kirjastolta.</p><p>Tarinoimassa mukana pitkän linjan kirjastopedagogimme Mikko Airaksinen</p><p>Kuva: Taru Mäkelä</p>", "sv": "<p>Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.</p><p>En bibliotekarie läser högt. Du kan samtidigt handarbeta</p><p>Evenemanget är på finska.</p>", "en": "<p>Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories.</p><p>A librarian reads aloud. You can do handicrafts at the same time.</p><p>The event is in Finnish.</p>" }, "name": { "fi": "Peruttu / Tarinatapaaminen", "sv": "Berättelseträff", "en": "Story gathering" }, "provider_contact_info": null, "location_extra_info": { "fi": "Tapiolan kirjaston tapahtumatila Heikki", "sv": "Hagalunds bibliotek, Evenemangslokalen Heikki", "en": "Tapiola Library, event space Heikki" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s2hi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67237", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493948, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-28T13:12:36.478654Z", "last_modified_time": "2025-11-28T13:12:36.478671Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780055.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493948/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-28T13:12:36.373200Z", "last_modified_time": "2025-12-04T12:12:44.884230Z", "date_published": null, "start_time": "2025-12-16T15: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, "short_description": { "fi": "Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut", "en": "http://www.malmitalo.fi/en/events/event/3E5D5DE708F3DA64361750A95E7E5AA9/Kauneimmat_joululaulut" }, "description": { "fi": "<p>Kauneimmat joululaulut siivittävät kuulijansa pehmeästi kohti joulun riemastuttavaa aikaa.</p><p>Yhteiseen jouluperinteeseen ja kauneimpiin joululauluihin johdattamassa Heidi Visa, laulu, Sirja Puurtinen, viulu, sekä kanttori Mari Torri-Tuominen, muusikot Antti Vuori ja pastori Markku Arola Malmin seurakunnasta.</p><p>Vapaa pääsy!</p><p>Kesto 1 t</p>" }, "name": { "fi": "Kauneimmat joululaulut", "sv": "Kauneimmat joululaulut", "en": "Kauneimmat joululaulut" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67237/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnosho2jm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshouby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoul4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshouwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshou7e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshovh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshovrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshov3a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowea/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshowy4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxkq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoxuq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshox5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoyie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoyra/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshoy24/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozdy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoshozwq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnosho2ae/?format=api" } ], "images": [ { "id": 1490544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-27T09:41:09.795605Z", "last_modified_time": "2025-08-27T09:41:09.795621Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/eca7a27f-ae0c-4f6b-9806-c8f3b48cec55.jpg", "name": "", "cropping": "214,0,1066,853", "photographer_name": "Kuva Ingrid und Stefan Melichar Pixabaystä", "alt_text": "Kuvassa on eri värisiä noppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490544/?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-12-04T10:36:19.583464Z", "last_modified_time": "2025-12-04T10:36:19.583484Z", "date_published": null, "start_time": "2026-01-07T13:30:00Z", "end_time": "2026-05-27T15: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, "short_description": { "fi": "Pöytäroolipelikerho", "sv": "Bordrollspelklubb", "en": "Tabletop role-playing club" }, "info_url": null, "description": { "fi": "<p>Jos fantasiaseikkailut ja pelit kuten Dungeons & Dragons ovat sinun mieleen niin Nuortentila Pointti tarjoaa mahdollisuuden tutustua ja kokeilla pöytäroolipelaamista. Kerhoporukka kokoontuu keskiviikkoisin yhteisen pöydän ääreen suunnittelemaan ja pelaamaan fantasiaroolipelejä. Sinulla ei tarvitse olla aikaisempaa kokemusta pelaamisesta tai pelinvetämisestä. Toiminta on maksutonta.</p><p> </p><p>Pointissa on myös MtG korttipelailua satunnaisesti pitkin viikkoa. Lisätiedot joko paikanpäältä tai sähköpostilla: ville.rusanen@espoo.fi</p><p>Toiminta on suunnattu 13 - 25 vuotiaille.</p><p> </p><p>Tervetuloa mukaan!</p>", "sv": "<p>Om du gillar fantasyäventyr och spel som Dungeons & Dragons erbjuder ungdomscentret Pointti dig möjligheten att lära dig mer om och prova på rollspel. Klubben träffas på onsdagar runt ett gemensamt bord för att planera och spela fantasyrollspel. Du behöver inte ha någon tidigare erfarenhet av att spela eller leda spel. Aktiviteten är gratis.</p><p><br></p><p>Pointti erbjuder också MtG-kortspel ibland under veckan. För mer information, fråga på plats eller skicka ett e-postmeddelande till: ville.rusanen@espoo.fi</p><p>Aktiviteterna riktar sig till ungdomar i åldern 13–25 år.</p><p><br></p><p>Välkommen!</p>", "en": "<p>If you like fantasy adventures and games such as Dungeons & Dragons, youth center Pointti offers you the opportunity to learn about and try tabletop role-playing games. The club meets on Wednesdays around a shared table to plan and play fantasy role-playing games. You don't need to have any previous experience of playing or running games. The activity is free of charge.</p><p><br></p><p>Pointti also offers MtG card games occasionally throughout the week. For more information, ask at the venue or send an email to: ville.rusanen@espoo.fi</p><p>The activities are aimed at 13- to 25-year-olds.</p><p><br></p><p>Welcome!</p>" }, "name": { "fi": "Pöytäroolipelikerho", "sv": "Bordrollspelklubb", "en": "Tabletop role-playing club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Mörkö huone", "sv": "Mörkä i rummet", "en": "Mörkö room" }, "provider": { "fi": "Nuori Espoo", "sv": "Nuori Espoo", "en": "Nuori Espoo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnosho2jm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnorl7674", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-08T07:45:06.398951Z", "last_modified_time": "2025-10-08T07:45:06.398966Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5447785-399b-4a30-8c8f-49c0a38675a6.png", "name": "Kirjastokaveri.", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "Viisi erilaista piirrettyä ihmishahmoa. Eri-ikäisiä, eri kulttuuritaustoista.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-04T08:32:09.443725Z", "last_modified_time": "2025-12-04T08:32:09.443742Z", "date_published": null, "start_time": "2025-12-05T14:00:00Z", "end_time": "2025-12-05T17: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, "short_description": { "fi": "Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!", "en": "Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language. " }, "info_url": null, "description": { "fi": "Tervetuloa kirjastoon!\nTapaa kirjastokaveri omalla kielelläsi!<p><br></p><p>Haluaisitko tulla kirjastoon, mutta se tuntuu vaikealta koska et osaa kieltä? Vapaaehtoiset kirjastokaverimme auttavat sinua omalla kielelläsi!</p><p>Ei ennakkoilmoittautumista. Lämpimästi tervetuloa!</p><p><br></p><p><br></p><p>BENGALIN-, HINDIN-, NEPALIN- JA PUNJABINKIELINEN KIRJASTOKAVERI TAVATTAVISSA:</p><p><br></p><p><strong>Joka torstai klo 17–19:</strong></p><ul><li>torstaisin 23.10 - 18.12.2025.</li><li>HUOM! to 4.12. aika siirretty perjantaille 5.12!</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "Welcome to the library!\nMeet a library buddy in your own language!<p><br></p><p>Want to come to the library but you find it hard for language or culture matters? Our library buddy volunteers help you in your own language.</p><p>No pre-registration, you are most warmly welcome!</p><p><br></p><p>MEET A BENGALI, HINDI, NEPALI AND PUNJABI SPEAKING LIBRARY BUDDY:</p><p><br></p><p><strong>Every Thursday at 17-19:</strong></p><ul><li>Thursdays 23.10. - 18.12.2025</li><li>NOTICE! Thu 4.12. event postponed to Friday 5.12.!</li></ul><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": " Kirjastokaveri: BENGALI, HINDI, NEPALI, PUNJABI", "en": "Library buddy: BENGALI, HINDI, NEPALI, PUNJABI" }, "provider_contact_info": null, "location_extra_info": { "fi": "Aula", "en": "Lobby" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnorl7674/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67705", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1494035, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-04T07:12:46.137272Z", "last_modified_time": "2025-12-04T07:12:46.137287Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_782453.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494035/?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-12-04T07:12:46.026329Z", "last_modified_time": "2025-12-04T07:12:46.349597Z", "date_published": null, "start_time": "2025-12-09T16: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, "short_description": { "fi": "Tule nauttimaan nuorten musiikinharrastajien ilosta ja osaamisesta!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina", "en": "http://www.kanneltalo.fi/en/events/event/A4574F8F7AB8B6362473D1ABACFEBEC2/Rytmimajakan_oppilaskonsertti_Kanneltalossa_torstaina" }, "description": { "fi": "<p>Tule nauttimaan nuorten musiikinharrastajien ilosta ja osaamisesta!</p><p>Lavalle nousevat Rytmimajakan bändit ja yksilöoppilaat — esiintyjinä ala- ja yläkouluikäisiä nuoria.<br>Rytmimajakka on osa Meri-Helsingin Musiikkiopistoa.</p><p>Luvassa lämmin ja rytmikäs konserttihetki — tervetuloa mukaan!</p><p>Paikka: Kahvilan stage<br>Vapaa pääsy</p>" }, "name": { "fi": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina", "sv": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina", "en": "Rytmimajakan oppilaskonsertti Kanneltalossa torstaina" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66098", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1255101, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-14T07:14:26.183131Z", "last_modified_time": "2025-07-14T07:14:26.183147Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771486.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1255101/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-14T07:14:26.071859Z", "last_modified_time": "2025-12-04T07:12:45.435180Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T14: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, "short_description": { "fi": "Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!" }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D47937E17671141BE0754F25B0DB9136/Itsenaisyyspaivan_juhla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D47937E17671141BE0754F25B0DB9136/Firande_av_sjalvstandighetsdagen", "en": "http://www.malmitalo.fi/en/events/event/D47937E17671141BE0754F25B0DB9136/Independence_Day_Celebration" }, "description": { "fi": "<p>Tervetuloa juhlistamaan itsenäistä Suomea perinteiseen Malmitalon itsenäisyyspäivän juhlaan!</p><p>Ennen Malmisalin juhlaohjelmaa Pienessä salissa näytetään klo 13 Muistoja Sortavalasta -dokumentti, johon on myös vapaa pääsy. Myös Sortavalan laulujuhlat 1935 -valokuvanäyttely on nähtävillä Malmitalon aulatilassa!</p><p>Malmisalin juhlaohjelmassa on luvassa Finlandia-palkinnon juuri saaneen Tomi Kontion juhlapuhe ja lausuntaa. Musiikillisesta annista vastaa pianisti Janne Oksanen ja duo Aili Järvelä. Oksanen soittaa konsertissaan Toivo Kuulan ja Armas Järnefeltin tuotantoa, kun taas paikallinen Järvelä duo soittaa omaa tuotantoaan.</p><p>Aikataulu klo 15–16</p><p>Tervetulosanat: Tiina Laukkanen, Malmitalon johtaja<br>Juhlapuhe: Tomi Kontio, kirjailija ja runoilija<br>Juhlakonsertti: Janne Oksanen, pianisti<br>Lausunta: Tomi Kontio<br>Konsertti: Aili Järvelä ja Sigurdur Rögnvaldsson<br>Loppusanat: Mirka Vainikka, Malmi-Seuran puheenjohtaja<br>Maamme-laulu</p><p>Ohjelman jälkeen kahvitarjoilu klo 16 alkaen Malmitalon aulassa.</p><p>Vapaa pääsy. Huomioithan, että paikkoja salissa on rajoitetusti.</p><p>Yhteistyössä Malmi-Seura ja Malmitalo</p><p>Kesto: 1 tunti</p>" }, "name": { "fi": "Itsenäisyyspäivän juhla", "sv": "Firande av självständighetsdagen", "en": "Independence Day Celebration" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnoju3mm4", "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:p1808/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-09-26T07:46:16.043826Z", "last_modified_time": "2024-09-26T07:46:16.043850Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Facebook_tapahtumabanneri_1080x1080px_Kauneimmat_Joululaulut.jpg", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Kuvassa kauneimmat joululaulut teksti sinisellä pohjalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T14:21:08.515006Z", "last_modified_time": "2025-12-03T14:21:08.515024Z", "date_published": null, "start_time": "2025-12-22T15:00:00Z", "end_time": "2025-12-22T16: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, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.", "sv": "Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.", "en": "Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event." }, "info_url": null, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.</p><p>Järjestäjä: Espoonlahden seurakunta</p><p>Tapahtumaan on vapaa pääsy.</p>", "sv": "<p>Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.</p><p>Evenemanget ordnas av Esbovikens församling</p><p>Evenemanget är avgiftsfritt.</p>", "en": "<p>Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event.</p><p>Organised by Espoonlahden seurakunta.</p><p>The event is free of charge.</p>" }, "name": { "fi": "Kauneimmat joululaulut -yhteislaulutilaisuus", "sv": "De vackraste julsångerna", "en": "The most beautiful Christmas carols - a community singing event" }, "provider_contact_info": null, "location_extra_info": { "fi": "Salonki", "sv": "Salonki", "en": "Salonki" }, "provider": { "fi": "Espoonlahden seurakunta", "sv": "Esbovikens församling", "en": "Espoonlahden seurakunta" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoju3mm4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnjdex7ge", "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:agggfz66aa/?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:agggfz66fq/?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: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/helmet:11733/?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:p1810/?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:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494030, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T12:49:36.284839Z", "last_modified_time": "2025-12-03T12:49:36.284856Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/3cacaf6d-4246-4749-b0ff-71e408741cec.png", "name": "", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "juliste", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494030/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-17T10:30:24.757998Z", "last_modified_time": "2025-12-03T12:51:15.598177Z", "date_published": null, "start_time": "2025-12-09T16:00:00Z", "end_time": "2025-12-09T17: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, "short_description": { "fi": "Keskustelutilaisuudessa haetaan positiivisia näkökulmia Suomen tulevaisuuteen", "en": "In discussion we'll be finding positivity in the future of Finland" }, "info_url": null, "description": { "fi": "<p>Missä voimme löytää toivoa ja positiivisuutta Suomen tulevaisuudessa?</p><p>Kaamos on suomeksi sana, joka tarkoittaa pitkää pimeää aikaa, jolloin aurinko ei nouse. Monille tällä hetkellä voi tuntua, että myös suomalainen politiikka ja yhteiskunta elävät samanlaista kaamosta. Negatiivinen retoriikka, syrjivät käytännöt ja kasvava eriarvoisuus voivat saada maan tuntumaan jumittuneelta pimeyteen, aurinko vain kaukaisena muistona.</p><p>Aurinko kuitenkin nousee aina uudelleen. Mitkä ovat nämä toivon ja positiivisuuden lähteet? Kuinka voimme rakentaa Suomen kaikille – ja mistä löytää voimaa välittää?</p><p>HUOM: Pekka Haaviston vierailu on peruttu. Ohjelmassa on paneelikeskustelu ja Q&A, jossa ääneen pääsevät myös Suomeen muuttaneet ja politiikassa sekä yhteiskunnallisessa toiminnassa paikkansa löytäneet.</p><p><br></p><p>keskustelu on englannin kielellä.</p><p>#Helloespoo</p>", "en": "<p>Where can we find positivity in the future of Finland?</p><p><br></p><p>Kaamos is the Finnish word for the everlasting night, the point of year at which the sun no longer rises. For many at the moment, it can feel like Finnish politics and society are having a similar Kaamos. With negative rhetoric, discriminatory policies and rising inequality, it can feel like a country stuck in darkness, the sun a distant memory.</p><p><br></p><p>The sun will however always shine again. What then, are these sources of positivity? How can we build a Finland for everyone, and where to find the energy to even care?</p><p><br></p><p>Speach by Pekka Haavisto has been cancelled. There will be a panel discussion and Q&A featuring perspectives of those who have moved to Finland and found a place in politics and making a difference here.</p><p><br></p><p>The discussion in in english</p><p>#helloespoo</p>" }, "name": { "fi": "Suomen poliittisen kaamoksen yli ", "en": "Beyond Finnish Political kaamos " }, "provider_contact_info": null, "location_extra_info": { "fi": "Stage", "en": "Stage" }, "provider": { "fi": "Green Sisu", "en": "Green Sisu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnjdex7ge/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhepkaky", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p2846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490194, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-02-21T13:14:25.503797Z", "last_modified_time": "2025-02-21T13:14:25.503811Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bcf810b0-69f8-4f7b-bb74-43d0659b2743.JPG", "name": "", "cropping": "39,0,702,663", "photographer_name": "", "alt_text": "henkilöllä käsissä musta lautanen jossa tomaattilohkoja, fenkolilohkoja, pinaatinlehtiä ja paneroituja kasviksia sekä bataatinpaloja", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490194/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-11T08:36:49.062418Z", "last_modified_time": "2025-12-03T12:43:18.211648Z", "date_published": null, "start_time": "2025-12-12T09:00:00Z", "end_time": "2025-12-12T12: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, "short_description": { "fi": "Kokataan ja syödään yhdessä", "en": "We cook and eat together" }, "info_url": null, "description": { "fi": "<p>Kokkaillaan ja syödään yhdessä lounas.</p><p>Mukaan mahtuu 10 ensimmäistä.</p><p>Kokkailu on aikuisille.</p><p>Tapahtuma on maksuton.</p><p>Kokkailu tapahtuu Entressen kirjaston Jukeboksi-tilassa.</p><p><a href=\"https://link.webropolsurveys.com/EP/77729BBF25A735CC\">Ennakkoilmoittautuminen linkin kautta.</a></p><p>Ilmoittautuminen on sitova.</p>", "en": "<p>Let´s cook and eat a vegetarian lunch together.</p><p>The first 10 people can join in. </p><p>Cooking is for adults.</p><p>The event is free of charge. </p><p>Cooking happens in Entresse library, Jukeboksi venue.</p><p><a href=\"https://link.webropolsurveys.com/EP/77729BBF25A735CC\">Pre-register via link. </a></p><p>Registration is binding.</p>" }, "name": { "fi": "Kokataan kasvislounas Entressen kirjastossa", "en": "Let´s cook together vegetarian lunch at Entresse library!" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jukeboksi-tila", "en": "Jukeboksi venue" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhepkaky/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnoiltyeq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltwmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltw3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxwm/?format=api" } ], "images": [ { "id": 1494028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T11:21:23.720844Z", "last_modified_time": "2025-12-03T11:21:23.720860Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png", "name": "Perhekerho", "cropping": "92,0,544,453", "photographer_name": "", "alt_text": "Kuvassa erilaisia perheitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T11:39:38.885567Z", "last_modified_time": "2025-12-03T11:39:38.885584Z", "date_published": null, "start_time": "2025-12-08T14:30:00Z", "end_time": "2025-12-29T16: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, "short_description": { "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 16.30–18.30. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.", "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 16.30–18.30. Kom och lek och umgås med andra familjer.", "en": "Family club at Sello Library's Lastenmaa on Mondays from 4:30 p.m. to 6:30 p.m. Come play and spend time with other families." }, "info_url": null, "description": { "fi": "<p>Perhekerho Sellon kirjaston Lastenmaan Jaminurkassa maanantaisin klo 16.30–18.30 (poikkeuksena 8.12 ja 15.12, jolloin tapaamme Lastenmaan leikkialueella). Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry. Nähdään! Terveisin ohjaajat Nawres, Gehan ja Ghada.</p><p>#helloespoo</p><p><br></p>", "sv": "<p>Familjeklubb på Sello-bibliotekets Jaminurkka måndagar kl. 16.30–18.30 (utom den 8 december och 15 december, då vi träffas på lekplatsen Lastenmaa). Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry. Vi ses där! Vänliga hälsningar, instruktörerna Nawres, Gehan och Ghada.</p><p>#helloespoo</p>", "en": "<p>Family club at Sello Library's Jaminurkka on Mondays from 4:30 p.m. to 6:30 p.m. (except on December 8 and December 15, when we will meet at the Lastenmaa playground). Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry. See you there! Best regards, instructors Nawres, Gehan, and Ghada.</p><p>#helloespoo</p>" }, "name": { "fi": "Perhekerho", "sv": "Familjeklubb", "en": "Family club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "provider": { "fi": "Suomen maahanmuuttajien liitto ry", "sv": "Suomen maahanmuuttajien liitto ry", "en": "Suomen maahanmuuttajien liitto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltyeq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnohqfcue", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494026, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:18:11.869193Z", "last_modified_time": "2025-12-03T09:18:11.869210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/97961126-f76c-4c19-a9c4-9f51e6daa6f2.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Eeva kenttä", "alt_text": "lukukoirat Nekku ja Pätkis sekä Luna ja lukukissa Dino", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494026/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T09:20:08.754507Z", "last_modified_time": "2025-12-03T11:22:20.000366Z", "date_published": null, "start_time": "2025-12-22T16:00:00Z", "end_time": "2025-12-22T17: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, "short_description": { "fi": "Tonttukoirat Kirjastolla eli lukukoiramme Nekku ja Pätkis sekä Luna ja lukukissa Dino paikalla ma 22.12.2025 klo 18-19" }, "info_url": { "fi": "https://www.kauklahti.fi/Etusivu/" }, "description": { "fi": "LUUKKU 22<p>Tonttukoirat Kirjastolla eli lukukoiramme Nekku ja Pätkis sekä Luna ja lukukissa Dino paikalla ma 22.12.2025 klo 18-19</p><p>Koirakolmikko jälleen paikalla sekä nyt myös lukukissa!</p><p>Tavaa tai lue, rapsuta tai halaa - he kuuntelevat ja nauttivat olostaan vieressäsi!</p><p>Paikkana Kauklahden Kirjasto, os. Hansakallio 2</p><p>Järjestäjänä Kauklahden Kirjasto ja Espoon lukukoirat ja -kissa hihnajatkeineen</p>" }, "name": { "fi": "Kauklahtiseuran elävä joulukalenteri luukku - LUUKKU 22 Tonttukoirat ja tonttukissa Kirjastolla" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Espoon lukukoirat ja -kissa hihnajatkeineen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnohqfcue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnohqfb6i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494025, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T10:08:32.632275Z", "last_modified_time": "2025-12-03T10:08:32.632296Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5a79665-31ee-4e0a-8bbe-aaa3a3055c78.jpg", "name": "", "cropping": "140,0,503,362", "photographer_name": "", "alt_text": "Taidetyöpajan vetäjät Marja Koskela ja Miina Virtanen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494025/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T10:08:44.790606Z", "last_modified_time": "2025-12-03T10:08:44.790634Z", "date_published": null, "start_time": "2025-12-13T09:00:00Z", "end_time": "2025-12-13T12: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, "short_description": { "fi": "Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. ", "en": "A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. " }, "info_url": null, "description": { "fi": "<p>Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. Hankkeen tavoitteena on edistää eri kulttuureista tulevien nuorten välistä ystävyyttä ja luovan toiminnan mahdollistamaa itseilmaisua yhdessä jaetussa hetkessä turvallisessa ympäristössä. Työpajassa ei vaadita ennakko-osaamista ja työpajassa osallistujat pääsevät kokeilemaan luovaa käsillä tekemistä sekä musisointia.</p><p>Ohjaajina työpajassa ovat Marja Koskela ja Miina Virtanen ja ukrainen kielen tulkkina Tatyana Pitchulina.</p><p>Ilmoittaudu täällä:<a href=\" https://link.webropolsurveys.com/EP/49979A9234D8716C\"> https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p>", "en": "<p>A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. The aim of the project is to promote friendship between young people from different cultures and self-expression through creative activities in a shared moment in a safe environment. No prior knowledge is required for the workshop, and participants will have the opportunity to try their hand at creative crafts and music-making.</p><p><br></p><p>The workshop will be led by Marja Koskela and Miina Virtanen, with Tatyana Pitchulina acting as Ukrainian interpreter.</p><p><br></p><p>Register here: <a href=\"https://link.webropolsurveys.com/EP/49979A9234D8716C\">https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p><p><br></p><p><br></p>" }, "name": { "fi": "Käsityötaiteen ja musiikin lauantaipaja", "en": "Saturday workshop on crafts and music" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "en": "Akseli" }, "provider": { "fi": "Espoo Creative", "en": "Espoo Creative" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnohqfb6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-14T09:12:56.454666Z", "last_modified_time": "2025-11-14T09:12:56.454683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780907.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T09:12:56.364029Z", "last_modified_time": "2025-12-03T09:12:45.174872Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!", "sv": "Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.", "en": "Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D651833586DE2449C7E10414F4F23075/Itsenaisyyspaivan_juhla_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D651833586DE2449C7E10414F4F23075/Firande_av_sjalvstandighetsdagen_pa_Cittertorget", "en": "http://www.kanneltalo.fi/en/events/event/D651833586DE2449C7E10414F4F23075/Independence_Day_celebration_at_Sitratori_square" }, "description": { "fi": "<p>Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!</p><p>Tunnelmallisessa tapahtumassa nautitaan yhdessä kuorolaulusta, sirkuksesta ja valotaiteesta – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään edellisvuosista poiketen Sitratorilla. Näin varmistamme, että kaikki halukkaat mahtuvat mukaan! Mukana tapahtumassa ovat myös D-asema Kannelmäki ja Lännen aikuissosiaalityö.</p><p><b>Juhlan aikataulu:</b><br>klo 15-17 Lohi- ja kasviskeittotarjoilu. Tarjolla myös glögiä ja pipareita! Huomioithan, että ruokaa on tarjolla rajattu määrä.</p><p>klo 15–15.30 ja klo 16.20–16.45 Posetiivari esiintyy!</p><p>klo 15.30 ja klo 16.45 Kassandra-kuoron esitykset</p><p>klo 16 Valosirkus Spektrin esitys</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.</p><p>Under det stämningsfulla evenemanget njuter man tillsammans av körsång, cirkus och ljuskonst – tillställningen är avgiftsfri och öppen för alla.</p><p>Till skillnad från tidigare år ordnar man det varma och hjärtliga evenemanget på Cittertorget. Så här säkerställer man att alla intresserade får plats! Även D-osasto Kannelmäki och Vuxensocialarbete, västra deltar i evenemanget.</p><p><b>Festens tidtabell:</b><br>kl. 15.00–17.00 Servering av lax- och grönsakssoppa samt glögg och pepparkakor (vänligen observera att det finns en begränsad mängd mat att tillgå)<br>kl. 15.00–15.30 och 16.20-16.45 Posetiivari uppträder<br>kl. 15.30 och 16.45 Uppträdanden av Kassandrakören<br>kl 16.00 Valosirkus Spektris programnummer</p><p>Fritt inträde!</p>", "en": "<p>Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!</p><p>The programme for the atmospheric evening also includes choral singing, circus entertainment and light art – free and open to all.</p><p>Unlike in previous years, the warm-hearted event will be held at Sitratori square. This way we can make sure that everyone who wants to join us will be able to! D-asema Kannelmäki and western adult social work will also be present at the event.</p><p>Celebration programme:<br>15.00–17.00 Salmon and vegetable soup served. There will also be glogg and gingerbread biscuits! Please note that there is a limited amount of food available.<br>15.00–15.30 and 16.20–16.45 Barrel organ player performance!<br>15.30 and 16.45 Performances by the Kassandra choir<br>16.00 Light Circus Spektri</p><p>Free entry!</p>" }, "name": { "fi": "Itsenäisyyspäivän juhla Sitratorilla", "sv": "Firande av självständighetsdagen på Cittertorget", "en": "Independence Day celebration at Sitratori square" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk225yce", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225puq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225scq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225squ/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225tau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225ucm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225uru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xs4/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T09:44:03.957058Z", "last_modified_time": "2025-12-03T08:47:24.407195Z", "date_published": null, "start_time": "2025-08-19T15:00:00Z", "end_time": "2025-12-09T17: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, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><strong>EI kielikahvilaa 14.10.2025 koulujen syyslomalla</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p>Inget språkcafé den 14 oktober 2025 under höstlovet</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p><strong>No language café on October 14, 2025, during the school autumn break</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225yce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }