Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=5
{ "meta": { "count": 25056, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=6", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=4" }, "data": [ { "id": "espoo_le:agncxi2cem", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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-10-28T15:22:34.963979Z", "last_modified_time": "2025-11-13T08:01:24.581994Z", "date_published": null, "start_time": "2026-05-05T12:30:00Z", "end_time": "2026-05-05T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2cem/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2b6q", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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-10-28T15:22:35.077076Z", "last_modified_time": "2025-11-13T08:01:24.529530Z", "date_published": null, "start_time": "2026-05-12T12:30:00Z", "end_time": "2026-05-12T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2b6q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2bza", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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-10-28T15:22:35.207624Z", "last_modified_time": "2025-11-13T08:01:24.479497Z", "date_published": null, "start_time": "2026-05-19T12:30:00Z", "end_time": "2026-05-19T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bza/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2bsu", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2glq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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-10-28T15:22:35.430583Z", "last_modified_time": "2025-11-13T08:01:24.426608Z", "date_published": null, "start_time": "2026-05-26T12:30:00Z", "end_time": "2026-05-26T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bsu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncxi2glq", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bsu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2bza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2b6q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2cem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2cki/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2cqe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2cv4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2c3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2dca/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2die/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2dny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2dtq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2dzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2d7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2eeu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2ekq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2eqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2ewi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2e4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fhq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fnm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2fzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2f7a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2gfu/?format=api" } ], "images": [ { "id": 1491217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T15:11:22.134895Z", "last_modified_time": "2025-10-28T15:11:22.134911Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/3f0b4672-2065-4b67-af0a-78219a78bd98.jpg", "cropping": "420,0,1500,1080", "photographer_name": "", "alt_text": "lapsia tekemässä läksyjä yhdessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491217/?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-10-28T15:22:27.429207Z", "last_modified_time": "2025-11-13T08:01:22.329562Z", "date_published": null, "start_time": "2025-11-04T13:30:00Z", "end_time": "2026-05-26T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!</p><p><br></p><ul><li>Tarvittaessa apua koulutehtäviin.</li><li>Rauhallinen hetki lukemiselle ja yhteisiä lukuhetkiä</li><li>Piirtämistä, värittämistä, kortti- ja lautapelejä</li></ul><p>Ei ilmoittautumista – tervetuloa mukaan!</p>", "sv": "<p>Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.</p><p><br></p><p>Ingen registrering - välkommen!</p>", "en": "<p>Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!</p><p><br></p><ul><li>Get help with your schoolwork if needed</li><li>Quiet time for reading and shared reading moments</li><li>Draw, color or play boardgames</li></ul><p>No registration – just drop in whenever you like!</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kirjastokerho", "sv": "Biblioteksklubb", "en": "Library club" }, "location_extra_info": null, "short_description": { "fi": "Tule tekemään läksyjä, lukemaan, pelaamaan lautapelejä, värittämään ja viettämään aikaa turvallisessa ja rennossa ympäristössä!", "sv": "Kom och gör dina läxor, läsa en bok, spela ett brädspel eller rita i en trygg och avslappnad atmosfär.", "en": "Come do your homework, read, play boardgames, color, and relax in a safe and welcoming space!" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncxi2glq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_Kuvatestausta_111125_EK2609131549" }, "price": { "fi": "0" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1493780, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-12T07:13:04.947986Z", "last_modified_time": "2025-11-12T07:13:04.948000Z", "name": "Puu", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4", "cropping": "", "photographer_name": "Testi testaaja", "alt_text": "Puu ja aurinko", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493780/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-11T10:58:53.997916Z", "last_modified_time": "2025-11-12T14:20:27.269652Z", "date_published": "2025-11-11T10:49:52Z", "start_time": "2025-11-14T09:00:00Z", "end_time": "2025-11-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-14T08:00:00+02:00", "enrolment_end_time": "2025-11-14T08:00:00+02:00", "local": false, "replaced_by": null, "description": { "fi": "<div><p>Tarkka kuvaus tässä </p></div>", "sv": "<div><p>Tarkka kuvaus SV</p></div>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "LE Kuvatestausta 11.11.25 EK", "sv": "SV Otsikko" }, "location_extra_info": null, "short_description": { "fi": "Lyhyt kuvaus", "sv": "Kuvaus SV" }, "provider": { "fi": "Annantalo (KYMP)", "sv": "Annantalo (KYMP)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhqp6zqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493783, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-12T12:48:02.559423Z", "last_modified_time": "2025-11-12T12:48:02.559449Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/0a50d8f2-4614-48b6-bcec-8748297f4bc6.png", "cropping": "740,0,2660,1920", "photographer_name": "Espoon kaupunki", "alt_text": "Kuvituskuva, ryhmä ihmisiä työskentelemässä yhdessä pitkän pöydän ääressä, tiimi, ryhmätyöskentely.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493783/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-12T12:48:56.143611Z", "last_modified_time": "2025-11-12T12:48:56.143630Z", "date_published": null, "start_time": "2025-11-18T16:00:00Z", "end_time": "2025-11-18T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "Arjen kynttilä – mielenterveyden hyvinvointia tukeva sanataidepaja<p><strong>Entressen kirjaston Paja</strong></p><p><strong>Tiistaina 18.11.2025 klo 18.00-19.00</strong></p><p>Mitkä tavalliset asiat tuovat iloa ja valoa pimeään arkeen? Sanataidetyöpajassa pääsee kirjoittamaan ja koristelemaan kortin, jonka voi antaa lahjaksi tärkeälle ihmiselle tai pitää itsellä arjen kynttilänä. </p><p><br></p><p>Pajan ohjaa kirjaston henkilökunta</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Arjen kynttilä – mielenterveyden hyvinvointia tukeva sanataidepaja" }, "location_extra_info": { "fi": "Paja" }, "short_description": { "fi": "Sanataidetyöpajassa pääsee kirjoittamaan ja koristelemaan kortin, jonka voi antaa lahjaksi tärkeälle ihmiselle tai pitää itsellä arjen kynttilänä." }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhqp6zqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cobq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:14.136131Z", "last_modified_time": "2025-11-12T11:30:50.507065Z", "date_published": null, "start_time": "2025-11-27T12:30:00Z", "end_time": "2025-11-27T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "PERUTTU: Liikkuva Espoo-info Entressen kirjasto", "sv": "AVBRUTEN: Mobila Esbo-info Entressebiblioteket", "en": "CANCELLED: Mobile Espoo Info Entresse Library" }, "location_extra_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cobq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22cpqm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1797/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22c2da/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:koha", "sub_events": [], "images": [ { "id": 151452, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2022-07-01T06:28:47.191453Z", "last_modified_time": "2022-08-31T05:56:25.773787Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/Espoo-info_kuva_tunnuksella_CMYK.jpg", "cropping": "194,0,1006,813", "photographer_name": "", "alt_text": "Kolme piirroshahmoa istuu pöydän ääressä koneella, kaksi seisoo tablettia katsoen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151452/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-07T07:13:13.797711Z", "last_modified_time": "2025-11-12T11:13:36.559458Z", "date_published": null, "start_time": "2025-11-13T12:30:00Z", "end_time": "2025-11-13T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.</p><p>Espoo-info tarjoaa neuvontaa julkisten palveluiden ja Espoon kaupungin yhteistyökumppaneiden (Helsingin seudun liikenne eli HSL, Kela, Visit Espoo, Länsi-Uudenmaan hyvinvointialue) palveluista ja tapahtumista sekä digitukea eli opastusta sähköiseen asiointiin.</p>", "sv": "<p>Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.</p><p>Esbo-info erbjuder rådgivning om tjänster och evenemang som ordnas av Esbo stad, Helsingforsregionens trafik, Folkpensionsanstalten samt turistinformation som ges av Visit Espoo, Västra Nylands välfärdsområde och stöd vid användning av e-tjänster på datorn</p>", "en": "<p>The service advisors of Espoo Info bring digital support and service advice closer to you.</p><p>Espoo Info offers advice on public services as well as the services and events of the City of Espoo's partners (Helsinki Region Transport HSL, Kela and Visit Espoo, Western Uusimaa Wellbeing Services County) and digital support, i.e. advice on how to use online services</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://www.espoo.fi/fi/espoon-kaupunki/asiakaspalvelu-ja-asiointi/espoo-info", "sv": "https://www.espoo.fi/sv/esbo-stad/kundservice-och-e-tjanster/esbo-info", "en": "https://www.espoo.fi/en/city-espoo/customer-service-and-e-services/espoo-info" }, "name": { "fi": "PERUTTU: Liikkuva Espoo-info Entressen kirjasto", "sv": "AVBRUTEN: Mobila Esbo-info Entressebiblioteket", "en": "CANCELLED: Mobile Espoo Info Entresse Library" }, "location_extra_info": null, "short_description": { "fi": "Espoo-infon palveluneuvojat tuovat digituen ja palveluneuvonnan lähemmäs sinua.", "sv": "Esbo-infos servicerådgivare för digitalt stöd och servicerådgivning närmare dig.", "en": "The service advisors of Espoo Info bring digital support and service advice closer to you." }, "provider": { "fi": "Konsernihallinto" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22cpqm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4dcy", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:04.917563Z", "last_modified_time": "2025-11-12T11:06:03.894969Z", "date_published": null, "start_time": "2025-11-21T13:00:00Z", "end_time": "2025-11-21T13:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dcy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4cs4", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:04.984033Z", "last_modified_time": "2025-11-12T11:06:03.684579Z", "date_published": null, "start_time": "2025-11-21T13:30:00Z", "end_time": "2025-11-21T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cs4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4cdm", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:05.058596Z", "last_modified_time": "2025-11-12T11:06:03.570094Z", "date_published": null, "start_time": "2025-11-21T14:00:00Z", "end_time": "2025-11-21T14:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cdm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4btm", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:05.122699Z", "last_modified_time": "2025-11-12T11:06:03.488720Z", "date_published": null, "start_time": "2025-11-21T14:30:00Z", "end_time": "2025-11-21T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4btm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4bdu", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:05.195093Z", "last_modified_time": "2025-11-12T11:06:03.392978Z", "date_published": null, "start_time": "2025-11-21T15:00:00Z", "end_time": "2025-11-21T15:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4bdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4atm", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:05.257852Z", "last_modified_time": "2025-11-12T11:06:03.302359Z", "date_published": null, "start_time": "2025-11-21T15:30:00Z", "end_time": "2025-11-21T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4atm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4dtq", "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:p13084/?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:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4atm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4bdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4btm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cs4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dcy/?format=api" } ], "images": [ { "id": 1491212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-28T10:31:37.845458Z", "last_modified_time": "2025-10-28T10:31:37.845473Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/5ab24ad2-eea3-4163-bf9f-1d38a70c321d.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Piirroskuva ilmastoburgerista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:04.223980Z", "last_modified_time": "2025-11-12T11:06:01.262243Z", "date_published": null, "start_time": "2025-11-21T13:00:00Z", "end_time": "2025-11-21T16: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, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhpunbhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493782, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-12T10:11:58.193326Z", "last_modified_time": "2025-11-12T10:12:34.314107Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/c43f63d9-b87b-4e12-ac2e-dc74aeef663f.jpg", "cropping": "0,293,1414,1707", "photographer_name": "", "alt_text": "Juliste, jossa lukee kuolleiden päivä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493782/?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:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-11-12T10:23:07.169018Z", "last_modified_time": "2025-11-12T10:23:07.169036Z", "date_published": null, "start_time": "2025-11-29T12:00:00Z", "end_time": "2025-11-29T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Tule mukaan värikkääseen ja lämminhenkiseen Kuolleiden Päivän juhlaan!</p><p>Tutustu meksikolaiseen perinteeseen, joka juhlistaa elämää, muistoja ja rakkautta käsitöiden ja tarinoiden kautta.</p><p> Ohjelma:</p><p>14:00–14:10 Tervetulosanat ja esittely</p><p>14:10–15:30 Työpaja: Tee oma Kuolleiden Päivän alttari ja paperisia kehäkukkia</p><p>15:40–17:00 Elokuvanäytös: Coco (2017)</p><p> ✨ Vapaa pääsy | Koko perheen tapahtuma | Sopii kaikenikäisille ✨</p><p> Yhteistyössä:</p><p>KulttuuriEspoo | Espoon kaupunki | Meksikon suurlähetystö Suomessa | HELMET-kirjastot</p>", "en": "<p>Join us for a colourful and heartwarming Day of the Dead celebration!</p><p> Discover the beauty of Mexican traditions through crafts, colours, and stories that honour life and memory.</p><p> Program:</p><p> 14:00–14:10 Welcome and introduction</p><p> 14:10–15:30 Workshop: Create your own Day of the Dead altar and paper marigold flowers</p><p> 15:40–17:00 Movie screening: Coco (2017)</p><p> Free entry | Family event | Suitable for all ages</p><p> In collaboration with:</p><p> KulttuuriEspoo | City of Espoo | Embassy of Mexico in Finland | HELMET Libraries</p><p> 💀 Come and experience an afternoon full of colour, creativity, and cultural joy!</p><p> Bring your family and friends — everyone is welcome! 🌼</p>" }, "provider_contact_info": null, "info_url": null, "name": { "fi": "Kuolleiden Päivän juhla", "en": "Day of the Dead Celebration" }, "location_extra_info": null, "short_description": { "fi": "Tutustu meksikolaiseen perinteeseen!", "en": "Discover the beauty of Mexican traditions" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhpunbhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnaygzh4a", "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: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygw22q/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491146, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-03-17T09:32:13.128144Z", "last_modified_time": "2025-09-02T07:26:46.053232Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a8d628c5-6b7b-4408-94ad-e4b2c753345e.png", "cropping": "200,0,1000,800", "photographer_name": "-", "alt_text": "Kuvassa sanomalehti ja käsi joka pitelee täyttä kahvikuppia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491146/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-09-02T08:04:30.283382Z", "last_modified_time": "2025-11-12T08:34:32.197499Z", "date_published": null, "start_time": "2025-11-20T08:00:00Z", "end_time": "2025-11-20T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p>Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi. Opimme näin yhdessä suomea, ja tutustumme Suomen tapoihin ja historiaan.</p><p>Selkouutiskahvit järjestetään torstaisin Entressen kirjaston Kibessä klo 10.00-12.00.</p><p>Selkouutiskahveja järjestää kirjasto</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska. På så sätt lär vi oss finska tillsammans och bekantar oss med finska seder och historia.</p><p>Kaffepauserna äger rum på torsdagar på Entresse bibliotek i Kibe från 10.00-12.00.</p><p> </p><p>#HelloEspoo</p>", "en": "<p>We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish. This is how we learn together Finnish, Finnish customs and history.</p><p>Plain news cafe are held on thursdays 10.00-12.00. in Kibe, Entresse Library.</p><p> </p><p> </p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://helmet.finna.fi/", "sv": "https://helmet.finna.fi/?lng=sv", "en": "https://helmet.finna.fi/?lng=en-gb" }, "name": { "fi": "PERUTTU: Selkouutiskahvit", "sv": "AVBRUTEN: Kaffe med klara nyheter", "en": "CANCELLED: Plain News Cafe" }, "location_extra_info": { "fi": "Kibe", "sv": "Kibe", "en": "Kibe" }, "short_description": { "fi": "Selkouutiskahveilla kuuntelemme Yle Areenasta selkouutiset. Sen jälkeen luemme uutisen ja keskustelemme siitä yhdessä suomeksi.", "sv": "Under nyhetsgenomgångarna lyssnar vi på nyheterna från Yle Arena. Sedan läser vi nyheterna och diskuterar dem tillsammans på finska.", "en": "We are listening Plain News from Yle Areena. After that we read the news and discuss the topics together in Finnish." }, "provider": { "fi": "Kirjasto", "sv": "Biblioteket", "en": "Library" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnaygzh4a/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfteh7oe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493781, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-12T08:28:59.255133Z", "last_modified_time": "2025-11-12T08:28:59.255155Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/9e62eed3-163a-434a-b4df-0b0707de6d3d.jpg", "cropping": "149,0,531,382", "photographer_name": "Demo musiikkikoulu", "alt_text": "kaksi tyttöä laulaa mikrofoneihin", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493781/?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-11-06T14:16:42.483808Z", "last_modified_time": "2025-11-12T08:29:06.028710Z", "date_published": null, "start_time": "2025-11-22T09:00:00Z", "end_time": "2025-11-22T14:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "<p><strong>Musiikkikoulu Demon oppilaskonsertit la 22.11.</strong></p><p>Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan laulu- ja piano-oppilaiden valmistelemia esityksiä. Matineat alkavat klo 11, klo 12.30, klo 14 sekä klo 15.30 ja kestävät noin 45 min. Tervetuloa kuuntelemaan! </p><p><br></p><p><a href=\"https://musiikkikouludemo.fi/ \">Musiikkikoulu Demo tarjoaa opetusta kaikenikäisille.</a></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p><strong>Musikskolan Demos elevkonserter</strong></p><p>Under Musikskolan Demos höstmatinédag får vi höra sång- och pianostudenter förberedda uppträdanden. Matinéerna börjar kl. 11, 12.30, 14 och 15.30 och varar cirka 45 minuter. Välkommen att lyssna!</p><p><a href=\"https://musiikkikouludemo.fi\">Musikskolan Demo erbjuder undervisning för alla åldrar. </a></p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>Demo Music School Student Concerts</strong></p><p>During Demo Music School’s autumn matinee day, you’ll hear performances prepared by singing and piano students. The matinees begin at 11, 12:30, 14, and 15:30, each lasting about 45 minutes. Welcome to listen!</p><p><a href=\"https://musiikkikouludemo.fi\">Demo Music School offers lessons for all ages. </a></p><p><br></p><p>#HelloEspoo</p>" }, "provider_contact_info": null, "info_url": { "fi": "https://musiikkikouludemo.fi/", "sv": "https://musiikkikouludemo.fi/", "en": "https://musiikkikouludemo.fi/" }, "name": { "fi": "Musiikkikoulu Demon oppilaskonsertit", "sv": "Elevkonsert med musikskolan Demo", "en": "Student concert by Demo Music School" }, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "short_description": { "fi": "Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan laulu- ja piano-oppilaiden valmistelemia esityksiä. ", "sv": "Matinéer med av sång- och pianostudenter ", "en": "Students’ matinees by singing and piano students" }, "provider": { "fi": "Musiikkikoulu Demo", "sv": "Musiikkikoulu Demo", "en": "Musiikkikoulu Demo" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfteh7oe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhfytz4q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493774, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-11T11:59:15.199974Z", "last_modified_time": "2025-11-11T11:59:15.199990Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/8b1a8f38-4425-4598-9f0c-acec5cb367a5.png", "cropping": "0,0,1080,1080", "photographer_name": "Crip cine", "alt_text": "Crip cine kylässä 2025 logokuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493774/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agnhfys7v4/?format=api" } ], "created_time": "2025-11-11T11:59:22.811626Z", "last_modified_time": "2025-11-12T08:01:08.887016Z", "date_published": null, "start_time": "2025-12-10T11:00:00Z", "end_time": "2025-12-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "description": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja<p><br></p><p>Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan .</p><p><strong>Lippulaivan kirjasto / Monitoimitila Salonki 3.12.2025 klo 11–13</strong></p><p><strong>Sellon kirjasto / Akseli-sali 4.12.2025 klo 10.30–12.30</strong></p><p><strong>Entressen kirjasto / Sininen huone 10.12.2025 klo 13–15</strong></p><p><strong>Sellon kirjasto / Akseli-sali 17.12.2025 klo 14–16</strong></p><p>Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa. Näytökseen ja työpajaan on vapaa pääsy. </p><p>Elokuvanäytöksessä nähdään kolme lyhytelokuvaa, jotka käsittelevät osallisuutta ja oman elämän mielekkyyttä kekseliäällä tavalla, eikä huumoriakaan ole unohdettu. <strong>Ranskalaisen Audrey Sanglan The Blooming</strong> kuvaa vankilasta vapautuvan kuuron naisen yrityksiä löytää yhteisö, johon kuulua. Argentiinalaislähtöisen <strong>Julieta Tetelbaumin Joy </strong>on kuvaus autismin kirjolla olevasta naisesta, joka on koukussa sokeriin eikä lakkaa ajattelemasta entistä nuoruuden tyttöystäväänsä. Sahalahtelaisen monitaiteilija <strong>Anssi Kasitonnin Penan erikoiskuljetus</strong> on yllättäväkin elokuva Penasta, joka on ollut 50 vuotta tien päällä ja on edelleen. Vieraskielisissä elokuvissa on suomenkielinen tekstitys. </p><p><br></p><p>Työpajassa keskustellaan elokuvista sekä niiden teemoista ja herättämistä ajatuksista Erätauko-menetelmää ja keskustelevaa elokuvantarkastelua hyödyntäen. Mediametkan asiantuntija fasilitoi keskustelua ja huolehtii siitä, että jokainen osallistuja saa tilaa omalle äänelleen sekä mahdollisuuden kuulla muiden näkökulmia. Työpajan lopuksi kootaan yhteen keskustelussa esiin nousseita havaintoja ja pohditaan, mitä elokuvien katselu herätti. Osallistujat saavat mukaansa uusia ajatuksia, ideoita ja näkökulmia, joita voi soveltaa omassa arjessa. </p><p><br></p><p>Crip Ciné on osana Espoo Ciné -festivaalin ympärivuotista ohjelmistoa koottava kokonaisuus, joka keskittyy vammaisten elämän olosuhteita esiintuoviin dokumentti- ja fiktioelokuviin sekä vammaisten elokuvantekijöiden teoksiin.</p><p>Crip Ciné kylässä -kiertueella on kaksi tavoitetta: tehdä elokuvakulttuuria saavutettavammaksi sekä levittää vammaispoliittisia ja vammaisten tekijöiden elokuvia uusille yleisöille, sekä vammaisille että vammattomille katsojille.</p><p>Mediametka ry on Suomen johtava käytännön mediakasvatuksen asiantuntijajärjestö. Mediametkan toiminta kehittää kaikenikäisten mediataitoja ja luovuutta sekä toteuttaa laadukasta elokuvakulttuuritoimintaa.</p><p><strong>Syksyn Crip Ciné kylässä -kiertuetta tukee Espoon kaupunki. Vuoden 2025 Crip Ciné -hankkeen päärahoittajat ovat opetus- ja kulttuuriministeriö ja Suomen kulttuurirahasto.</strong></p>" }, "provider_contact_info": null, "info_url": { "fi": "https://espoocine.fi/ohjelmisto/crip-cine-kylassa/" }, "name": { "fi": "Crip Ciné kylässä: lyhytelokuvanäytös ja työpaja" }, "location_extra_info": { "fi": "Sininen huone" }, "short_description": { "fi": "Tervetuloa Crip Ciné kylässä -lyhytelokuvanäytökseen ja elokuvakokemusta syventävään työpajaan " }, "provider": { "fi": "Tapahtuman järjestävät Espoo Ciné ja Mediametka ry. yhteistyössä Espoon kaupungin kulttuuripalveluiden kanssa." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhfytz4q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }