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=77
{ "meta": { "count": 21732, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=78", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=76" }, "data": [ { "id": "kulke:66949", "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/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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490636, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-09-04T14:14:18.075486Z", "last_modified_time": "2025-09-04T14:14:18.075508Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776984.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490636/?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-09-04T14:14:17.950083Z", "last_modified_time": "2025-11-13T14:13:19.490137Z", "date_published": null, "start_time": "2025-11-14", "end_time": "2025-12-20", "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, "short_description": { "fi": "Tule katsomaan Annantalon jouluvitriinejä, joissa leikki on tehty näkyväksi!", "sv": "Kom och titta på julvitrinerna på Annegården, där leken har synliggjorts.", "en": "Come and see Annantalo's Christmas displays, where play is made visible." }, "provider": null, "name": { "fi": "Annantalon jouluvitriinit", "sv": "Julvitrinerna på Annegården", "en": "Annantalo's Christmas displays" }, "description": { "fi": "<p>Tule katsomaan Annantalon jouluvitriinejä, joissa leikki on tehty näkyväksi!</p><p>Annantalon 2 krs. käytävälle rakentuu kaksi jouluista lelumaailmaa.</p><p>Ensimmäisessä vitriinissä näkee junaleikkien levittäytyneen lastenhuoneen lattialle ja voi ihailla junan ja lentokoneiden liikettä. Piilossa ja esillä on monenlaisia eläinhahmoja.</p><p>Toisessa vitriinissä talvisen Annantalon pihan valtaavat keramiikan harrasteryhmien Terran ja Engoben oppilastyöt, keraamiset miniatyyri-lumiveistokset. Koko Annantalon henkilökunta on jouluvitriinissä esillä Lego -hahmoina, kuten itse Annantalokin!</p><p>Jouluvitriinit avautuvat 14.11. klo 17</p><p>Tekijät: Nicolas Salo, Heidi Puumalainen, oppilasryhmät Terra ja Engobe</p>", "sv": "<p>Kom och titta på julvitrinerna på Annegården, där leken har synliggjorts.</p><p>Två juliga leksaksvärldar byggs i korridoren på andra våningen på Annegården. I den första vitrinen kan du se tåglekarna utspridda över golvet i barnrummet och beundra tågets och flygplanens rörelser. Det finns många djurfigurer att se och hitta.</p><p>I den andra vitrinen övertas Annegårdens vintriga innergård av keramiska snöskulpturer i miniatyr som skapats av studerande i keramikhobbygrupperna Terra och Engobe. Hela Annegårdens personal står framme i julvitrinen som Legofigurer, liksom även Annegården själv!</p><p>Skapare: Nicolas Salo, Heidi Puumalainen, studerandegrupperna Terra och Engobe</p>", "en": "<p>Come and see Annantalo's Christmas displays, where play is made visible.</p><p>Two displays filled with Christmas toys will be built in the corridor of the 2nd floor of Annantalo. In the first display case, you will be able to see a toy train spread across the children's room floor and admire the movement of the train and planes. A menagerie of animal characters will be hidden or on display in the case.</p><p>In another display case, the courtyard of the Annantalo will be dominated by the ceramic miniature snow sculptures created by students of the Terra and Engobe ceramics groups. The entire Annantalo staff will be displayed as Lego figures in the Christmas display, as well as Annantalo itself!</p><p>Creators: Nicolas Salo, Heidi Puumalainen, Terra and Engobe student groups</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5AA6338CF344AEFCCE1D68102C17BA0B/Annantalon_jouluvitriinit_", "sv": "http://www.annantalo.fi/sv/evenemang/event/5AA6338CF344AEFCCE1D68102C17BA0B/Julvitrinerna_pa_Annegarden_", "en": "http://www.annantalo.fi/en/events/event/5AA6338CF344AEFCCE1D68102C17BA0B/Annantalo_s_Christmas_displays_" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66949/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66660", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490411, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-18T10:14:58.419201Z", "last_modified_time": "2025-08-18T10:14:58.419283Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_775585.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490411/?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-08-18T10:14:58.271165Z", "last_modified_time": "2025-11-13T13:13:20.295096Z", "date_published": null, "start_time": "2025-11-28", "end_time": "2026-03-14", "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, "short_description": { "fi": "Moniulotteiset maalaukset vievät matkalle eri paikkoihin.", "sv": "Flerdimensionella målningar för dig på en resa till olika platser.", "en": "Yppärilä’s multidimensional paintings take you on a journey to different places." }, "provider": null, "name": { "fi": "Jenni Yppärilä: Kadulta", "sv": "Jenni Yppärilä: Från gatan", "en": "Jenni Yppärilä: From the street" }, "description": { "fi": "<p>Moniulotteiset maalaukset vievät matkalle eri paikkoihin.</p><p>Näyttely koostuu kolmiulotteisista maalauksista, jotka esittävät erilaisia rakennuksia eri kaupungeista ja maista – kuten Suomesta, Ranskasta ja Saksasta. Teokset kuvaavat rakennettua ympäristöä yksityiskohtaisesti mutta samalla taiteellisesti tulkiten. Ne tuovat katsojan lähelle paikkoja, joita usein ohitamme – katujen varsien taloja, kulmien kauppoja, rapistuneita seinäpintoja. Teokset pysäyttävät katsojan pohtimaan, miten arkkitehtuuri vaikuttaa kulkemiseemme ja olemiseemme. Ympäristöstään irrotettuina, rakennukset muuntuvat yhteiskunnan ja siellä elävän ihmisen muotokuviksi.</p><p>Näyttely on valittu ohjelmistoon Annantalon avoimen haun kautta. Kevään 2025 aikana hakuun tuli 230 hakemusta, joiden joukosta Annantalon oppilasraati valitsi viisi taiteilijaa toisen kerroksen gallerioihin sekä alakerran yhteisnäyttelyyn.</p><p>Näyttelyn avajaiset to 27.11. klo 17–19 - Tervetuloa!</p>", "sv": "<p>Flerdimensionella målningar för dig på en resa till olika platser.</p><p>Utställningen består av tredimensionella målningar som föreställer olika byggnader i olika städer och länder – så som Finland, Frankrike och Tyskland. Verken avbildar den byggda miljön på ett detaljerat sätt men samtidigt med en konstnärlig tolkning. De för besökaren nära platser som vi ofta passerar – husen längs gatorna, butikerna vid hörnen, förfallna väggytorna. Verken får besökaren att fundera över hur arkitekturen påverkar vårt sätt att gå och vara. Byggnaderna är fristående från sin omgivning och förvandlas till porträtt av samhället och de människor som lever där.</p><p>Utställningen har valts till programmet genom Annegårdens öppna utlysning. Under våren 2025 inkom 230 ansökningar, bland vilka Annegårdens elevjury valde ut fem konstnärer till gallerierna på andra våningen och till den gemensamma utställningen på nedre våningen.</p><p>Utställningens vernissage to 27.11 kl 17–19 – Välkommen!</p>", "en": "<p>Yppärilä’s multidimensional paintings take you on a journey to different places.</p><p>The exhibition will consist of three-dimensional paintings depicting different buildings from different cities and countries – such as Finland, France and Germany. The works depict the built environment in detail but with an artistic interpretation. They bring the viewer close to places we often pass by: the houses on the side of the street, the shops on the corners, the crumbling surfaces of walls. The works make the viewer consider how architecture affects the way we move and the way we are. Detached from their environment, buildings will be transformed into portraits of society and the people who live there.</p><p>The exhibition was selected for the programme through an open call at Annantalo. During the spring of 2025, Annantalo received 230 applications, from which the Annantalo student jury selected five artists for the second floor galleries and the joint exhibition downstairs.</p><p>The exhibition opening ceremony will be held on Thu 27 November at 17.00–19.00. You are welcome to come along!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_Kadulta", "sv": "http://www.annantalo.fi/sv/evenemang/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_Fran_gatan", "en": "http://www.annantalo.fi/en/events/event/E323D6ACB422F8AF18C36E172E57E65B/Jenni_Ypparila_From_the_street" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66660/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66024", "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:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-14T13:14:32.767703Z", "last_modified_time": "2025-11-13T13:13:11.625299Z", "date_published": null, "start_time": "2025-10-25T08:35:00Z", "end_time": "2025-12-13T10:35: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, "short_description": { "fi": "Potkua päivään perhesirkuksella! Lentävä lähtö lauantaihin yhteisellä temppuilulla ja hauskanpidolla.", "sv": "Starta dagen med en familjecirkus! En flygande start på lördagen med knep och kul tillsammans.", "en": "Kick off the day with a family circus! A flying start to Saturday with tricks and fun together." }, "provider": null, "name": { "fi": "PERUTTU Stadin nuorisoseurat: Perhesirkus, 7-9 -vuotiaat vanhemman kanssa – 7-9-vuotiaat aikuisen kanssa", "sv": "INSTÄLLD Stadin nuorisoseurat: Familjecirkus, 7-9 åringar med förälder – 7-9-åringar med vuxen", "en": "CANCELLED Stadin nuorisoseurat: Family circus, 7-9 year olds with a parent – 7-9 year olds with an adult" }, "description": { "fi": "<p>Potkua päivään perhesirkuksella! Lentävä lähtö lauantaihin yhteisellä temppuilulla ja hauskanpidolla.</p><p>Perhesirkus on lapsen ja vanhemman yhteinen harrastus, jossa temppuilun, tasapainoilun ja pariakrobatian keinoin annetaan hauskasti ja helposti lapselle aistivirikkeitä ja vahvistetaan lapsi-vanhempi-suhdetta. Ryhmä on suunnattu 7-9 vuotiaille lapsille yhdessä oman aikuisen kanssa. Aikaisempaa kokemusta ei tarvita. Kurssi ohjataan suomeksi ja englanniksi.</p><p>Sirkustelua järjestetään lyhytkurssina lauantaisin klo 11.35-12.35. Kausi kestää 5 kertaa ja kurssin hinta on 60 euroa. Ryhmään mahtuu 9 vanhempi-lapsi-paria ja paikat täytetään ilmoittautumisjärjestyksessä. Ryhmän ohjaajana toimii sirkusopettaja Hanna Terävä Varis. Infokirje lähetetään noin viikkoa ennen kurssin alkua sähköpostiin.</p><p>Opetuskielet: suomi ja englanti</p><p>Ilmoittautuminen tapahtuu nettisivuilla: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Ilmoittautumissivu syksyn kurssille aukeaa viimeistään 1.7. ja sulkeutuu 16.10.</p><p>Lisätiedot:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>", "sv": "<p>Starta dagen med en familjecirkus! En flygande start på lördagen med knep och kul tillsammans.</p><p>Familjecirkus är en gemensam hobby mellan ett barn och en förälder, där knep, balanshandlingar och parakrobatik ger barnet sensorisk stimulans på ett roligt och enkelt sätt och stärker relationen mellan barn och förälder. Gruppen vänder sig till barn i åldern 7-9 år tillsammans med sin egen vuxen. Ingen tidigare erfarenhet krävs. Kursen ges på finska och engelska.</p><p>Cirkusträning anordnas som en kort kurs på lördagar kl. 11.35-12.35. Säsongen varar 5 gånger och kurspriset är 60 euro. Gruppen har plats för 9 föräldra-barn-par och platserna fylls i ordningsföljd för anmälan. Gruppen leds av cirkusläraren Hanna Terävä Varis. Ett informationsbrev kommer att skickas till din e-post cirka en vecka innan kursstart.</p><p>Undervisningspråk: finska och engelska</p><p>Anmälan till aktiviteten görs på: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Anmälningssidan för höstgruppen öppnar senast 1 juli och stänger senast 16 october.</p><p>Mer information:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>", "en": "<p>Kick off the day with a family circus! A flying start to Saturday with tricks and fun together.</p><p>Family circus is a joint hobby for a child and parent, where tricks, balancing and pair acrobatics provide sensory stimulation to the child in a fun and easy way and strengthen the child-parent relationship. The group is aimed at children aged 7-9 together with their own adult. No previous experience is required. The course is taught in Finnish and English.</p><p>Circus is organised as a short course on Saturdays at 11.35-12.35. The season lasts 5 times and the course price is 60 euros. The group can accommodate 9 parent-child pairs and places are filled in the order of registration. The group is directed by circus teacher Hanna Terävä Varis. An information letter will be sent to your email about a week before the start of the course.</p><p>Teaching languages: Finnish and English</p><p>Registration for the activities can be done on the website: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. The registration page for the autumn course opens no later than 1 July and closes by 16 October.</p><p>More information:<br>https://stadi.nuorisoseurat.fi/\t<br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/3EAEBB56F46D95D899FE1917214B7414/PERUTTU_Stadin_nuorisoseurat_Perhesirkus_7-9_-vuotiaat_vanhemman_kanssa", "sv": "http://www.annantalo.fi/sv/evenemang/event/3EAEBB56F46D95D899FE1917214B7414/INSTALLD_Stadin_nuorisoseurat_Familjecirkus_7-9_aringar_med_foralder", "en": "http://www.annantalo.fi/en/events/event/3EAEBB56F46D95D899FE1917214B7414/CANCELLED_Stadin_nuorisoseurat_Family_circus_7-9_year_olds_with_a_parent" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66024/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66025", "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:223/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:301/?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:759/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25216/?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:p7277/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-04-14T13:14:32.692794Z", "last_modified_time": "2025-11-13T13:13:11.364321Z", "date_published": null, "start_time": "2025-10-25T07:30:00Z", "end_time": "2025-12-13T09:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Perhesirkuksella potkua viikonloppuun - Aloita lauantai lapsen kanssa sirkustellen!", "sv": "Kör igång helgen med en familjecirkus - Börja din lördag med en cirkusföreställning med ditt barn!", "en": "Kick off the weekend with a family circus - Start your Saturday with a circus with your child!" }, "provider": null, "name": { "fi": "PERUTTU Stadin nuorisoseurat: Perhesirkusta kaksikielisesti (suomi-englanti)! – 4-6-vuotiaat aikuisen kanssa", "sv": "INSTÄLLD Stadin nuorisoseurat: Tvåspråkig familjecirkus (finska-engelska) – 4-6-åringar med vuxen", "en": "CANCELLED Stadin nuorisoseurat: Family circus bilingually (Finnish-English) – 4-6 year olds with adult" }, "description": { "fi": "<p>Perhesirkuksella potkua viikonloppuun - Aloita lauantai lapsen kanssa sirkustellen!</p><p>Perhesirkus on lapsen ja vanhemman yhteinen harrastus, jossa temppuilun, tasapainoilun ja pariakrobatian keinoin annetaan hauskasti ja helposti lapselle aistivirikkeitä ja vahvistetaan lapsi-vanhempi-suhdetta. Ryhmä on suunnattu 4-6 -vuotiaille lapsille yhdessä oman aikuisen kanssa. Aikaisempaa kokemusta ei tarvita.</p><p>Sirkustelua järjestetään lyhytkurssina lauantaisin klo 10.30-11.30. Kausi kestää 5 kertaa ja kurssin hinta on 60 euroa. Ryhmään mahtuu 9 vanhempi-lapsi-paria ja paikat täytetään ilmoittautumisjärjestyksessä. Ryhmän ohjaajana toimii sirkusopettaja Hanna Terävä Varis. Infokirje lähetetään noin viikkoa ennen kurssin alkua sähköpostiin.</p><p>Kurssi järjestetään opintokeskus Kansalaisfoorumin tuella.</p><p>Opetuskielet ovat suomi ja englanti.</p><p>Ilmoittautuminen tapahtuu nettisivuilla: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Ilmoittautumissivu syksyn kurssille aukeaa viimeistään 1.7. ja sulkeutuu 16.10. mennessä.</p><p>Lisätietoja:<br>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>", "sv": "<p>Kör igång helgen med en familjecirkus - Börja din lördag med en cirkusföreställning med ditt barn!</p><p>Familjecirkus är en gemensam hobby mellan ett barn och en förälder, där knep, balanshandlingar och parakrobatik ger barnet sensorisk stimulans på ett roligt och enkelt sätt och stärker relationen mellan barn och förälder. Gruppen vänder sig till barn i åldern 4-6 år tillsammans med sin egen vuxen. Ingen tidigare erfarenhet krävs.</p><p>Cirkusträning anordnas som en kort kurs på lördagar kl. 10.30-11.30. Säsongen varar 5 gånger och kurspriset är 60 euro. Gruppen har plats för 9 föräldra-barn-par och platserna fylls i ordningsföljd för anmälan. Gruppen leds av cirkusläraren Hanna Terävä Varis. Ett informationsbrev kommer att skickas till din e-post cirka en vecka innan kursstart.</p><p>Kursen anordnas med stöd av studiecentrum Kansalaisfoorumi.</p><p>Undervisningspråk är finska och engelska.</p><p>Anmälan till aktiviteten görs på: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. Anmälningssidan för höstgruppen öppnar senast 1 juli och stänger senast 16 october.</p><p>Mer information:<br>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>", "en": "<p>Kick off the weekend with a family circus - Start your Saturday with a circus with your child!</p><p>Family circus is a joint hobby for a child and parent, where tricks, balancing and pair acrobatics provide sensory stimulation to the child in a fun and easy way and strengthen the child-parent relationship. The group is aimed at children aged 4-6 together with their own adult. No previous experience is required.</p><p>Circus is organised as a short course on Saturdays at 10.30-11.30. The season lasts 5 times and the course price is 60 euros. The group can accommodate 9 parent-child pairs and places are filled in the order of registration. The group is directed by circus teacher Hanna Terävä Varis. An information letter will be sent to your email about a week before the start of the course.</p><p>The course is organised with the support of The Citizen´s Forum study centre.</p><p>The course is taught in Finnish and English.</p><p>Registration for the activities can be done on the website: https://puoti.nuorisoseurat.fi/fi/p/ilmoittautuminen. The registration page for the autumn course opens no later than 1 July and closes by 16 October.</p><p>More information:</p><p>https://stadi.nuorisoseurat.fi/\t <br>Judit Kemppilä / judit.kemppila@nuorisoseurat.fi</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A7D7FC2C9A79E92D1B730DF07CC766BA/PERUTTU_Stadin_nuorisoseurat_Perhesirkusta_kaksikielisesti_suomi-englanti_", "sv": "http://www.annantalo.fi/sv/evenemang/event/A7D7FC2C9A79E92D1B730DF07CC766BA/INSTALLD_Stadin_nuorisoseurat_Tvasprakig_familjecirkus_finska-engelska_", "en": "http://www.annantalo.fi/en/events/event/A7D7FC2C9A79E92D1B730DF07CC766BA/CANCELLED_Stadin_nuorisoseurat_Family_circus_bilingually_Finnish-English_" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66025/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnh2zteme", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6062/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493789, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-13T12:29:34.645688Z", "last_modified_time": "2025-11-13T12:29:34.645703Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/b59b5e0d-9328-42e8-9490-abf665cc3818.jpg", "name": "", "cropping": "214,0,1066,853", "photographer_name": "Kuva Bruno Pixabaystä", "alt_text": "Kuvassa shakkilauta ja nappulat.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493789/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-11-13T12:45:05.724460Z", "last_modified_time": "2025-11-13T12:45:05.724481Z", "date_published": null, "start_time": "2025-12-07T11:00:00Z", "end_time": "2025-12-07T14: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": "Pointti", "sv": "Pointti", "en": "Pointti" }, "short_description": { "fi": "Shakkiturnaus", "sv": "Schackturnering", "en": "Chess tournament" }, "provider": null, "name": { "fi": "Shakkiturnaus", "sv": "Schackturnering", "en": "Chess tournament" }, "description": { "fi": "<p>Itsenäisyyspäivän kunniaksi järjestämme shakkiturnauksen Pointissa klo 13 alkaen. Turnauksen kesto riippuu osallistujamäärästä. Tervetuloa.</p>", "sv": "<p>För att fira självständighetsdagen anordnar vi en schackturnering på Pointti start kl. 13.00. Turneringens längd beror på antalet deltagare. Välkommen!</p>", "en": "<p>In honor of Independence Day, we are organizing a chess tournament at Pointti Starting at 13.00. The duration of the tournament depends on the number of participants. Welcome.</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnh2zteme/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agocq23whq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23imi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23jfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23j3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23kqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23lfi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23l2i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23mou/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23nce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23nzm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23onq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23pay/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23pui/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23qga/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23q2y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23rpa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23sem/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23s3e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23tpe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23uf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23u4a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23vty/?format=api" } ], "images": [ { "id": 1494716, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-13T12:19:15.033026Z", "last_modified_time": "2025-11-13T12:19:15.033050Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/5f8a5d8b-6851-4815-960f-58f31650107d.jpg", "name": "", "cropping": "214,0,1066,853", "photographer_name": "Kuva Peggy Pixabaystä", "alt_text": "Kuvassa henkilö piirtää mangaa.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494716/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-11-13T12:20:08.116542Z", "last_modified_time": "2025-11-13T12:20:08.116558Z", "date_published": null, "start_time": "2025-11-19T12:30:00Z", "end_time": "2026-05-13T13: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": "Jaminurkka", "sv": "Jaminurkka", "en": "Jaminurkka" }, "short_description": { "fi": "Harrastuksesta saat hyvän yleiskuvan mangasta ja animesta, minkä pohjalta sinun on helppo suunnata omaa kiinnostustasi tiettyä tyyliä tai alalajia kohti.", "sv": "Hobbyn ger dig en bra överblick av manga och anime och utifrån den överblick du får kan du lätt rikta ditt eget intresse mot en viss stil eller underart.", "en": "In the manga and anime hobby, you’ll get a good look into manga and anime, which helps you to find and focus on your favourite style or subgenre." }, "provider": { "fi": "Sarjakuvakeskus | Espoon harrastuspolku", "sv": "Sarjakuvakeskus | Hobbystigen i Esbo", "en": "Sarjakuvakeskus | Espoo Hobby Path" }, "name": { "fi": "Manga- ja animeharrastus 3.-6.-luokkalaisille", "sv": "Manga- och animehobby för åk 3-6", "en": "Manga and anime hobby for 3rd-6th graders" }, "description": { "fi": "<p>Manga- ja animeharrastuksessa tutustut mangan ja animen valloittaviin maailmoihin. Harrastuksesta saat hyvän yleiskuvan mangasta ja animesta, ja yleiskuvan pohjalta sinun on helppo lähteä suuntaamaan omaa kiinnostustasi tiettyä tyyliä tai alalajia kohti. Harrastuksessa aloitetaan perusteista kuten piirtotekniikasta ja eroista länsimaiseen sarjakuvaan. Kun taitosi karttuvat, saat yhä syvempää osaamista mangan ja animen eri tyyleistä. Teet tehtäviä sekä yksin että ryhmässä. Harrastus sopii kaikille mangasta ja animesta kiinnostuneille, et tarvitse aiempaa kokemusta. Ryhmän toiminnassa painotetaan aina osallistujien omia toiveita ja kiinnostuksen kohteita. </p><p>Ilmoittautuminen harrastusryhmiin käynnistyy torstaina 21.8. alkaen. Harrastusryhmät alkavat viikolla 37 maanantaista 8.9.2025 alkaen. Harrastus kestää koko lukuvuoden ajan, ellei muuta mainita. Harrastusryhmät eivät kokoonnu koulujen loma-aikoina. Harrastus on osallistujille maksuton. Espoon kaupunki on vakuuttanut harrastusryhmien osallistujat.</p><p>Kaikki ovat tervetulleita harrastusryhmiin riippumatta esimerkiksi kielitaidosta, toimintakyvystä tai aiemmasta harrastustaustasta. Osallistumiseen on mahdollista saada tukea. Ilmoittautumisen yhteydessä kerrothan lapsen mahdollisista tuen tarpeista tai muista huomioitavista asioista, jotta harrastuksen järjestäjä voi ottaa ne huomioon toiminnassaan ja sujuvoittaa osallistumista.</p><p>Harrastusryhmän järjestäjä on yhteydessä huoltajiin harrastuksen käytännön asioista. Olettehan yhteydessä harrastuksen järjestäjään, mikäli haluatte perua lapsen osallistumisen tai teillä on kysyttävää harrastuksesta. Harrastusryhmissä on myös mahdollista käydä tutustumassa ennen ilmoittautumista.</p><p>Espoon harrastuspolku tarjoaa maksuttomia, lasten ja nuorten toiveiden mukaisia harrastuksia 3.–9.-luokkalaisille koulupäivien jälkeen kouluilla, niiden läheisyydessä tai etäyhteydellä. Espoon harrastuspolku toteuttaa valtakunnallista harrastamisen Suomen mallia Espoossa. Harrastuksissa noudatetaan turvallisemman tilan periaatteita.</p>", "sv": "<p>I manga- och animehobbyn får du bekanta dig med de fascinerande världarna av manga och anime. Hobbyn ger dig en bra överblick av manga och anime och utifrån den överblick du får kan du lätt rikta ditt eget intresse mot en viss stil eller underart. Man börjar med grunderna, såsom ritteknik och att se skillnader jämfört med västerländska serier. I takt med att du blir skickligare får du allt djupare kunskaper om de olika stilarna inom manga och anime. Du utför uppgifter både ensam och i grupp. Hobbyn lämpar sig för alla som är intresserade av manga och anime, du behöver inte tidigare erfarenhet. I gruppens verksamhet betonas alltid deltagarnas egna önskemål och intressen. </p><p>Anmälan till hobbygrupperna öppnas torsdagen den 21 augusti. Hobbygrupperna börjar vecka 37, måndagen den 8 september 2025. Hobbyn pågår hela läsåret, om inte annat nämns. Hobbygrupperna samlas inte under skolloven. Hobbyn är avgiftsfri för deltagarna. Esbo stad har försäkrat deltagarna i hobbygrupperna.</p><p>Alla är välkomna till hobbygrupperna oberoende av till exempel språkkunskaper, funktionsförmåga eller tidigare hobbybakgrund. Det är möjligt att få stöd för deltagandet. Berätta i samband med anmälan om barnets eventuella stödbehov eller annat som ska tas i beaktande så att hobbyanordnaren kan planera sin verksamhet och göra deltagandet smidigare.</p><p>Den som ordnar hobbygruppen kontaktar vårdnadshavarna om praktiska frågor rörande hobbyverksamheten. Kontakta den som ordnar hobbyn om ni vill annullera barnets deltagande eller om ni har frågor om hobbyn. Det är också möjligt att bekanta sig med hobbygrupperna före anmälan.</p><p>Esbos hobbystig erbjuder avgiftsfria hobbyer enligt barnens och ungdomarnas önskemål för elever i årskurs 3–9 efter skoldagarna i skolorna, i närheten av skolorna eller på distans. Hobbystigen i Esbo förverkligar Finlandsmodellen för hobbyverksamhet i Esbo. I hobbygrupperna iakttas principerna för ett tryggare rum.</p>", "en": "<p>In the manga and anime hobby, you’ll learn about the wonderful worlds of manga and anime. In this hobby, you’ll get a good look into manga and anime, which helps you to find and focus on your favourite style or subgenre. This hobby starts with the basics, such as drawing technique and the differences to Western comics. As you build up your skills, you’ll gain a deeper knowledge of the different styles of manga and anime. You’ll work both independently and in groups. The hobby is suitable for everyone interested in manga and anime, no prior experience needed. The group will always focus on the participants’ wishes and interests. </p><p>Registration for hobby groups will open on Thursday 21 August. Hobby groups will start in week 37, on Monday, 8 September 2025 onwards. The hobby groups will meet weekly throughout the school year unless otherwise stated. The hobby groups do not meet during school holidays. The hobbies are free of charge for the participants. The City of Espoo has insured the hobby group participants.</p><p>Everyone is welcome to hobby groups regardless of their language skills, functional capacity or past hobbies. Support for participation is available. When registering, please notify any support needs your child might have or if there is anything else of note, so that the hobby organiser can take it into account in their activities and make participating easier.</p><p>The organiser of the hobby group contacts the guardians about the practical arrangements for the hobby. Please contact the hobby organiser if you want to cancel your child’s participation or if you have questions about the hobby. It is possible to try out the hobby groups before signing up.</p><p>The Espoo Hobby Path offers free hobbies according to children’s and young people’s wishes. The activities are for pupils in grades 3–9 and take place after school days at school premises, near the school or via remote connection. The Espoo Hobby Path implements the national Finnish Model for Leisure Activities in Espoo. The principles of a safer space are applied in the hobby groups.</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23whq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1210384, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-08T10:14:16.366646Z", "last_modified_time": "2025-07-08T10:14:16.366662Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774893.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1210384/?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-07-08T10:14:16.250691Z", "last_modified_time": "2025-11-13T11:13:00.167287Z", "date_published": null, "start_time": "2025-12-03T16: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, "short_description": { "fi": "Lastenyhtye Nallekopla tarjoaa jouluisen musiikillisen tarinatuokion, joka kertoo toisten ihmisten huomioimisesta ja ystävyydestä.", "sv": "Barnorkestern Nallekopla erbjuder en julig musikalisk berättelse som berättar om att andra människor har beaktats och vänskap.", "en": "The children's group Nallekopla offers a festive musical storytelling session about caring for others and friendship." }, "provider": null, "name": { "fi": "Lastenyhtye Nallekoplan joulukonsertti", "sv": "Helsingfors polismusikkårs barnorkester Nallekoplas", "en": "A Christmas Concert by Helsinki Police Band's Children's Group Nallekopla" }, "description": { "fi": "<p>Lastenyhtye Nallekopla tarjoaa jouluisen musiikillisen tarinatuokion, joka kertoo toisten ihmisten huomioimisesta ja ystävyydestä.</p><p>Esityksessä nähdään myös joulupukki ja Helsingin poliisileijona. Tule viihtymään kanssamme koko perheen voimin!</p><p>Nallekopla on osa Helsingin poliisisoittokuntaa ja esiintyjät ovat poliiseja. Vuonna 2000 perustettu yhtye konsertoi alakouluissa, leikkipuistoissa, päiväkodeissa ja perheille suunnatuissa tapahtumissa kymmeniä kertoja vuodessa. Valistustyö on tärkeä osa Nallekoplan esityksiä. Aiheita ovat mm. liikenneturvallisuus, kaveruus ja kiusaaminen.</p><p>Kesto 1 tunti<br>Vapaa pääsy</p>", "sv": "<p>Barnorkestern Nallekopla erbjuder en julig musikalisk berättelse som berättar om att andra människor har beaktats och vänskap.</p><p>I föreställningen ser vi även julgubben och Helsingfors polislejon. Ta med hela familjen och kom och trivs med oss!</p><p>Nallekopla är en del av polisinrättningen i Helsingfors och orkestermedlemmarna är poliser. Orkestern bildades 2000 och spelar tiotals konserter varje år för barn i årskurs 1–6, i lekparker, på daghem och evenemang riktade till familjer. Upplysningsarbetet är en viktig del av Nallekoplas föreställning. Teman är bl.a. trafiksäkerhet, vänskap och mobbning.</p><p>Längd 1 timme<br>Fritt inträde</p>", "en": "<p>The children's group Nallekopla offers a festive musical storytelling session about caring for others and friendship.</p><p>The performance also features Father Christmas and Helsinki's police lion mascot. Come enjoy the show with the whole family!</p><p>Nallekopla is part of the Helsinki Police Band, and the performers are police officers. Founded in 2000, the group performs dozens of times a year at primary schools, playgrounds, daycares and family events. Educational work is an important part of Nallekopla's performances, covering topics such as traffic safety, friendship and bullying.</p><p>Duration: 1 hour<br>Free entry</p>" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/902AC3F1EB1C4AFFEC454D25B8B14253/Lastenyhtye_Nallekoplan_joulukonsertti", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/902AC3F1EB1C4AFFEC454D25B8B14253/Helsingfors_polismusikkars_barnorkester_Nallekoplas_", "en": "http://www.kanneltalo.fi/en/events/event/902AC3F1EB1C4AFFEC454D25B8B14253/A_Christmas_Concert_by_Helsinki_Police_Band_s_Children_s_Group_Nallekopla_" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agocq23w5q", "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/helmet:11727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T10:15:33.026588Z", "last_modified_time": "2025-11-13T10:15:33.026607Z", "date_published": null, "start_time": "2025-11-30T09:00:00Z", "end_time": "2025-11-30T10:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa Sellon kirjastoon \ntutustumaan yhdessä moninaisiin lasten- ja nuortenkirjoihin, \njoissa näkyy mustia ja ruskeita lapsia ja perheitä. ", "sv": "Ta med hela familjen till Sello Biblioteket för att utforska ett brett utbud av barn- och ungdomsböcker med svarta och bruna barn och familjer. ", "en": "Bring the whole family to Sello Library to explore a wide range of children's and young adult books featuring black and brown children and families. " }, "provider": { "fi": "POC-lukupiiri", "sv": "POC- läscircel", "en": "POC reading circle" }, "name": { "fi": "POC-lukupiirin lukuhetki lapsiperheille ", "sv": "POC-läscirkel för familjer med barn ", "en": "POC reading circle reading time for families with children " }, "description": { "fi": "<p>Tapahtuma on maksuton ja ihan kaikille avoin! </p><p>Tarjolla on myös pientä purtavaa. </p><p>POC-lukupiirin Aracelis ja Téri saapuvat Sellon kirjaston </p><p>Lastenmaan Jaminurkkaan jakamaan perheille kirjavinkkejä POCkirjailijoilta ( POC = People of Color = </p><p>mustat ja ruskeat ihmiset )</p><p>ja lukemaan ääneen lastenkirjoja. </p><p>Tervetuloa koko perheen voimin on Sellon kirjastoon </p><p>tutustumaan yhdessä moninaisiin lasten- ja nuortenkirjoihin, </p><p>joissa näkyy mustia ja ruskeita lapsia ja perheitä </p><p>POC-lukupiiri pyrkii nostamaan POC-kirjailijoiden teoksia esiin ja </p><p>vaikuttamaan siihen, että saisimme nauttia monimuotoisemmasta </p><p>representaatiosta kirjallisuudessa. </p><p>Tapahtumassa pääsee selailemaan ja lainaamaan kotiin lasten- ja </p><p>nuortenkirjoja, joissa seikkailee mustia ja ruskeita hahmoja!</p><p><br></p>", "sv": "<p>Ta med hela familjen till Sello Biblioteket för att utforska ett brett utbud av barn- och ungdomsböcker med svarta och bruna barn och familjer. </p>", "en": "<p>Bring the whole family to Sello Library to explore a wide range of children's and young adult books featuring black and brown children and families. </p><p>The POC ( People of color) reading circle aims to highlight the works of POC authors and influence the literature world to offer more diverse representation.</p><p>At the event, you can browse and borrow children's and young adult books featuring black and brown characters!</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23w5q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agocq23xma", "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": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494718, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-13T10:09:57.595979Z", "last_modified_time": "2025-11-13T10:09:57.595993Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/88e78b1d-8165-4240-bc77-d2cd72206996.jpg", "name": "", "cropping": "0,48,573,622", "photographer_name": "", "alt_text": "Kuvassa on työpöytä ja kirjoituskone", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494718/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-13T10:11:38.027092Z", "last_modified_time": "2025-11-13T10:11:59.490519Z", "date_published": null, "start_time": "2025-12-18T16:00:00Z", "end_time": "2025-12-18T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki" }, "short_description": { "fi": "Tervetuloa kuuntelemaan Sydämen oikkuja ja Sinuhen synty -esitystä Salonkiin 18.12. klo 18.00 alkaen" }, "provider": null, "name": { "fi": "Sydämen oikkuja ja Sinuhen synty -esitys" }, "description": { "fi": "<p><strong>Mika Waltarin luova vuosi 1945</strong></p><p><br></p><p>Mika Waltari -seuran hallituksen jäsen Juha Wikström kertoo Mika Waltarin suurromaanin taustoista ja kirjailijan kiihkeästä kirjoituskesästä Hartolan Näsissä.</p><p> </p><p>Esityksessä on mukana Mika Waltarin runoja ja tekstinäytteitä Neljä päivänlaskua -pienoisromaanista. </p><p><br></p><p>Kuvituksena on ainutlaatuisia valokuvia Mika ja Marjatta Waltarin Tunturikadun kodista ja Hartolan kirjoitusmökiltä, </p><p><br></p><p>“Mutta minun oli otettava kirjoituskoneeni esiin, ja otin kirjoituskoneeni esiin ja se tuijotti minua mustin ja valkoisin näppäimin ahneena ja vaativana kuten aina…</p><p>…Sinuhe istui kirjavalla matollaan luonani leuka käden varassa, ja hänen kasvonsa olivat myrtyneet iän ja kokemusten ahdistuksesta, kun hän alkoi kertoa minulle elämänsä tarinoita.” (Waltari, Neljä päivänlaskua 1949 s 53)</p><p><br></p><p><strong>Sinuhe-egyptiläinen 80-vuotta</strong></p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agocq23xma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": { "fi": "0" }, "description": null, "info_url": { "fi": "https://assets1-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/standaloneforms/432e0451-b7fa-4f34-bdbe-bd16d6a34eab?readableEventId=LE_Kuvatestausta_111125_EK2609131549" } } ], "data_source": "jiiri", "publisher": "ahjo:u480400", "sub_events": [], "images": [ { "id": 1493780, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-11-12T07:13:04.947986Z", "last_modified_time": "2025-11-12T07:13:04.948000Z", "url": "https://assets-eur.mkt.dynamics.com/93e9db45-077f-ef11-ac1e-000d3ab39c5e/digitalassets/images/f007fd2d-96bf-f011-bbd3-7ced8d7302b4", "name": "Puu", "cropping": "", "photographer_name": "Testi testaaja", "alt_text": "Puu ja aurinko", "data_source": "jiiri", "publisher": "ahjo:u480400", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493780/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-11-11T10:58:53.997916Z", "last_modified_time": "2025-11-12T14:20:27.269652Z", "date_published": "2025-11-11T10:49:52Z", "start_time": "2025-11-14T09:00:00Z", "end_time": "2025-11-14T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": 0, "audience_max_age": 100, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": 100, "minimum_attendee_capacity": null, "enrolment_start_time": "2025-11-14T08:00:00+02:00", "enrolment_end_time": "2025-11-14T08:00:00+02:00", "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Lyhyt kuvaus", "sv": "Kuvaus SV" }, "provider": { "fi": "Annantalo (KYMP)", "sv": "Annantalo (KYMP)" }, "name": { "fi": "LE Kuvatestausta 11.11.25 EK", "sv": "SV Otsikko" }, "description": { "fi": "<div><p>Tarkka kuvaus tässä </p></div>", "sv": "<div><p>Tarkka kuvaus SV</p></div>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/jiiri:dbb3a64f-e47b-4f79-aa07-c10bd995e648/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66781", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:758/?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": [], "price": { "fi": "20 € / 15 € / 0 €", "sv": "20 € / 15 € / 0 €", "en": "20 € / 15 € / 0 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/", "sv": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/", "en": "https://www.lippu.fi/event/klubb-ankdamm-felix-zenger-strandberg-project-30-vuotalo-20396358/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1272051, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-16T13:12:46.669395Z", "last_modified_time": "2025-07-16T13:12:46.669409Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774935.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1272051/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-16T13:12:46.609147Z", "last_modified_time": "2025-11-12T13:13:18.870248Z", "date_published": null, "start_time": "2025-11-13T16: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, "short_description": { "fi": "Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!", "sv": "Välkommen att fira Strandberg Projects 30-åriga resa!", "en": "Join us for a celebration of the 30th anniversary of Strandberg Project!" }, "provider": null, "name": { "fi": "Strandberg Project 30v feat. Felix Zenger – Klubb Ankdamm", "sv": "Strandberg Project 30 år feat. Felix Zenger – Klubb Ankdamm", "en": "Strandberg Project 30 yrs feat. Felix Zenger – Klubb Ankdamm" }, "description": { "fi": "<p>Tervetuloa juhlistamaan Strandberg Projectin 30-vuotista taivalta!</p><p>Strandberg Project tunnetaan erityisesti fuusion, progen ja jazzin saumattomasta yhdistelmästä, joka on tuonut yhtyeelle laajan ja uskollisen kuulijakunnan. Yhtye on vuosien varrella tehnyt yhteistyötä lukuisten kansainvälisten huippumuusikoiden kanssa, ja sen musiikki on rikastuttanut niin levyjä kuin live-esiintymisiäkin.</p><p>Illan juhlakonsertissa kuullaan sekä vanhoja klassikoita että uusia sävellyksiä, jotka vievät kuulijat matkalle yhtyeen monipuoliseen musiikilliseen maailmaan. Lavalla nähdään myös erityisvieraita, jotka ovat olleet mukana luomassa Strandberg Projectin ainutlaatuista soundia.</p><p>Liity mukaan juhlimaan tätä merkittävää virstanpylvästä ja nauttimaan unohtumattomasta musiikki-illasta!</p><p>Lavalla:<br>Jan-Olof Strandberg, basso<br>Jukka Gustavson, laulu, kosketinsoitin<br>Sami Virtanen, kitara<br>Jartsa Karvonen, rummut<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saksofoni</p><p>Klubi-ilta, A-oikeudet, tarjoiluista vastaa Café Pokkari, ovet avataan klo 17.30.</p><p>Kesto: n. 120 min. sis. väliaika.</p><p><b>Valtuusto 150 v-etu</b><br>Tämä tapahtuma on maksuton 7–19-vuotiaille helsinkiläisille. Helsingin kaupunginvaltuusto juhlistaa 150-vuotissynttäreitään tarjoamalla vuoden 2025 ajaksi ilmaisia elämyksiä nuorille!</p><p>Lunasta maksuton lippu <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">TÄSTÄ</a></u></p>", "sv": "<p>Välkommen att fira Strandberg Projects 30-åriga resa!</p><p>Strandberg Project är särskilt känt för sin sömlösa blandning av fusion, prog och jazz, vilket har gett bandet en bred och lojal publik. Under åren har bandet samarbetat med många internationella toppmusiker, och deras musik har berikat både skivor och liveframträdanden.</p><p>Kvällens jubileumskonsert kommer att bjuda på både gamla klassiker och nya kompositioner, som tar lyssnarna med på en resa genom bandets mångsidiga musikaliska värld. På scenen kommer vi också att se speciella gäster som har varit med och skapat Strandberg Projects unika sound.</p><p>Följ med och fira denna betydande milstolpe och njut av en oförglömlig musikkväll!</p><p>På scen:<br>Jan-Olof Strandberg, bas<br>Jukka Gustavson, sång klaviatur<br>Sami Virtanen, gitarr<br>Jartsa Karvonen, trummor<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saxofon</p><p>Klubbkväll, A-rättigheter, serveringen sköts av Café Pokkari, dörrarna öppnas kl. 17.30.</p><p>Längd: ca 120 min. inkl. paus.</p><p><b>Fullmäktige 150 år-fördel</b><br>Detta evenemang är avgiftsfritt för Helsingforsbor i åldern 7–19 år. Helsingfors stadsfullmäktige firar sitt 150-årsjubileum genom att erbjuda fantastiska avgiftsfria upplevelser för unga under 2025!</p><p>Lös ut en gratisbiljett <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HÄR</a></u></p>", "en": "<p>Join us for a celebration of the 30th anniversary of Strandberg Project!</p><p>Strandberg Project is known particularly for its seamless blend of fusion, prog and jazz, which has earned the band a large and loyal following. Over the years, the band has collaborated with numerous international top-class musicians, and its music has enriched both records and live performances.</p><p>The evening’s celebratory concert will feature both old classics and new compositions, taking listeners on a journey through the band’s diverse musical world. There will also be special guests on stage who have helped create Strandberg Project’s unique sound.<br>Join us for a celebration of this milestone and come enjoy an unforgettable evening of music!</p><p>On stage: <br>Jan-Olof Strandberg, bass<br>Jukka Gustavson, song, synth<br>Sami Virtanen, guitar<br>Jartsa Karvonen, drums<br>+<br>Felix Zenger, beatbox<br>William Suvanne, saxophone</p><p>Club evening, alcohol serving licence, catering by Café Pokkari, doors open at 17.30.</p><p>Duration: roughly 120 min, incl. intermission</p><p><b>Council 150 years</b><br>This event is free of charge for Helsinki residents aged 7–19. The Helsinki City Council will celebrate its 150th anniversary by offering free benefits for young people in 2025!</p><p>Redeem your free ticket <u><a href=\"https://www.lippu.fi/event/klubb-ankdamm-helsingin-kaupunki-nuorisolippu-vuotalo-20465869/?affiliate=FSF#tab=\">HERE</a></u></p>" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30v_feat_Felix_Zenger", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_ar_feat_Felix_Zenger", "en": "http://www.vuotalo.fi/en/events/event/2C1545A5699C0A6EDDF20612ED154016/Strandberg_Project_30_yrs_feat_Felix_Zenger" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66781/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhqp6zqu", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-12T12:48:56.143611Z", "last_modified_time": "2025-11-12T12:48:56.143630Z", "date_published": null, "start_time": "2025-11-18T16:00:00Z", "end_time": "2025-11-18T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Paja" }, "short_description": { "fi": "Sanataidetyöpajassa pääsee kirjoittamaan ja koristelemaan kortin, jonka voi antaa lahjaksi tärkeälle ihmiselle tai pitää itsellä arjen kynttilänä." }, "provider": null, "name": { "fi": "Arjen kynttilä – mielenterveyden hyvinvointia tukeva sanataidepaja" }, "description": { "fi": "Arjen kynttilä – mielenterveyden hyvinvointia tukeva sanataidepaja<p><strong>Entressen kirjaston Paja</strong></p><p><strong>Tiistaina 18.11.2025 klo 18.00-19.00</strong></p><p>Mitkä tavalliset asiat tuovat iloa ja valoa pimeään arkeen? Sanataidetyöpajassa pääsee kirjoittamaan ja koristelemaan kortin, jonka voi antaa lahjaksi tärkeälle ihmiselle tai pitää itsellä arjen kynttilänä. </p><p><br></p><p>Pajan ohjaa kirjaston henkilökunta</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhqp6zqu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agncve4dtq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13084/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4atm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4bdu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4btm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cdm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4cs4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dcy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-28T10:32:04.223980Z", "last_modified_time": "2025-11-12T11:06:01.262243Z", "date_published": null, "start_time": "2025-11-21T13:00:00Z", "end_time": "2025-11-21T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta.", "sv": "En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.", "en": "A fascinating half-hour presentation on climate change, the world, and our future." }, "provider": { "fi": "Ilmastotieto ry", "sv": "Ilmastotieto ry", "en": "Ilmastotieto ry" }, "name": { "fi": "Maistuisiko Ilmastoburgeri?", "sv": "Presentation om klimatförändringar på finska", "en": "Presentation on climate change in Finnish" }, "description": { "fi": "<p>Esitelmätilaisuus. Puolen tunnin mittainen kiehtova esitys ilmastonmuutoksesta, maailman ja meidän tulevaisuudesta. Tavoitteena tarjota tehotippoja ilmastoahdistukseen. Ilmastoburgerin simppeli logiikka kirkastaa ajatuksesi. Esitelmä pidetään kuuteen kertaan, aloitukset kello 15:00 / 15:30 / 16:00 / 16:30 / 17:00 ja 17:30.</p>", "sv": "<p>En fascinerande halvtimmespresentation om klimatförändringar, världen och vår framtid.</p><p>Presentationen kommer att hållas sex gånger, med start klockan 15:00, 15:30, 16:00, 16:30, 17:00 och 17:30.</p>", "en": "<p>A fascinating half-hour presentation on climate change, the world, and our future.</p><p>Starting at</p><p>3 pm</p><p>3.30 pm</p><p>4pm</p><p>4.30pm</p><p>5pm</p><p>5.30pm</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agncve4dtq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhpunbhq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": 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:agggfz7axy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-11-12T10:23:07.169018Z", "last_modified_time": "2025-11-12T10:23:07.169036Z", "date_published": null, "start_time": "2025-11-29T12:00:00Z", "end_time": "2025-11-29T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "short_description": { "fi": "Tutustu meksikolaiseen perinteeseen!", "en": "Discover the beauty of Mexican traditions" }, "provider": null, "name": { "fi": "Kuolleiden Päivän juhla", "en": "Day of the Dead Celebration" }, "description": { "fi": "<p>Tule mukaan värikkääseen ja lämminhenkiseen Kuolleiden Päivän juhlaan!</p><p>Tutustu meksikolaiseen perinteeseen, joka juhlistaa elämää, muistoja ja rakkautta käsitöiden ja tarinoiden kautta.</p><p> Ohjelma:</p><p>14:00–14:10 Tervetulosanat ja esittely</p><p>14:10–15:30 Työpaja: Tee oma Kuolleiden Päivän alttari ja paperisia kehäkukkia</p><p>15:40–17:00 Elokuvanäytös: Coco (2017)</p><p> ✨ Vapaa pääsy | Koko perheen tapahtuma | Sopii kaikenikäisille ✨</p><p> Yhteistyössä:</p><p>KulttuuriEspoo | Espoon kaupunki | Meksikon suurlähetystö Suomessa | HELMET-kirjastot</p>", "en": "<p>Join us for a colourful and heartwarming Day of the Dead celebration!</p><p> Discover the beauty of Mexican traditions through crafts, colours, and stories that honour life and memory.</p><p> Program:</p><p> 14:00–14:10 Welcome and introduction</p><p> 14:10–15:30 Workshop: Create your own Day of the Dead altar and paper marigold flowers</p><p> 15:40–17:00 Movie screening: Coco (2017)</p><p> Free entry | Family event | Suitable for all ages</p><p> In collaboration with:</p><p> KulttuuriEspoo | City of Espoo | Embassy of Mexico in Finland | HELMET Libraries</p><p> 💀 Come and experience an afternoon full of colour, creativity, and cultural joy!</p><p> Bring your family and friends — everyone is welcome! 🌼</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhpunbhq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnfteh7oe", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": 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-06T14:16:42.483808Z", "last_modified_time": "2025-11-12T08:29:06.028710Z", "date_published": null, "start_time": "2025-11-22T09:00:00Z", "end_time": "2025-11-22T14:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "short_description": { "fi": "Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan laulu- ja piano-oppilaiden valmistelemia esityksiä. ", "sv": "Matinéer med av sång- och pianostudenter ", "en": "Students’ matinees by singing and piano students" }, "provider": { "fi": "Musiikkikoulu Demo", "sv": "Musiikkikoulu Demo", "en": "Musiikkikoulu Demo" }, "name": { "fi": "Musiikkikoulu Demon oppilaskonsertit", "sv": "Elevkonsert med musikskolan Demo", "en": "Student concert by Demo Music School" }, "description": { "fi": "<p><strong>Musiikkikoulu Demon oppilaskonsertit la 22.11.</strong></p><p>Musiikkikoulu Demon syksyisessä matineapäivässä kuullaan laulu- ja piano-oppilaiden valmistelemia esityksiä. Matineat alkavat klo 11, klo 12.30, klo 14 sekä klo 15.30 ja kestävät noin 45 min. Tervetuloa kuuntelemaan! </p><p><br></p><p><a href=\"https://musiikkikouludemo.fi/ \">Musiikkikoulu Demo tarjoaa opetusta kaikenikäisille.</a></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p><strong>Musikskolan Demos elevkonserter</strong></p><p>Under Musikskolan Demos höstmatinédag får vi höra sång- och pianostudenter förberedda uppträdanden. Matinéerna börjar kl. 11, 12.30, 14 och 15.30 och varar cirka 45 minuter. Välkommen att lyssna!</p><p><a href=\"https://musiikkikouludemo.fi\">Musikskolan Demo erbjuder undervisning för alla åldrar. </a></p><p><br></p><p>#HelloEspoo</p>", "en": "<p><strong>Demo Music School Student Concerts</strong></p><p>During Demo Music School’s autumn matinee day, you’ll hear performances prepared by singing and piano students. The matinees begin at 11, 12:30, 14, and 15:30, each lasting about 45 minutes. Welcome to listen!</p><p><a href=\"https://musiikkikouludemo.fi\">Demo Music School offers lessons for all ages. </a></p><p><br></p><p>#HelloEspoo</p>" }, "info_url": { "fi": "https://musiikkikouludemo.fi/", "sv": "https://musiikkikouludemo.fi/", "en": "https://musiikkikouludemo.fi/" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnfteh7oe/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnawpvrfy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491134, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-21T08:43:42.886602Z", "last_modified_time": "2025-10-21T08:43:52.151483Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/581c21ab-6957-4f3b-ac2f-e0d1259887b5.jpg", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "Jamkids", "alt_text": "jamkids musiikkikoulun mainoksessa kaksi piirroshahmo varista soittaa ja laulaa musiikkia", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491134/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-10-22T08:16:19.676395Z", "last_modified_time": "2025-11-12T07:59:38.850441Z", "date_published": null, "start_time": "2025-12-03T16:00:00Z", "end_time": "2025-12-03T16:40: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", "en": "Salonki" }, "short_description": { "fi": "Jamkidsin joulussa soitetaan, lauletaan, leikitään ja lorutellaan mukavassa joulutunnelmassa. ", "en": "At Jamkids Christmas, we play music, sing songs, play games, and recite rhymes in a cozy Christmas atmosphere. " }, "provider": { "fi": "Jamkids", "en": "Jamkids" }, "name": { "fi": "Jamkidsin joulu", "en": "Jamkids Christmas" }, "description": { "fi": "<p>Jamkidsin joulussa soitetaan, lauletaan, leikitään ja lorutellaan mukavassa joulutunnelmassa.</p><p>Ilmaiseen tapahtumaan voi tulla koko perheen voimin nauttimaan yhdessäolosta ja iloisesta tekemisestä ilman kiirettä ja stressiä.</p><p><br></p><p>Tervetuloa musisoimaan!</p>", "en": "<p>At Jamkids Christmas, we play music, sing, play games, and recite rhymes in a cozy Christmas atmosphere.</p><p><br></p><p>The whole family is welcome to attend this free event and enjoy spending time together and having fun without any rush or stress.</p><p><br></p><p><br></p><p>Come and make music with us!</p>" }, "info_url": { "fi": "https://jamkids.fi/", "en": "https://jamkids.fi/fun-music-playschool/" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnawpvrfy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22smdu", "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:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sgsi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22shh4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sh5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22siti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sjjq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22skae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22skwi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sllu/?format=api" } ], "images": [ { "id": 1490245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T11:37:19.542981Z", "last_modified_time": "2025-03-17T11:37:19.543003Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bdb02369-37a7-4f2a-8066-d6a0186343a9.png", "name": "", "cropping": "132,0,653,522", "photographer_name": "", "alt_text": "Kuvassa popcornia ja klaffi.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-19T11:31:19.087154Z", "last_modified_time": "2025-11-12T07:49:50.536336Z", "date_published": null, "start_time": "2025-08-22T08:00:00Z", "end_time": "2025-12-12T11: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, "short_description": { "fi": "Aikuisille suunnatussa leffahetkessä katsotaan ennakkoon valittu elokuva vaihtelevista genreistä.", "sv": "Detta är ett tillfälle för vuxna att se en på förhand utvald film från olika genrer.", "en": "Aimed at adults, this is a time to watch a pre-selected film from a variety of genres." }, "provider": null, "name": { "fi": "Aikuisten päiväleffa", "sv": "Film för vuxna på dagtid", "en": "Daytime movie for adults" }, "description": { "fi": "<p>Tervetuloa Kino Lippulaivaan! Muutaman kerran kuukaudessa Lippulaivan kirjaston Salonki muotoutuu leffateatteriksi.</p><p>Elokuvahetki on tarkoitettu aikuisille. Elokuvien ikärajat on merkitty jokaisen elokuvan nimen perään.</p><p>Elokuvat:</p><p>22.8. Suon villi laulu (K-12, draama)</p><p>5.9. Karaokeparatiisi (S, dokumentti)</p><p>12.9. Freud's last session (K-12, draama)</p><p>3.10. Ordinary love (K-12, draama, romanssi)</p><p>24.10. Peruna (K-7, komedia)</p><p>14.11 Venetsian aaveet (K-12, mysteeri, trilleri)</p><p>28.11 A real pain (K-12, draama, komedia)</p><p>12.12. Saiturin joulu (K-12, draama, fantasia)</p><p>Ilmoitamme elokuvat noin kuukautta ennen.</p><p>#helloespoo</p>", "sv": "<p>Välkommen till Kino Lippulaiva! Några gånger i månaden förvandlas salongen i Lippulaiva bibliotek till en biograf. </p><p><br></p><p>Filmkvällarna är endast för vuxna. Åldersgränsen för varje film anges efter titeln. </p><p><br></p><p>Filmerna:</p><p>22.8. Suon villi laulu (K-12, drama)</p><p>5.9. Karaokeparatiisi (S, dokumentera)</p><p>12.9. Freud's last session (K-12, drama)</p><p>3.10. Ordinary love (K-12, drama, romans)</p><p>24.10. Peruna (K-7, komedi)</p><p>14.11 Venetsian aaveet (K-12, mysteri, triller)</p><p>28.11 A real pain (K-12, drama, komedi)</p><p>12.12. Saiturin joulu (K-12, drama, fantasi)</p><p>Vi annonserar filmerna ungefär en månad i förväg. </p><p>#helloespoo</p>", "en": "<p>Welcome to Kino Lippulaiva! A few times a month, the Salonki in the Lippulaiva Library is transformed into a cinema. </p><p><br></p><p>Movie nights are for adults only. The age limit for each film is indicated after the title. </p><p><br></p><p><br></p><p>Films:</p><p>22.8. Suon villi laulu (Where the Crawdads Sing), (K-12, drama)</p><p>5.9. Karaokeparatiisi (S, document)</p><p>12.9. Freud's last session (K-12, draama)</p><p>3.10. Ordinary love (K-12, drama, romance)</p><p>24.10. Peruna (K-7, comedy)</p><p>14.11 Venetsian aaveet (K-12, mystery, thriller)</p><p>28.11 A real pain (K-12, drama, comedy)</p><p>12.12. Saiturin joulu (K-12, drama, fantasy)</p><p>We announce the films about a month in advance. </p><p>#helloespoo</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22smdu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhh5ewp4", "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:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490899, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-09-26T07:46:16.043826Z", "last_modified_time": "2024-09-26T07:46:16.043850Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Facebook_tapahtumabanneri_1080x1080px_Kauneimmat_Joululaulut.jpg", "name": "", "cropping": "0,0,1080,1080", "photographer_name": "", "alt_text": "Kuvassa kauneimmat joululaulut teksti sinisellä pohjalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490899/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-11T16:36:26.683116Z", "last_modified_time": "2025-11-11T16:36:26.683134Z", "date_published": null, "start_time": "2025-12-17T16:00:00Z", "end_time": "2025-12-17T17: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": "Lava", "sv": "Scen", "en": "Stage" }, "short_description": { "fi": "Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.", "sv": "Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.", "en": "Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event." }, "provider": { "fi": "Leppävaaran seurakunta", "sv": "Albergas församling", "en": "Leppävaaran seurakunta" }, "name": { "fi": "Kauneimmat joululaulut -yhteislaulutilaisuus", "sv": "De vackraste julsångerna", "en": "The most beautiful Christmas carols - a community singing event" }, "description": { "fi": "<p>Tervetuloa laulamaan yhdessä kauneimpia joululauluja! Lauluvihkon saa ottaa mukaansa tilaisuuden jälkeen.</p><p>Järjestäjä: Leppävaaran seurakunta</p><p>Tapahtumaan on vapaa pääsy.</p>", "sv": "<p>Välkommen att tillsammans sjunga de vackraste julsångerna! Du kan ta med dig sångboken hem efter evenemanget.</p><p>Evenemanget ordnas av Albergas församling</p><p>Evenemanget är avgiftsfritt.</p>", "en": "<p>Welcome to sing together the most beautiful Christmas carols! You can take the songbook home after the event.</p><p>Organised by Leppävaaran seurakunta.</p><p>The event is free of charge.</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhh5ewp4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66301", "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:32/?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: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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1201889, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T08:17:45.550061Z", "last_modified_time": "2025-07-07T08:17:45.550079Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773287.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1201889/?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-07-07T08:17:45.448146Z", "last_modified_time": "2025-11-11T14:13:26.201289Z", "date_published": null, "start_time": "2025-11-22T09:00:00Z", "end_time": "2025-11-22T12: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, "short_description": { "fi": "Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.", "sv": "Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.", "en": "This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo." }, "provider": null, "name": { "fi": "Lasten oma päivä – Unelmien tapahtumapäivä Annantalolla", "sv": "Barnens egen dag – Drömmarnas evenemangsdag på Annegården", "en": "Children’s Day – An event day of your dreams at Annantalo" }, "description": { "fi": "<p>Tässä tapahtumassa toteutetaan lasten toiveet! Tule mukaan juhlimaan Lapsen oikeuksien viikkoa Annantalolle.</p><p>Lasten oma päivä rakentuu erilaisista työpajoista ja ohjelmanumeroista, joita lapset ovat itse toivoneet edellisen vuoden Lasten päivä -tapahtumassa. Lapset toivoivat mm. legopajaa, ruusujen askartelua, tiikeritanssia ja karkkiämpäriä. <br> <br>Työpajapisteitä saa kierrellä omassa tahdissaan. Voit saapua ja lähteä silloin kun haluat. <br>Ohjelma on pääosin suomeksi ja englanniksi, mutta kaikki kielet ja kielitaidot ovat lämpimästi tervetulleita mukaan. <br> <br>Tapahtuma on maksuton ja on suunniteltu koko perheelle. <br>Tervetuloa mukaan Lasten ikiomaan päivään!</p><p>Aikataulu:<br>Klo 11:00 Työpajat käynnistyvät: loikkaa pupuleikkiin, tee poniajeluun päähine ja kiidä laukkaradalle, valmista ruusuja ja kisaa legojen rakennuksessa. Herkutteluun saat infosta minikarkkiämpärin (toivonut Aapo 8v ja Enni 5v)</p><p>Pupuleikki: klo 11:15 / 11:45 / 12:45 ja 13:15<br>Muut työpajat: klo 11-14. Ratsutyöpaja+Laukkarata, Ruusutyöpaja, Lego-työpaja.<br>Klo 14:00 Työpajat sulkeutuvat. <br>Klo 14:05 Päätämme tapahtumapäivän liittymällä mukaan tiikerien ohjaamaan Lapsella on oikeus -tanssiin!</p><p>Ohjelma:</p><p>PUPULEIKKI<br>(toivonut Oona 6v)</p><p>Porkkana sentään! Pupun poikanen on sairastunut syysflunssaan ja tarvitsee apua talvivaraston täydennykseen. Vauhdikkaassa pajassa lapsi pääsee kokemaan liikkumisen iloa ja rentouttavan satuhieronnan oman aikuisen kanssa.</p><p>Leikkituokiot klo 11:15 / 11:45 / 12:45 ja 13:15 (kesto: 20min)<br>Varaa paikkasi hakemalla infosta molemmille osallistujille lipuke<br>Ohjaajana: Noora-pupu Puranen</p><p>Avoimet nonstop-työpajat klo 11-14</p><p>PONIAJELU ja HEVOSPÄÄHINEET -työpaja<br>(Toivonut Enja 4v)</p><p>Ihahaa! Tässä työpajassa tehdään päähineitä poniajeluun tai omaksi iloksi.</p><p>Issikka, mustangi vai yksisarvinen?<br>Minkälaisesta ratsusta olet aina haaveillut? Naamioi oma aikuisesti unelmien hevoseksi, hyppää selkään ja tartu suitsiin. Laukkarata kutsuu kaikkia leikkimielisiä poniajelulle!</p><p>Toteuttajina: Annantalon taidekasvattajat</p><p>RUUSUTYÖPAJA<br>(Toivonut Sandra 4v)</p><p>Työpajassa pääsee valmistamaan silkki- ja kreppipaperista persoonallisen, oman näköisen ruusun. Tämän itse tehdyn paperiruusun voi antaa lahjaksi ilahduttamaan vaikkapa parhaan kaverin, mummon, naapurin tai miksei myös omaa päivää. Ja mikä parasta, nämä kukkaset eivät taatusti kuihdu maljakossa!</p><p>Toteuttajana: Pohjois-Helsingin kuvataidekoulun opettajat</p><p>PALIKKAMESTARIT - Lego-työpaja <br>(Toivoneet Kuisma 6v ja tuntematon toivoja)</p><p>Tule mukaan haastamaan mielikuvituksesi leikkimieliseen legokisaan. Edessäsi on valikoima peruspalikoita. Sinun on rakennettava niistä tietyssä rajatussa ajassa ennakkoon arvottu aihe.</p><p>Pajaan mahtuu 6 rakentajaa kerrallaan<br>Vetäjänä: Annantalosta ja TV:stä tuttu Heidi Puumalainen</p><p>Muuta tutustuttavaa:<br>Piilossa-näyttely 1.krs. galleria<br>Echoes Through Light Years -näyttely 2.krs. Etelägalleria<br>Jouluvitriinit: 2.krs. käytävä</p><p>Tapahtuman päätös:<br>TIIKERITANSSI ja popcornia<br>(Toivoneet Oliver 6v ja Frida 5v)</p>", "sv": "<p>Under det här evenemanget uppfyller vi barnens drömmar! Kom med och fira barnrättsveckan på Annegården.</p><p>Barnens egen dag byggs upp av olika workshoppar och programnummer, som barnen själva önskade under Barnens dag förra året. Barnen önskade sig bland annat legoworkshop, rospyssel, tigerdans och godishinkar. <br> <br>Du kan gå runt bland workshopparna i din egen takt. Du kan komma och gå som det passar dig. <br>Programmet är främst på finska och engelska, men alla språk och språkkunskaper är varmt välkomna med. <br> <br>Evenemanget är avgiftsfritt och avsett för hela familjen. <br> <br>Mer information om programmet kommer närmare evenemanget. <br> <br>Välkommen med på barnens egen dag!</p>", "en": "<p>This event makes children’s wishes come true! Come and celebrate the Children’s Rights Week at Annantalo.</p><p>Children’s Day comprises a variety of workshops and programmes that children themselves wished for at the previous year’s Children’s Day event. The children wished for activities such as a Lego workshop, crafting roses, tiger dancing and a bucket of sweets. <br> <br>Visitors are welcome to tour these workshops at their own pace. You can come and go as you please. <br>The programme is mostly in Finnish and English, but people from all language backgrounds and language skill levels are warmly welcomed!</p><p>The event is free of charge and has been designed with the whole family in mind. <br> <br>A more detailed programme will be published closer to the event. <br> <br>Come along to celebrate Children’s Day!</p>" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Lasten_oma_paiva", "sv": "http://www.annantalo.fi/sv/evenemang/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Barnens_egen_dag_", "en": "http://www.annantalo.fi/en/events/event/7CB8564E5F8D3F9F282C09674DDAD0B5/Children_s_Day" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66301/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnhggmlqa", "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:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": 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:aggo3dhzjq/?format=api" } ], "created_time": "2025-11-11T13:15:13.290363Z", "last_modified_time": "2025-11-11T13:15:13.290381Z", "date_published": null, "start_time": "2025-11-13T10:00:00Z", "end_time": "2025-11-13T13: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": "Sellon kirjaston aula", "sv": "Sellobibliotekets lobby", "en": "Sello Library lobby" }, "short_description": { "fi": "Oletko hitsaaja, koneistaja tai muu metallialan ammattilainen?", "sv": "Är du svetsare, maskinist eller annan metallexpert?", "en": "Are you a welder, machinist or other metal industry professional?" }, "provider": { "fi": "Espoon työllisyyspalvelut", "sv": "Esbo sysselsättningtjänster", "en": "Espoo Employment Services" }, "name": { "fi": "Työnantajatreffit metallialan ammattilaisille", "sv": "Työnantajatreffit rekryteringsevenemang för proffs inom metallindustrin", "en": "Työnantajatreffit -recruitment event for metalworkers" }, "description": { "fi": "<p>Oletko hitsaaja, koneistaja tai muu metallialan ammattilainen? Tapahtuma on maksuton ja tarkoitettu metallialan ammattilaisille, jotka etsivät töitä. Mukana on rekrytoimassa KeyStaff Oy.</p><p>Infotilaisuus pidetään ensin suomeksi kello 12 ja englanniksi kello 13.00.</p><p>Infotilaisuuden jälkeen on mahdollisuus osallistua haastatteluun vuoronumerojärjestyksessä.</p><p>Järjestäjä Espoon työllisyyspalvelut ja KeyStaff Oy</p><p><br></p><p>#SinunTyösiPuolella #HelloEspoo</p>", "sv": "<p>Är du svetsare, maskinist eller annan metallexpert? Evenemanget är kostnadsfritt och riktar sig till expert inom metallbranschen som söker jobb. KeyStaff Oy rekryterar.</p><p><br></p><p>Informationsmötet hålls först på finska kl. 12:00 och på engelska kl. 13:00.</p><p><br></p><p>Efter informationen finns det möjlighet att delta i en intervju i turordning efter antalet deltagare.</p><p><br></p><p>Arrangerat av Esbos sysselsättningstjänster och KeyStaff Oy</p><p><br></p><p><br></p><p>#FörDittArbete #HelloEspoo</p>", "en": "<p>Are you a welder, machinist or other metal industry professional? The event is free of charge and is intended for metal professionals looking for work. KeyStaff Oy is recruiting.</p><p><br></p><p>The information session will be held first in Finnish at 12:00 and in English at 13:00.</p><p><br></p><p>After the information session, there will be an opportunity to participate in an interview.</p><p><br></p><p>Organized by Espoo Employment Services and KeyStaff Oy</p><p><br></p><p>#YourWorkIsOurWork #HelloEspoo</p>" }, "info_url": null, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnhggmlqa/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }