Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_recurring_children=true&page=79
{ "meta": { "count": 21732, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=80", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=78" }, "data": [ { "id": "espoo_le:agnf53qycq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T14:17:35.548048Z", "last_modified_time": "2025-11-07T14:20:23.737067Z", "date_published": null, "start_time": "2025-11-14T11:00:00Z", "end_time": "2025-11-14T12: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, "location_extra_info": { "fi": "Kajuutta" }, "name": { "fi": "Maailman diabetespäivä: Omegayhden maksuton diabetes tietoisuus- ja verensokeriseulontaohjelma" }, "short_description": { "fi": "Tule mittauttamaan verensokerisi ja hakemaan tietoa diabetekseen liittyen 14.11. klo 13 Kajuuttaan." }, "provider_contact_info": null, "provider": { "fi": "Omegayksi" }, "info_url": null, "description": { "fi": "<p>Maailman diabetespäivän kunniaksi Omegayksi järjestää maksuttoman diabetes tietoisuus- ja verensokeriseulontaohjelman.</p><p>Tapahtumassa voit mitata verensokerisi, saat faktoja koskien diabetesta sekä jaamme opetusmateriaaleja.</p><p>Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf53qycq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agne666cxy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-11-04T14:40:29.288604Z", "last_modified_time": "2025-11-07T13:43:33.323998Z", "date_published": null, "start_time": "2025-11-22T10:00:00Z", "end_time": "2025-11-22T14: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, "location_extra_info": null, "name": { "fi": "Perhepäivä Sellon kirjastossa", "sv": "Familjedag i Sello bibliotek", "en": "Family day in Sello Library" }, "short_description": { "fi": "Tervetuloa koko perheen tapahtumaan!", "sv": "Hela familjen är välkommen att delta i vår familjedag!", "en": "The whole family is welcome to enjoy our family day." }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p><strong>Tervetuloa Sellon kirjaston perhepäivään, joka järjestetään yhteistyössä Espoolaisten toimijoiden kanssa Lasten viikonlopun lauantaina! Luvassa on erilaisia työpajoja, musiikkia, klovni ja hauskaa yhdessä tekemistä. Tule mukaan koko perheen voimin.</strong></p><p><br></p><p><strong>Ohjelma:</strong></p><p><strong>Lastenorkesteri Rypsi ja Rapsi klo 14</strong></p><p><strong>Klovni MokaBella klo 15</strong></p><p><br></p><p><strong>Kasvomaalausta klo 12-14</strong></p><p><strong>Peliturnaus klo 12-14.30</strong></p><p><strong>Satumaalaustuokiot klo 13, klo 14 ja klo 15</strong></p><p><br></p><p><strong>klo 13-16</strong></p><ul><li><strong>Espoon kuvataidekoulun pinssipaja</strong></li></ul><p><br></p><ul><li><strong>Espoon Tapioiden temppurata</strong></li></ul><p><br></p><ul><li><strong>Lasten kulttuurikeskus Aurora/ Onnenmetsä -työpaja </strong></li></ul><p><strong> </strong></p>", "sv": "<p>Välkommen till Sello-bibliotekets familjedag, som anordnas i samarbete med Espoo-baserade organisationer under barnhelgen på lördag! Det kommer att finnas olika workshops, musik, en clown och roliga aktiviteter att göra tillsammans. Ta med hela familjen.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Barnorkestern Rypsi ja Rapsi kl. 14.00</strong></p><p><br></p><p><strong>Clownen MokaBella kl. 15.00</strong></p><p><br></p><p><strong>Ansiktsmålning kl. 12.00–14.00</strong></p><p><br></p><p><strong>Spelturnering kl. 12–14.30</strong></p><p><br></p><p><strong> Sagomålningssessioner kl. 13, kl. 14 och kl. 15</strong></p><p><br></p><p><br></p><p><br></p><p><strong>Kl. 13–16</strong></p><p><br></p><p><strong>Espoo konstskolas badge-workshop</strong></p><p><br></p><p><strong>Espoo Tapios hinderbana</strong></p><p><br></p><p><strong>Aurora barnkulturcenter/Onnenmetsä-workshop </strong></p><p><br></p>", "en": "<p>Welcome to Sello Library's Family Day, organized in collaboration with Espoo-based organizations on Children's Weekend Saturday! There will be various workshops, music, a clown, and fun activities to do together. Bring the whole family along.</p><p><br></p><p><strong>Program</strong></p><p><br></p><p><strong>Children's orchestra Rypsi ja Rapsi at 2 p.m.</strong></p><p><br></p><p><strong>Clown MokaBella at 3 p.m.</strong></p><p><br></p><p><br></p><p><strong>Face painting from 12 noon to 2 p.m.</strong></p><p><br></p><p><strong>Game tournament at 12-2:30 p.m.</strong></p><p><br></p><p><strong>Fairy tale painting sessions at 1 pm, 2pm and 3pm</strong></p><p><br></p><p><br></p><p><br></p><p><strong>1-4 p.m</strong></p><p><br></p><p><strong>Espoo Art School pin workshop</strong></p><p><br></p><p><strong>Espoo Tapio obstacle course</strong></p><p><br></p><p><strong>Children's Cultural Center Aurora/ Onnenmetsä workshop </strong></p><p><br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agne666cxy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnf5nzuoi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14710/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-11-07T13:25:33.962469Z", "last_modified_time": "2025-11-07T13:25:33.962521Z", "date_published": null, "start_time": "2025-11-23T12:00:00Z", "end_time": "2025-11-23T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki" }, "name": { "fi": "MI-NÄ LU-EN! Satunäytelmä Lippulaivan kirjastossa!" }, "short_description": { "fi": "Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät sunnuntaina 23.11. klo 14 alkaen." }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p>Tule kuuntelemaan hiiren seikkailusta ja tapaamaan uuden MI-NÄ LU-EN -lastenkirjasarjan tekijät! Satunäytelmän lisäksi tiedossa musiikkia ja mukavaa puuhaa lapsille! Tervetuloa!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf5nzuoi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnf5aa4sa", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493765, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-07T12:52:17.978190Z", "last_modified_time": "2025-11-07T12:52:17.978205Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/4823b110-9123-4ee4-b1c3-6be0aa86b896.jpg", "name": "", "cropping": "124,0,665,541", "photographer_name": "", "alt_text": "Kuvan oikealla on Liisa Lauerman lapsuus kohtauspaikkana kirja ja kuvan oikealla on kirjailija Liisa Lauerma", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493765/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T12:37:58.228639Z", "last_modified_time": "2025-11-07T13:14:29.543215Z", "date_published": null, "start_time": "2026-01-12T16:00:00Z", "end_time": "2026-01-12T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki" }, "name": { "fi": "Neljätoista tarinaa, neljätoista lapsuutta - Kirjailijavieraana Liisa Lauerma" }, "short_description": { "fi": "Tervetuloa kuuntelemaan Liisa Lauerman kirjailijavierailua Salonkiin maanantaina 12.1. klo 18.00 alkaen." }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p>Neljätoista tarinaa, neljätoista lapsuutta: Argentiinassa, Iranissa, Japanissa, Kolumbiassa, Neuvostoliitossa, Somaliassa, Syyriassa, Thaimaassa, Turkissa, Virossa ja Suomessa. Lapsuus kohtauspaikkana - muistoja nykysuomalaisilta on kirja kaikille monikulttuurisuudesta, muistoista ja lapsuudesta kiinnostuneille. Se haastaa pohtimaan omia kulttuurisia stereotypioita ja sitä, voisimmeko lapsuusmuistoja jakamalla tulla toisillemme uudella tavalla näkyväksi.</p><p>Tietokirjailija Liisa Lauermaa haastattelee kirjastopedagogi Pirkko Ilmanen.</p><p>Kirjaa voi ostaa paikan päältä! </p><p> </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf5aa4sa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnc7bagqi", "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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-10-29T09:34:14.088232Z", "last_modified_time": "2025-11-07T12:13:57.271393Z", "date_published": null, "start_time": "2025-11-22T11:30:00Z", "end_time": "2025-11-22T15: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, "location_extra_info": { "fi": "Lippulaivan paja" }, "name": { "fi": "Lasten viikonloppu: Romupaja" }, "short_description": { "fi": "Kierrätysaskartelua " }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p>Romupajassa askarrellaan ja rakennetaan erilaisesta kierrätysmateriaaleista vain oma mielikuvitus rajana. Käytössä rakenteluun on kuumaliima eli voi tehdä isojakin teoksia. Teokset voi myös maalata. Pajassa on kaksi romukattausta; ensimmäinen paja on klo 13.30-15 ja toinen paja klo 15.30-17.</p><p>Jo viidettä kertaa järjestettävä Lasten viikonloppu ilahduttaa vuoden pimeimpään aikaan, marraskuun lopulla 21.–23.11.2025. Luvassa on viime vuosien tapaan jälleen täyttä lastenkulttuurin juhlaa ympäri Espoota. Lasten viikonlopun ohjelma julkaistaan syksyn alkupuolella. Löydät kaikki Espoon Lasten viikonlopun tapahtumat osoitteesta espoo.fi/lastenviikonloppu(ulkoinen linkki, avautuu uuteen ikkunaan).</p><p>Lasten viikonlopussa ovat mukana Espoon kulttuurikeskus, Sellosali, Näyttelykeskus WeeGee, Kannusali, Lasten kulttuurikeskus Aurora, Vindängen, Espoon kaupunginkirjasto sekä Espoonlahden kulttuuri.</p><p>Espoon Lasten viikonloppu toteutetaan osana Lasten oikeuksien viikon ohjelmaa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnc7bagqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66127", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1201885, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T08:17:43.363662Z", "last_modified_time": "2025-07-07T08:17:43.363681Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772231.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201885/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T08:17:43.240598Z", "last_modified_time": "2025-11-07T12:13:46.143289Z", "date_published": null, "start_time": "2025-11-14", "end_time": "2026-04-11", "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, "location_extra_info": null, "name": { "fi": "Echoes Through Light-Years – Näyttely", "sv": "Echoes Through Light-Years – Utställning", "en": "Echoes Through Light-Years – Exhibition" }, "short_description": { "fi": "Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?", "sv": "Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?", "en": "Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?" }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years", "sv": "http://www.annantalo.fi/sv/evenemang/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years", "en": "http://www.annantalo.fi/en/events/event/84820D87546D143CC414AC64E798D957/Echoes_Through_Light-Years" }, "description": { "fi": "<p>Kaukana Maasta, kylmien tähtien katveessa, hiljainen kadonneiden esineiden tähdistö liikkuu hitaasti. Tutkiva katse huomaa sen. Onko se viesti vai vain jokin jälki?</p><p>Echoes Through Light-Years (Kaikuja valovuosien takaa) on leikkisä tutkimusmatka, jossa taiteilijat Alves Ludovico ja Mariana Núñez Sánchez kutsuvat nuoret tutkijat tulkitsemaan hiljaisen maailmojenvälisen lähetyksen. Veistokset leijuvat matalalla kuin eksyneet satelliitit. Robotti vaeltaa huoneessa yksinäisellä tehtävällään. Kaksi kaukaista olentoa yrittää ymmärtää toisiaan ilman yhteistä kieltä, tukeutuen vain eleisiin ja arvailuun.</p><p>Mitä haluaisit sanoa kummalliselle toiselle valovuosien päässä? Ja mitä meidän jäänteemme kertoisivat meistä, vaikka emme itse sanoisi yhtään mitään?</p><p>Näyttelyn ovat toteuttaneet taiteilijat <b>Alves Ludovico</b> ja <b>Mariana Núñez Sánchez</b>, kuraattori <b>Isabela Hueara Carneiro</b> ja äänitaiteilija <b>Haiyun Yu</b>.</p><p>Näyttelyn avajaiset 13.11. klo 17–19, tervetuloa!</p><p>_</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kesän 2024 aikana hakuun tuli 126 hakemusta, joiden joukosta Annantalon oppilasraati valitsi kolme näyttelyä toisen kerroksen galleriaan.</p>", "sv": "<p>Långt från jorden, bland de kalla stjärnorna, roterar en tyst konstellation av förlorade saker långsamt. En nyfiken blick faller på den. Är det här ett meddelande eller bara ett spår?</p><p>Echoes Through Light-Years (Ekar genom ljusår) är en lekfull utforskning där konstnärerna Alves Ludovico och Mariana Núñez Sánchez bjuder in unga utforskare att avkoda en tyst överföring mellan världar. Skulpturer driver lågt som förlorade satelliter. En robot vandrar runt i rummet på ett ensamt uppdrag. Två avlägsna varelser försöker förstå varandra utan ett gemensamt språk och förlitar sig endast på gester och gissningar.</p><p>Vad skulle du vilja säga till en nyfiken annan, ljusår bort? Och vad skulle våra efterlämningar säga om oss, även då vi inte säger någonting alls?</p><p>Utställningen skapades av konstnärerna <b>Alves Ludovico</b> och <b>Mariana Núñez Sánchez</b>, curatorn <b>Isabela Hueara Carneiro</b> och ljudkonstnären <b>Haiyun Yu</b>.</p><p>Vernissagen är den 13.11. kl. 17–19 – Välkommen!</p><p>_</p><p>Utställningen har valts till repertoaren genom Annegårdens öppna ansökan. Under sommaren 2024 lämnades 126 ansökningar av vilka Annegårdens elevråd valde tre utställningar till galleriet på andra våningen.</p>", "en": "<p>Far from Earth, among the cold stars, a quiet constellation of lost things turns slowly. A curious gaze meets it. Is this a message, or just a trace?</p><p>Echoes Through Light-Years is a playful exploration in which artists Alves Ludovico and Mariana Núñez Sánchez invite young explorers to decode a quiet transmission between worlds. Sculptures drift low like lost satellites. A robot roves the room on a lonely quest. Two distant beings attempt to understand each other without a common tongue, relying only on gestures and guesswork.</p><p>What would you want to say to a curious other, light-years away? And what might our leftovers say about us, even if we say nothing at all?</p><p>The exhibition was created by artists <b>Alves Ludovico</b> and <b>Mariana Núñez Sánchez</b>, curator <b>Isabela Hueara Carneiro</b>, and sound artist <b>Haiyun Yu</b>.</p><p>Exhibition opening on November 13th from 17 to 19– Welcome!</p><p>_</p><p>The exhibition was selected for the programme through Annantalo’s open call. During the summer of 2024, 126 applications were submitted, from which Annantalo’s student jury selected three exhibitions for the gallery on the second floor of the building.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66127/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-3880", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "route:<nolink>" }, "price": null, "description": null } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1493762, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T12:05:30.846196Z", "last_modified_time": "2025-11-07T12:05:30.846224Z", "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493762/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:59:01.104326Z", "last_modified_time": "2025-11-07T12:05:31.225491Z", "date_published": null, "start_time": "2025-11-15T16:10:00Z", "end_time": "2025-11-15T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Päälämpiö", "sv": "Huvudfoajé", "en": "Main Foyer" }, "name": { "fi": "HKO: Pieni alkusoitto", "sv": "HSO – Liten ouvertyr ", "en": "HPO – Little Overture " }, "short_description": { "fi": "Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.", "sv": "Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.", "en": "HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "https://helsinginkaupunginorkesteri.fi/fi/node/3880", "sv": "https://helsinginkaupunginorkesteri.fi/sv/node/3880", "en": "https://helsinginkaupunginorkesteri.fi/en/node/3880" }, "description": { "fi": "<p>Musiikkitalon Päälämpiössä konsertoivat helsinkiläisten musiikkiopistojen oppilaat.</p>", "sv": "<p>Elever från musikinstituten i Helsingfors uppträder i Musikhusets huvudfoajé före HSOs konserter inleds.</p>", "en": "<p>HPO has invited music schools in Helsinki to perform in the main foyer of the Helsinki Music Centre before its concerts.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-3880/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnf4e2roe", "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:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2qiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2rai/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-11-07T10:45:11.399776Z", "last_modified_time": "2025-11-07T10:45:11.399794Z", "date_published": null, "start_time": "2025-11-15T10:30:00Z", "end_time": "2025-11-29T12: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, "location_extra_info": null, "name": { "fi": "Itsellisten vanhempien perhetapaaminen", "en": "Family reunion for independent parents" }, "short_description": { "fi": "Itsellisten vanhempien perhetapaaminen klo 12.30–14.00 \n\nHengähdä hetki hyvässä seurassa.", "en": "Family meeting for independent parents from 12:30 to 14:00 \n\nTake a break in good company " }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p>La 15. & 29.11. Itsellisten vanhempien perhetapaaminen klo 12.30–14.00 Entressen kirjaston Sinisessä huoneessa.</p><p>Hengähdä hetki hyvässä seurassa ❤</p><p>Tervetuloa itsellisille vanhemmille kokoontumaan yhdessä, jakamaan vertaistukea ja tutustumaan toisiinsa.</p><p>Tervetulleeksi toivottamassa Mirka, itsekin itsellinen vanhempi. </p><p>Tarjolla pientä purtavaa ja kahvia/teetä.</p>", "en": "<p>Sat 15. & 29.11. Family meeting for independent parents from 12.30–14.00 in the Blue Room of the Entresse Library.</p><p>Take a moment to breathe in good company ❤</p><p>Welcome to independent parents to gather together, share peer support and get to know each other.</p><p>Welcome by Mirka, an independent parent herself. </p><p>Snacks and coffee/tea available.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnf4e2roe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-272222222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [ { "id": 1491323, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-07T09:12:16.221071Z", "last_modified_time": "2025-11-07T09:12:16.221086Z", "url": "https://helsinginkaupunginorkesteri.fi/sites/default/files/2025-10/tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "name": "tuomas_ylinen_c_marko_rantanen_1920x1080.jpg", "cropping": "", "photographer_name": "Helsingin kaupunginorkesteri", "alt_text": null, "data_source": "hko", "publisher": "ahjo:u4804001030", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491323/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:24:28.712201Z", "last_modified_time": "2025-11-07T10:24:28.712218Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-272222222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-27222222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:22:50.458088Z", "last_modified_time": "2025-11-07T10:22:50.458118Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-27222222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-2722222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:17:22.377879Z", "last_modified_time": "2025-11-07T10:17:22.377899Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-2722222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-272222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:16:34.912510Z", "last_modified_time": "2025-11-07T10:16:34.912525Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-272222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "hko:2-27222222", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:20633/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11185/?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:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "http://www.lippupalvelu.fi/artist/helsingin-kaupunginorkesteri-tickets/942997?brand=fi_hko" }, "price": { "fi": "9.00 - 17.50 €", "sv": "9.00 - 17.50 €", "en": "9.00 - 17.50 €" }, "description": { "fi": "Normaalihinta", "sv": "Normala priset", "en": "Normal price" } } ], "data_source": "hko", "publisher": "ahjo:u4804001030", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-07T10:16:05.372968Z", "last_modified_time": "2025-11-07T10:16:05.372984Z", "date_published": null, "start_time": "2026-01-01T10:25:58Z", "end_time": "2026-01-01T17: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, "location_extra_info": { "fi": "Konserttisali", "sv": "Konsertsalen", "en": "Concert Hall" }, "name": { "fi": "Testinimi", "sv": "Test namn", "en": "Test name" }, "short_description": { "fi": "Lyhyt.", "sv": "Kort.", "en": "Short." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "notarealurlduh.com" }, "description": { "fi": "Tämä on testitapahtuma.", "sv": "Den här är en test.", "en": "This is a test." }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/hko:2-27222222/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:1ecfd75d-d9b2-4c47-bedb-679b4c22c746", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p1393/?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:p2771/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=61125_LE_Kielivalinnat_EK1679173119" }, "price": { "fi": "0" }, "description": null } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [], "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/kulke:732/?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:p1393/?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:p2771/?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" } ], "created_time": "2025-11-06T20:17:49.819468Z", "last_modified_time": "2025-11-06T20:22:44.633410Z", "date_published": "2025-11-06T20:17:16Z", "start_time": "2025-11-10T07:00:00Z", "end_time": "2025-11-10T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 10, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 25, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-07T08:00:00+02:00", "enrolment_end_time": "2025-11-10T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": { "fi": "Ylätila" }, "name": { "fi": "6/11/25 LE Kielivalinnat EK", "sv": "6/11/25 LE Kielivalinnat EK SV" }, "short_description": { "fi": "Lyhyt kuvaus FI", "sv": "Lyhyt kuvaus SV" }, "provider_contact_info": null, "provider": { "fi": "Annantalo", "sv": "Annantalo SV" }, "info_url": null, "description": { "fi": "<div><p>Tarkka kuvaus FI</p></div>", "sv": "<div><div>Tarkka kuvaus SV</div></div>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:1ecfd75d-d9b2-4c47-bedb-679b4c22c746/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67256", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491321, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:08.298587Z", "last_modified_time": "2025-11-06T15:13:08.298598Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777758.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491321/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-06T15:13:08.198112Z", "last_modified_time": "2025-11-06T15:13:08.420299Z", "date_published": null, "start_time": "2025-11-20T12:00:00Z", "end_time": "2025-11-20T12:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "sv": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "en": "Lastenkulttuuria jokaiselle: Kun kirja avataan" }, "short_description": { "fi": "Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.", "sv": "När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.", "en": "When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "sv": "http://www.annantalo.fi/sv/evenemang/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "en": "http://www.annantalo.fi/en/events/event/F96A88B4D8B89A46BEF3D6979ED52EFC/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan" }, "description": { "fi": "<p>Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.</p><p>Työpajoissa tutustutaan lasten kanssa kirjan salaisuuksiin kirjailijan ja kuvittajan ja näyttelijän kanssa. Lapset saavat esittää kysymyksiä paikalla oleville tekijöille, esittää omia näkemyksiään kirjan tarinasta: paikoista, henkilöistä, juonesta. He saavat myös asettua kriitikon, kuvittajan ja kirjailijan asemaan ja kertoa, miten he olisivat jonkin kirjan sisältämistä asioista kertoneet tai kuvittaneet. Näyttelijä tarjoutuu heidän käyttöönsä ja rakentaa lasten ehdotusten mukaan kirjan henkilöä, tapahtumia ja varsinkin kirjan henkilöiden päässä olevia ajatuksia, joita ei aina ole kirjaan kirjoitettu. <br> <br>Keskustelussa on tarkoitus myös pohtia, miksi vieressä istujan mielipide henkilöistä, tapahtumista, paikoista onkin toisenlainen kuin oma. Mistä erot voisivat johtua? Onko edes olemassa oikeaa tapaa lukea, katsoa ja ymmärtää tekstiä ja kuvia? <br> <br>Myös esiintyjät saavat oman puheenvuoronsa, he kertovat, miten tarina ja kuva heidän kynästään syntyy, miten tarinaa rakennetaan näyttämölle. Entä jos kirjan päähenkilöllä onkin punainen tukka, mutta näyttelijän hiukset ovatkin maantienväriset? Onko tällä väliä? Lopuksi lapset saavat kuvittaa ja esittää itse kertomansa tapahtuman, joka voisi olla kirjan kansien välissä. <br> <br>Työpajoissa ollaan herkkäkorvaisia ja edetään lasten esittämien kysymysten ja näkemysten mukaan, ei aikuisten opetustilannetta.</p><p><b>Ilmoittautuminen työpajoihin</b><br>Työpajat ovat maksuttomia, mutta vaativat ilmoittautumisen etukäteen. Lähetä sähköposti Kaisa Langelle ja ilmoita kumpaan työpajaan olette lapsen/lasten kanssa tulossa. Ilmoittaudu sähköpostitse viimeistään 19.11.: kaisa.lange@gmail.com</p><p>Kohderyhmä: 5–8-vuotiaat <br>Kieli: suomi <br>Vapaa pääsy</p><p>Järj. Pro lastenkirjallisuus ry</p>", "sv": "<p>När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.</p><p>Man bekantar sig tillsammans med barnen, författaren, illustratören och skådespelaren med bokens hemligheter under evenemanget. Barnen får ställa frågor till upphovsmännen på plats, framföra sina egna åsikter om bokens berättelse: platser, personer, handling. De får också ställa sig i kritikerns, illustratörens och författarens position och berätta hur de skulle ha berättat eller illustrerat något i bokens innehåll. Skådespelaren ställer sig till deras förfogande och skapar enligt barnens förslag bokens karaktär, evenemang och i synnerhet de tankar som finns i huvudet på bokens karaktärer, vilka inte alltid skrivits i boken. <br> <br>Det är meningen att man i diskussionen även funderar på varför den bredvidsittande personens åsikt om karaktärerna, händelserna och platserna är annorlunda än den egna. Vad kunde skillnaderna bero på? Finns det ens ett rätt sätt att läsa, titta på och förstå text och bilder? <br> <br>Även uppträdarnafår ett eget anförande, där de berättar hur berättelsen och bilderna uppstår ur deras penna, hur berättelsen byggs upp på scenen. Tänk om bokens huvudperson har rött hår, men skådespelarens hår är landsvägsgrått? Spelar det någon roll? Slutligen får barnen illustrera och presentera en händelse som de själva berättar och som kunde finnas mellan en bokpärm. <br> <br>Under evenemangen lyssnar man noggrant på barnen och framskrider enligt deras frågor och åsikter, inte enligt de vuxnas undervisningssituation.</p><p>Workshopparna är avgiftsfria, men kräver förhandsanmälan. Skicka ett e-postmeddelande och meddela till vilken workshop ni kommer med barnet/barnen. Anmäl dig per e-post senast 19.11. kaisa.lange@gmail.com</p><p>Målgrupp: 5–8-åringar<br>Språk: finska</p>", "en": "<p>When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens.</p><p>In these events, children will explore the secrets if books together with the author, illustrator and actor. The children can ask questions to them and present their own views about the story in the book, its places, characters and the plot. They can also step into the shoes of a critic, an illustrator and an author and share how they would have expressed or illustrated some of the things in the book. The actor will be available to them, following the children’s suggestions and depicting the book’s character, the events and especially the thoughts inside the heads of the book characters, which may not always have been written on the pages. <br> <br>The purpose of the discussion is also to consider why the person sitting next to you may have such a different view of the character, the events and the places. What could cause these differences? And is there just one right way to read, to watch and to understand a text and images? <br> <br>The performers are also given their turn to share how the stories and illustrations flow from their pens and how the story is built on stage. What happens when the book’s main character has red hair, but the actor’s hair is mouse-coloured? Does this matter? Finally, the children will get to illustrate and present a story told by them that could be found between the covers of a book. <br> <br>We will proceed sensitively in these events, moving forward based on the questions and views presented by the children; this is not an educational lecture for adults.</p><p>The workshops are free of charge, but require prior registration. Please send an email to Kaisa Lange, kaisa.lange@gmail.com and indicate which workshop you and your child/children will attend. Please register by email no later than November 19th.</p><p>Target group: 5–8-year-olds<br>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67256/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67099", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491320, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:07.934445Z", "last_modified_time": "2025-11-06T15:13:07.934456Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_777757.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491320/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-06T15:13:07.832775Z", "last_modified_time": "2025-11-06T15:13:08.092931Z", "date_published": null, "start_time": "2025-11-20T11:00:00Z", "end_time": "2025-11-20T11:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "sv": "Lastenkulttuuria jokaiselle: Kun kirja avataan", "en": "Lastenkulttuuria jokaiselle: Kun kirja avataan" }, "short_description": { "fi": "Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.", "sv": "När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.", "en": "When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "sv": "http://www.annantalo.fi/sv/evenemang/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan", "en": "http://www.annantalo.fi/en/events/event/96DE90632A402B1E30C8AE8815EEA370/Lastenkulttuuria_jokaiselle_Kun_kirja_avataan" }, "description": { "fi": "<p>Kun kirja avataan, siellä on kirjaimia ja kuvia. Kuka ne tekee? Ja sitten vielä ne, jotka kirjoittavat ja piirtävät. Ja vielä hän, joka lukee tai kuuntelee.</p><p>Työpajoissa tutustutaan lasten kanssa kirjan salaisuuksiin kirjailijan ja kuvittajan ja näyttelijän kanssa. Lapset saavat esittää kysymyksiä paikalla oleville tekijöille, esittää omia näkemyksiään kirjan tarinasta: paikoista, henkilöistä, juonesta. He saavat myös asettua kriitikon, kuvittajan ja kirjailijan asemaan ja kertoa, miten he olisivat jonkin kirjan sisältämistä asioista kertoneet tai kuvittaneet. Näyttelijä tarjoutuu heidän käyttöönsä ja rakentaa lasten ehdotusten mukaan kirjan henkilöä, tapahtumia ja varsinkin kirjan henkilöiden päässä olevia ajatuksia, joita ei aina ole kirjaan kirjoitettu. <br> <br>Keskustelussa on tarkoitus myös pohtia, miksi vieressä istujan mielipide henkilöistä, tapahtumista, paikoista onkin toisenlainen kuin oma. Mistä erot voisivat johtua? Onko edes olemassa oikeaa tapaa lukea, katsoa ja ymmärtää tekstiä ja kuvia? <br> <br>Myös esiintyjät saavat oman puheenvuoronsa, he kertovat, miten tarina ja kuva heidän kynästään syntyy, miten tarinaa rakennetaan näyttämölle. Entä jos kirjan päähenkilöllä onkin punainen tukka, mutta näyttelijän hiukset ovatkin maantienväriset? Onko tällä väliä? Lopuksi lapset saavat kuvittaa ja esittää itse kertomansa tapahtuman, joka voisi olla kirjan kansien välissä. <br> <br>Työpajoissa ollaan herkkäkorvaisia ja edetään lasten esittämien kysymysten ja näkemysten mukaan, ei aikuisten opetustilannetta.</p><p><b>Ilmoittautuminen työpajoihin</b><br>Työpajat ovat maksuttomia, mutta vaativat ilmoittautumisen etukäteen. Lähetä sähköposti Kaisa Langelle ja ilmoita kumpaan työpajaan olette lapsen/lasten kanssa tulossa. Ilmoittaudu sähköpostitse viimeistään 19.11.: kaisa.lange@gmail.com</p><p>Kohderyhmä: 5–8-vuotiaat <br>Kieli: suomi <br>Vapaa pääsy</p><p>Järj. Pro lastenkirjallisuus ry</p>", "sv": "<p>När boken öppnas, finns bokstäver och bilder där. Vem skapar dem? Och sedan ännu de som skriver och tecknar. Och ännu hen som läser eller lyssnar.</p><p>Man bekantar sig tillsammans med barnen, författaren, illustratören och skådespelaren med bokens hemligheter under evenemanget. Barnen får ställa frågor till upphovsmännen på plats, framföra sina egna åsikter om bokens berättelse: platser, personer, handling. De får också ställa sig i kritikerns, illustratörens och författarens position och berätta hur de skulle ha berättat eller illustrerat något i bokens innehåll. Skådespelaren ställer sig till deras förfogande och skapar enligt barnens förslag bokens karaktär, evenemang och i synnerhet de tankar som finns i huvudet på bokens karaktärer, vilka inte alltid skrivits i boken. <br> <br>Det är meningen att man i diskussionen även funderar på varför den bredvidsittande personens åsikt om karaktärerna, händelserna och platserna är annorlunda än den egna. Vad kunde skillnaderna bero på? Finns det ens ett rätt sätt att läsa, titta på och förstå text och bilder? <br> <br>Även uppträdarnafår ett eget anförande, där de berättar hur berättelsen och bilderna uppstår ur deras penna, hur berättelsen byggs upp på scenen. Tänk om bokens huvudperson har rött hår, men skådespelarens hår är landsvägsgrått? Spelar det någon roll? Slutligen får barnen illustrera och presentera en händelse som de själva berättar och som kunde finnas mellan en bokpärm. <br> <br>Under evenemangen lyssnar man noggrant på barnen och framskrider enligt deras frågor och åsikter, inte enligt de vuxnas undervisningssituation.</p><p>Workshopparna är avgiftsfria, men kräver förhandsanmälan. Skicka ett e-postmeddelande och meddela till vilken workshop ni kommer med barnet/barnen. Anmäl dig per e-post senast 19.11. kaisa.lange@gmail.com</p><p>Målgrupp: 5–8-åringar<br>Språk: finska</p>", "en": "<p>When a book opens, it’s filled with letters and pictures. Who makes them all? And then there are the ones that write and draw. And the one who reads or listens.</p><p>In these events, children will explore the secrets if books together with the author, illustrator and actor. The children can ask questions to them and present their own views about the story in the book, its places, characters and the plot. They can also step into the shoes of a critic, an illustrator and an author and share how they would have expressed or illustrated some of the things in the book. The actor will be available to them, following the children’s suggestions and depicting the book’s character, the events and especially the thoughts inside the heads of the book characters, which may not always have been written on the pages. <br> <br>The purpose of the discussion is also to consider why the person sitting next to you may have such a different view of the character, the events and the places. What could cause these differences? And is there just one right way to read, to watch and to understand a text and images? <br> <br>The performers are also given their turn to share how the stories and illustrations flow from their pens and how the story is built on stage. What happens when the book’s main character has red hair, but the actor’s hair is mouse-coloured? Does this matter? Finally, the children will get to illustrate and present a story told by them that could be found between the covers of a book. <br> <br>We will proceed sensitively in these events, moving forward based on the questions and views presented by the children; this is not an educational lecture for adults.</p><p>The workshops are free of charge, but require prior registration. Please send an email to Kaisa Lange, kaisa.lange@gmail.com and indicate which workshop you and your child/children will attend. Please register by email no later than November 19th.</p><p>Target group: 5–8-year-olds<br>Language: Finnish</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67099/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67232", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1491319, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-06T15:13:07.527476Z", "last_modified_time": "2025-11-06T15:13:07.527491Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780034.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491319/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-06T15:13:07.422814Z", "last_modified_time": "2025-11-06T15:13:07.662214Z", "date_published": null, "start_time": "2025-11-20T08:00:00Z", "end_time": "2025-11-20T14: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, "location_extra_info": null, "name": { "fi": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät", "sv": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät", "en": "Lastenkulttuuria jokaiselle: Bravo! -festivaali ja Assitej esittäytyvät" }, "short_description": { "fi": "Tule kuulemaan Bravo! -festivaalista ja lapsille ja nuorille suunnatun esittävän taiteen järjestöstä Suomen Assitejsta." }, "provider_contact_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_", "sv": "http://www.annantalo.fi/sv/evenemang/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_", "en": "http://www.annantalo.fi/en/events/event/EBD50DB95D266A87B3750A9AD1DB9AA2/Lastenkulttuuria_jokaiselle_Bravo_-festivaali_ja_Assitej_esittaytyvat_" }, "description": { "fi": "<p>Tule kuulemaan Bravo! -festivaalista ja lapsille ja nuorille suunnatun esittävän taiteen järjestöstä Suomen Assitejsta.</p><p>Esittelypisteellä voit tavata festivaalin tekijöitä ja kuulla lisää Assitejin toiminnasta.</p><p>Vapaa pääsy</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67232/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfswy3um", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "price": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfswyzry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfswy2pa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfswy3bi/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-06T13:14:09.691787Z", "last_modified_time": "2025-11-06T13:14:09.691805Z", "date_published": null, "start_time": "2025-11-19T08:00:00Z", "end_time": "2025-12-17T09: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, "location_extra_info": { "fi": "Salonki" }, "name": { "fi": "Kundaliinijooga" }, "short_description": { "fi": "Tervetuloa maksuttomalle joogatunnille. Tunti sopii hyvin myös ensimmäistä kertaa osallistuvalle. " }, "provider_contact_info": null, "provider": null, "info_url": null, "description": { "fi": "<p>Tervetuloa maksuttomalle joogatunnille. Tunti sopii hyvin myös ensimmäistä kertaa osallistuvalle. </p><p>Kirjastolla on 10kpl lainattavia joogamattoja. Jos sinulla on kotona oma joogamatto, niin suosittelemme tuomaan oman maton tai alustan mukanasi. </p><p>Kannattaa myös ottaa lämmin huivi tai vastaava loppurentoutuksen ajaksi.</p><p><br></p><p>Kerrat ja teema:</p><p>KE 19.11. KLO 10-11 Sisäinen tuli.</p><p>\"Vahvistaa ja herättää sisäisen voimasi\"</p><p><br></p><p>KE 26.11. KLO 10-11. Tietoinen hengitys.</p><p>\"Ja sinusta tulee kauniisti sointuva harmonia\"</p><p><br></p><p>KE 17.12. KLO 10-11. Sydänkeskuksen aktivointi.</p><p>\"Suurella sydämellä, kohti vuoden vaihdetta\"</p><p><br></p><p>--</p><ul><li>Anna itsellesi lahjaksi aikaa hengähtää</li><li>Tule mukaan kundaliinijoogatunnille, jossa hengitys, liike ja ääni johdattavat sinut lempeästi kohti vuoden loppua.</li><li>Anna sisäisen tulen lämmittää talven tullessa. Löydä oma voimasi ja vahvista kehoa ja mieltä.</li></ul>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfswy3um/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66071", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3883402", "sv": "https://www.lippu.fi/eventseries/name-3883402", "en": "https://www.lippu.fi/eventseries/name-3883402" }, "price": { "fi": "15-48 € / 30-79 € 2 konserttia", "sv": "15-48 € / 30-79 € 2 konserttia", "en": "15-48 € / 30-79 € 2 konserttia" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 652564, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T15:13:55.528124Z", "last_modified_time": "2025-04-30T15:13:55.528139Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771302.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/652564/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T15:13:55.454227Z", "last_modified_time": "2025-11-06T13:13:42.998688Z", "date_published": null, "start_time": "2025-11-16T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "The Beat Goes On", "sv": "The Beat Goes On", "en": "The Beat Goes On" }, "short_description": { "fi": "The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.", "sv": "The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.", "en": "The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:" }, "provider_contact_info": null, "provider": { "fi": "Back To The Sixties edistämisyhdistys ry", "sv": "Back To The Sixties edistämisyhdistys ry", "en": "Back To The Sixties edistämisyhdistys ry" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On", "en": "http://www.savoyteatteri.fi/en/events/event/50AE9DCA2DAC6CFF092A5F888FDCDC6B/The_Beat_Goes_On" }, "description": { "fi": "<p>The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p>Lauantaina 15.11. klo 18.00 alkaen: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunnuntaina 16.11. klo 16.00 alkaen: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Kesto n. 3 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Liput: 48 €/15 € lapsi, molemmat konsertit 79 €/30 € lapsi + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta).</p>", "sv": "<p>The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.</p><p>Lördag 15.11 från kl. 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Söndag 16.11 från kl. 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Längd ca 3 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetter: 48 €/barn 15 €, båda konserterna 79 €/barn 30 € + bokningsavgifter (från 1,50 € + 0,65 % per bokning).</p>", "en": "<p>The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:</p><p>Saturday 15 November starting at 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunday 16 November starting at 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Duration approx. 3 h, intermission included.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Tickets: €48/children €15, both concerts €79/children €30 + order fees (starting at €1.50 + 0.65% of the order).</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66071/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66070", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3883402", "sv": "https://www.lippu.fi/eventseries/name-3883402", "en": "https://www.lippu.fi/eventseries/name-3883402" }, "price": { "fi": "15-48 € / 30-79 € 2 konserttia", "sv": "15-48 € / 30-79 € 2 konserttia", "en": "15-48 € / 30-79 € 2 konserttia" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 652563, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-04-30T15:13:55.255442Z", "last_modified_time": "2025-04-30T15:13:55.255487Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_771301.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/652563/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-30T15:13:55.137648Z", "last_modified_time": "2025-11-06T13:13:42.510239Z", "date_published": null, "start_time": "2025-11-15T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "name": { "fi": "The Beat Goes On", "sv": "The Beat Goes On", "en": "The Beat Goes On" }, "short_description": { "fi": "The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.", "sv": "The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.", "en": "The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:" }, "provider_contact_info": null, "provider": { "fi": "Back To The Sixties edistämisyhdistys ry", "sv": "Back To The Sixties edistämisyhdistys ry", "en": "Back To The Sixties edistämisyhdistys ry" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On", "en": "http://www.savoyteatteri.fi/en/events/event/F0C03FB9746E55A9769B4BFA22CCF3C2/The_Beat_Goes_On" }, "description": { "fi": "<p>The Beat Goes On palaa muutaman vuoden tauon jälkeen Savoy-teatteriin. Luvassa on aitoa elävää Sixties-musaa, kuulemme iki-ihanat 60-luvun sävelet lukuisten alkuperäisten 60-luvun muusikoiden esittäminä. Lisäksi mukavia ihmisiä ja mahtavaa tunnelmaa. Ohjelma on vanhaan tuttuun tapaan jaettu kahdelle illalle.</p><p>Lauantaina 15.11. klo 18.00 alkaen: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunnuntaina 16.11. klo 16.00 alkaen: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Kesto n. 3 h, sisältää väliajan.</p><p>Permanto K18 anniskelualue. Parveke ikärajaton, ei anniskelua.</p><p>Liput: 48 €/15 € lapsi, molemmat konsertit 79 €/30 € lapsi + tilausmaksut (alk. 1,50 € + 0,65 % tilauksesta).</p>", "sv": "<p>The Beat Goes On återvänder till Savoy-teatern efter ett uppehåll på några år. Det utlovas äkta levande 60-talsmusik, med underbara melodier från årtiondet framförda av många av de ursprungliga musikerna från 60-talet. Dessutom trevliga människor och en härlig atmosfär. Programmet är som vanligt uppdelat på två kvällar.</p><p>Lördag 15.11 från kl. 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Söndag 16.11 från kl. 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Längd ca 3 h, inklusive paus.</p><p>Parkett K-18-område med serveringstillstånd. Balkongen utan åldersgräns, ingen servering.</p><p>Biljetter: 48 €/barn 15 €, båda konserterna 79 €/barn 30 € + bokningsavgifter (från 1,50 € + 0,65 % per bokning).</p>", "en": "<p>The Beat Goes On returns to the Savoy Theatre after a break of a few years. The event delivers real, live Sixties music, with the ever-popular tunes of the 60s performed by a host of original 60s musicians. Plus great people and an amazing atmosphere! As usual, the programme is spread over two evenings:</p><p>Saturday 15 November starting at 18:00: Express, The First, The Goldies, The Roosters, The Sounds, Topmost, The Board.</p><p>Sunday 16 November starting at 16:00: Jiri Nikkinen The Beatles Tribute Band, Sixties Jokers, The Esquires, Tinos, Jim & The Beatmakers, The Sixties Blondies.</p><p>Duration approx. 3 h, intermission included.</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>Tickets: €48/children €15, both concerts €79/children €30 + order fees (starting at €1.50 + 0.65% of the order).</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66070/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }