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&page=197
{ "meta": { "count": 32756, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=198", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=196" }, "data": [ { "id": "espoo_le:agnoiltyeq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltwmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltw3q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxje/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltxwm/?format=api" } ], "images": [ { "id": 1494028, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T11:21:23.720844Z", "last_modified_time": "2025-12-03T11:21:23.720860Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/71d1e180-f8e7-4343-b761-f3aacd5d756b.png", "name": "Perhekerho", "cropping": "92,0,544,453", "photographer_name": "", "alt_text": "Kuvassa erilaisia perheitä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494028/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T11:39:38.885567Z", "last_modified_time": "2025-12-03T11:39:38.885584Z", "date_published": null, "start_time": "2025-12-08T14:30:00Z", "end_time": "2025-12-29T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Perhekerho Sellon kirjaston Lastenmaassa maanantaisin klo 16.30–18.30. Tule leikkimään ja viettämään aikaa muiden perheiden kanssa.", "sv": "Familjeklubb på Sello Biblioteks Lastenmaa på måndagar kl. 16.30–18.30. Kom och lek och umgås med andra familjer.", "en": "Family club at Sello Library's Lastenmaa on Mondays from 4:30 p.m. to 6:30 p.m. Come play and spend time with other families." }, "info_url": null, "description": { "fi": "<p>Perhekerho Sellon kirjaston Lastenmaan Jaminurkassa maanantaisin klo 16.30–18.30 (poikkeuksena 8.12 ja 15.12, jolloin tapaamme Lastenmaan leikkialueella). Tule leikkimään ja viettämään aikaa muiden perheiden kanssa. Järjestäjä: Suomen maahanmuuttajien liitto ry. Nähdään! Terveisin ohjaajat Nawres, Gehan ja Ghada.</p><p>#helloespoo</p><p><br></p>", "sv": "<p>Familjeklubb på Sello-bibliotekets Jaminurkka måndagar kl. 16.30–18.30 (utom den 8 december och 15 december, då vi träffas på lekplatsen Lastenmaa). Kom och lek och umgås med andra familjer. Arrangör: Suomen maahanmuuttajien liitto ry. Vi ses där! Vänliga hälsningar, instruktörerna Nawres, Gehan och Ghada.</p><p>#helloespoo</p>", "en": "<p>Family club at Sello Library's Jaminurkka on Mondays from 4:30 p.m. to 6:30 p.m. (except on December 8 and December 15, when we will meet at the Lastenmaa playground). Come play and spend time with other families. Organizer: Suomen maahanmuuttajien liitto ry. See you there! Best regards, instructors Nawres, Gehan, and Ghada.</p><p>#helloespoo</p>" }, "name": { "fi": "Perhekerho", "sv": "Familjeklubb", "en": "Family club" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenmaa", "sv": "Lastenmaa", "en": "Lastenmaa" }, "provider": { "fi": "Suomen maahanmuuttajien liitto ry", "sv": "Suomen maahanmuuttajien liitto ry", "en": "Suomen maahanmuuttajien liitto ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnoiltyeq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnohqfcue", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494026, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T09:18:11.869193Z", "last_modified_time": "2025-12-03T09:18:11.869210Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/97961126-f76c-4c19-a9c4-9f51e6daa6f2.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "Eeva kenttä", "alt_text": "lukukoirat Nekku ja Pätkis sekä Luna ja lukukissa Dino", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494026/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T09:20:08.754507Z", "last_modified_time": "2025-12-03T11:22:20.000366Z", "date_published": null, "start_time": "2025-12-22T16:00:00Z", "end_time": "2025-12-22T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tonttukoirat Kirjastolla eli lukukoiramme Nekku ja Pätkis sekä Luna ja lukukissa Dino paikalla ma 22.12.2025 klo 18-19" }, "info_url": { "fi": "https://www.kauklahti.fi/Etusivu/" }, "description": { "fi": "LUUKKU 22<p>Tonttukoirat Kirjastolla eli lukukoiramme Nekku ja Pätkis sekä Luna ja lukukissa Dino paikalla ma 22.12.2025 klo 18-19</p><p>Koirakolmikko jälleen paikalla sekä nyt myös lukukissa!</p><p>Tavaa tai lue, rapsuta tai halaa - he kuuntelevat ja nauttivat olostaan vieressäsi!</p><p>Paikkana Kauklahden Kirjasto, os. Hansakallio 2</p><p>Järjestäjänä Kauklahden Kirjasto ja Espoon lukukoirat ja -kissa hihnajatkeineen</p>" }, "name": { "fi": "Kauklahtiseuran elävä joulukalenteri luukku - LUUKKU 22 Tonttukoirat ja tonttukissa Kirjastolla" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Espoon lukukoirat ja -kissa hihnajatkeineen" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnohqfcue/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa5lakdy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5k4eiu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T11:09:41.323137Z", "last_modified_time": "2025-12-03T11:09:41.323154Z", "date_published": null, "start_time": "2026-01-26T16:00:00Z", "end_time": "2026-01-26T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "info_url": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p><br></p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19.</p><p><br></p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19.</p><p><br></p><p>You can meet Veit on Mondays of even weeks from 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>" }, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5lakdy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa5lakya", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5k4eiu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T11:09:41.232701Z", "last_modified_time": "2025-12-03T11:09:41.232718Z", "date_published": null, "start_time": "2026-01-19T16:00:00Z", "end_time": "2026-01-19T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "info_url": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p><br></p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19.</p><p><br></p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19.</p><p><br></p><p>You can meet Veit on Mondays of even weeks from 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>" }, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5lakya/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agoa5lalmm", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5k4eiu/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2025-12-03T11:09:41.134431Z", "last_modified_time": "2025-12-03T11:09:41.134513Z", "date_published": null, "start_time": "2026-01-12T16:00:00Z", "end_time": "2026-01-12T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "info_url": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p><br></p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19.</p><p><br></p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19.</p><p><br></p><p>You can meet Veit on Mondays of even weeks from 18-19.</p><p>(16.2. / 16.3. / 13.4. / 11.5. / 8.6.) </p>" }, "name": { "fi": "Lukukoira tavattavissa", "sv": "Läshund finns tillgänglig", "en": "Reading dog available" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agoa5lalmm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnohqfb6i", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1808/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2739/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494025, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-12-03T10:08:32.632275Z", "last_modified_time": "2025-12-03T10:08:32.632296Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/d5a79665-31ee-4e0a-8bbe-aaa3a3055c78.jpg", "name": "", "cropping": "140,0,503,362", "photographer_name": "", "alt_text": "Taidetyöpajan vetäjät Marja Koskela ja Miina Virtanen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494025/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-03T10:08:44.790606Z", "last_modified_time": "2025-12-03T10:08:44.790634Z", "date_published": null, "start_time": "2025-12-13T09:00:00Z", "end_time": "2025-12-13T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. ", "en": "A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. " }, "info_url": null, "description": { "fi": "<p>Käsityötaidetta ja musiikkia yhdistävä lauantaipajojen sarja 7–13 -vuotiaille ukrainalaisille ja suomalaisille koululaisille. Hankkeen tavoitteena on edistää eri kulttuureista tulevien nuorten välistä ystävyyttä ja luovan toiminnan mahdollistamaa itseilmaisua yhdessä jaetussa hetkessä turvallisessa ympäristössä. Työpajassa ei vaadita ennakko-osaamista ja työpajassa osallistujat pääsevät kokeilemaan luovaa käsillä tekemistä sekä musisointia.</p><p>Ohjaajina työpajassa ovat Marja Koskela ja Miina Virtanen ja ukrainen kielen tulkkina Tatyana Pitchulina.</p><p>Ilmoittaudu täällä:<a href=\" https://link.webropolsurveys.com/EP/49979A9234D8716C\"> https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p>", "en": "<p>A series of Saturday workshops combining crafts and music for Ukrainian and Finnish schoolchildren aged 7–13. The aim of the project is to promote friendship between young people from different cultures and self-expression through creative activities in a shared moment in a safe environment. No prior knowledge is required for the workshop, and participants will have the opportunity to try their hand at creative crafts and music-making.</p><p><br></p><p>The workshop will be led by Marja Koskela and Miina Virtanen, with Tatyana Pitchulina acting as Ukrainian interpreter.</p><p><br></p><p>Register here: <a href=\"https://link.webropolsurveys.com/EP/49979A9234D8716C\">https://link.webropolsurveys.com/EP/49979A9234D8716C</a></p><p><br></p><p><br></p>" }, "name": { "fi": "Käsityötaiteen ja musiikin lauantaipaja", "en": "Saturday workshop on crafts and music" }, "provider_contact_info": null, "location_extra_info": { "fi": "Akseli", "en": "Akseli" }, "provider": { "fi": "Espoo Creative", "en": "Espoo Creative" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnohqfb6i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:67438", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1493798, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-11-14T09:12:56.454666Z", "last_modified_time": "2025-11-14T09:12:56.454683Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_780907.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493798/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T09:12:56.364029Z", "last_modified_time": "2025-12-03T09:12:45.174872Z", "date_published": null, "start_time": "2025-12-06T13:00:00Z", "end_time": "2025-12-06T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!", "sv": "Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.", "en": "Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/D651833586DE2449C7E10414F4F23075/Itsenaisyyspaivan_juhla_Sitratorilla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/D651833586DE2449C7E10414F4F23075/Firande_av_sjalvstandighetsdagen_pa_Cittertorget", "en": "http://www.kanneltalo.fi/en/events/event/D651833586DE2449C7E10414F4F23075/Independence_Day_celebration_at_Sitratori_square" }, "description": { "fi": "<p>Tule juhlistamaan Suomen itsenäisyyttä Sitratorille, tarjolla lohi- ja kasviskeittoa, glögiä, pipareita sekä mukavaa ohjelmaa!</p><p>Tunnelmallisessa tapahtumassa nautitaan yhdessä kuorolaulusta, sirkuksesta ja valotaiteesta – tilaisuus on maksuton ja kaikille avoin.</p><p>Lämminhenkinen tapahtuma järjestetään edellisvuosista poiketen Sitratorilla. Näin varmistamme, että kaikki halukkaat mahtuvat mukaan! Mukana tapahtumassa ovat myös D-asema Kannelmäki ja Lännen aikuissosiaalityö.</p><p><b>Juhlan aikataulu:</b><br>klo 15-17 Lohi- ja kasviskeittotarjoilu. Tarjolla myös glögiä ja pipareita! Huomioithan, että ruokaa on tarjolla rajattu määrä.</p><p>klo 15–15.30 ja klo 16.20–16.45 Posetiivari esiintyy!</p><p>klo 15.30 ja klo 16.45 Kassandra-kuoron esitykset</p><p>klo 16 Valosirkus Spektrin esitys</p><p>Vapaa pääsy!</p>", "sv": "<p>Kom och fira Finlands självständighet på Cittertorget! Lax- och grönsakssoppa, glögg samt pepparkakor serveras och trevligt program utlovas.</p><p>Under det stämningsfulla evenemanget njuter man tillsammans av körsång, cirkus och ljuskonst – tillställningen är avgiftsfri och öppen för alla.</p><p>Till skillnad från tidigare år ordnar man det varma och hjärtliga evenemanget på Cittertorget. Så här säkerställer man att alla intresserade får plats! Även D-osasto Kannelmäki och Vuxensocialarbete, västra deltar i evenemanget.</p><p><b>Festens tidtabell:</b><br>kl. 15.00–17.00 Servering av lax- och grönsakssoppa samt glögg och pepparkakor (vänligen observera att det finns en begränsad mängd mat att tillgå)<br>kl. 15.00–15.30 och 16.20-16.45 Posetiivari uppträder<br>kl. 15.30 och 16.45 Uppträdanden av Kassandrakören<br>kl 16.00 Valosirkus Spektris programnummer</p><p>Fritt inträde!</p>", "en": "<p>Come and celebrate Finland's independence at Sitratori square and enjoy salmon and vegetable soup, glogg, gingerbread biscuits and a fun programme!</p><p>The programme for the atmospheric evening also includes choral singing, circus entertainment and light art – free and open to all.</p><p>Unlike in previous years, the warm-hearted event will be held at Sitratori square. This way we can make sure that everyone who wants to join us will be able to! D-asema Kannelmäki and western adult social work will also be present at the event.</p><p>Celebration programme:<br>15.00–17.00 Salmon and vegetable soup served. There will also be glogg and gingerbread biscuits! Please note that there is a limited amount of food available.<br>15.00–15.30 and 16.20–16.45 Barrel organ player performance!<br>15.30 and 16.45 Performances by the Kassandra choir<br>16.00 Light Circus Spektri</p><p>Free entry!</p>" }, "name": { "fi": "Itsenäisyyspäivän juhla Sitratorilla", "sv": "Firande av självständighetsdagen på Cittertorget", "en": "Independence Day celebration at Sitratori square" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:67438/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmc47dka", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15317/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67mm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67p4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67uy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47ki4/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 150665, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-18T05:42:17.383444Z", "last_modified_time": "2024-04-18T05:42:17.383463Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Lukukoirat_Veiti_Nekku_ja_P%C3%A4tkis.png", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Kolme koiraa kirjahyllyjen edessä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150665/?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-08-19T07:54:29.764438Z", "last_modified_time": "2025-12-03T09:05:38.190723Z", "date_published": null, "start_time": "2025-12-08T16:00:00Z", "end_time": "2025-12-08T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!", "sv": "Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!", "en": "Hello reader! On Mondays in the library you can read to a reading dog!" }, "info_url": null, "description": { "fi": "<p>Hei lukemista harjoitteleva! Maanantaisin kirjastossa voit lukea lukukoiralle!</p><p>Nekun ja Pätkiksen voi tavata parittomien viikkojen maanantaisin klo 18-19.</p><p>Veitin voi tavata parillisten viikkojen maanantaisin klo 18-19.</p><p><br></p><p>15.12. Lukukoira Lloyd</p>", "sv": "<p>Hej läsare! På måndagar i biblioteket kan du läsa för en läshund!</p><p>Du kan träffa Nekku och Pätkis på måndagar udda veckor kl 18-19.</p><p>Du kan träffa Veiti på måndagar jämna veckor 18-19.</p>", "en": "<p>Hello reader! On Mondays in the library you can read to a reading dog!</p><p>You can meet Neku and Pätkis on Mondays of odd weeks at 18-19.</p><p>You can meet Veit on Mondays of even weeks from 18-19.</p>" }, "name": { "fi": "Lukukoira Lloyd tavattavissa ", "sv": "Läshund Lloyd finns tillgänglig", "en": "Reading dog Lloyd available" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47dka/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk225yce", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225puq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qcu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225qru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rby/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225rry/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225scq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225squ/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225tau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225ucm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225uru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225vsq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wda/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225wrq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xbm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225xs4/?format=api" } ], "images": [ { "id": 150465, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-03-13T08:52:37.532898Z", "last_modified_time": "2025-12-01T09:27:06.237847Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Kielikahvila.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ryhmä ihmisiä pyöreän pöydän ääressä", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150465/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-05-19T09:44:03.957058Z", "last_modified_time": "2025-12-03T08:47:24.407195Z", "date_published": null, "start_time": "2025-08-19T15:00:00Z", "end_time": "2025-12-09T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Tule oppimaan suomea yhdessä tiistaisin klo 18-19.30", "sv": "Letar du efter en plats där du kan öva på att tala finska? ", "en": "Are you looking for a place to practice speaking Finnish?" }, "info_url": null, "description": { "fi": "<p>Tule oppimaan suomea yhdessä! Kokoonnumme tiistaisin klo 18 - 19:30 Sinisessä huoneessa.</p><p>Kielikahvilat toteutetaan Espoon kaupunginkirjaston ja Punaisen Ristin Keski-Espoon osaston yhteistyönä. Lisätietoja:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><strong>EI kielikahvilaa 14.10.2025 koulujen syyslomalla</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Kom och lär dig finska tillsammans! Vi träffas kl. 18 - 19:30 i Sininen huone</p><p>Språkcaféerna ordnas i samarbete mellan Esbo stadsbibliotek och Röda Korsets avdelning i Esbo centrum. För mer information:</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p>Inget språkcafé den 14 oktober 2025 under höstlovet</p><p><br></p><p><br></p><p>#HelloEspoo</p>", "en": "<p><br></p><p>Are you looking for a place to practice speaking Finnish? Are the Finns you meet just too shy to chat with you? This is a right place for you!</p><p>Finnish native speakers help you practice communicating in Finnish. We read texts and discuss different topics every time. It's not necessary to register in advance, you can just show up. Cafes are held on Tuesdays at 18:00 - 19:30 in Sininen huone</p><p>Language Cafe at Entresse library is run by the volunteers of Finnish Red Cross</p><p>Hanna Puustinen</p><p>hanna.m.puustinen @ gmail.com</p><p><br></p><p><br></p><p><strong>No language café on October 14, 2025, during the school autumn break</strong></p><p><br></p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "SPR:n kielikahvila ", "sv": "Finskt språkcafé ", "en": "Finnish Language Cafe " }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "provider": { "fi": "Suomen Punainen Risti ", "sv": "Suomen Punainen Risti ", "en": "Suomen Punainen Risti " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk225yce/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6nrbbpm", "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: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2025-10-15T06:28:46.622025Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?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-15T06:31:49.190750Z", "last_modified_time": "2025-12-03T07:42:46.594093Z", "date_published": null, "start_time": "2025-12-20T11:00:00Z", "end_time": "2025-12-20T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30", "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "en": "Reading cats Marvin and Lenni available for a meeting" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "en": "children's section" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbbpm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agm6nrbcau", "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: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:p556/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbagu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrba74/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbbpm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4b7si5y/?format=api" } ], "images": [ { "id": 1491099, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-10-15T06:28:46.622009Z", "last_modified_time": "2025-10-15T06:28:46.622025Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/aa8fb267-f840-4582-9896-6e420a631013.jpg", "name": "", "cropping": "0,0,480,480", "photographer_name": "Kissojen omistaja Jaana", "alt_text": "lukukissat Marvin ja Lenni poseeraavat valjaat päällä lastenkirjojen kanssa sohvalla", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1491099/?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-15T06:31:48.225860Z", "last_modified_time": "2025-12-03T07:42:46.189534Z", "date_published": null, "start_time": "2025-10-25T10:00:00Z", "end_time": "2025-12-20T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30", "en": "Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m." }, "info_url": { "fi": "https://suomenkarvakaverit.fi/", "en": "https://suomenkarvakaverit.fi/" }, "description": { "fi": "Entressen kirjastolla pääsee nyt lukemaan myös kissoille!<p><strong>Marvin ja Lenni kuuntelevat kärsivällisesti lauantaisin 25.10., 22.11. ja 20.12. klo 13-14.30</strong></p><p>Voit varata oman rauhallisen lukuhetken, jos lukeminen tuntuu hankalalta tai jännittää. Voit tulla harjoittelemaan Marvinin ja Lennin kanssa myös jos haluat harjoitella kieltä. Kissoille voi lukea millä kielellä tahansa.</p><p><br></p><p><br></p><p>Lukulemmikki</p><p>#HelloEspoo</p>", "en": "The Entressen Library now offers reading sessions for cats!<p><strong>Marvin and Lenni will be listening patiently on Saturdays, October 25, November 22, and December 20, from 1:00 p.m. to 2:30 p.m.</strong></p><p>You can book your own reading time if reading feels difficult or makes you nervous. You can also come and practice with Marvin and Lenni if you want to practice the language. You can read to cats in any language.</p><p><br></p><p>#HelloEspoo</p>" }, "name": { "fi": "Lukukissat Marvin ja Lenni tavattavissa", "en": "Reading cats Marvin and Lenni available for a meeting" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lastenosasto", "en": "children's section" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agm6nrbcau/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-2706561", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20546003/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20546004/?format=api" } ], "images": [ { "id": 1468357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T08:34:26.435982Z", "last_modified_time": "2025-08-12T08:34:26.436003Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2022/HKT_Seniorisoppa_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1468357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T08:34:26.609110Z", "last_modified_time": "2025-12-03T01:15:59.892228Z", "date_published": null, "start_time": "2025-12-02T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Merja Larivaara SENIORISOPPA Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Merja Larivaara<br><strong>SENIORISOPPA</strong><p> <strong>Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä. Tervetuloa virittäytymään yhdessä joulutunnelmaan!</strong></p><p> Seniorisoppa® on tapahtuma, johon voi tulla yksin, kaksin tai isommallakin porukalla. Seuraa löytyy, ja aina saa laulaa myös mukana!</p><p> Seniorisoppa®-konsepti on näyttelijä Merja Larivaaran ideoima. Hän on mukana koko tapahtuman ajan paitsi musisoimassa, myös jutustelemassa sekä saattelemassa konserttivieraita kotimatkalle.</p><p>Lipun hintaan sisältyy konsertti (kesto noin 45 minuuttia) suurella näyttämöllä sekä tarjoilu suuren näyttämön lämpiössä.</p><p> Konsertin tarjoilu sisältää kahvin/teen ja pullan.<br></p><p> <br> </p><p> Esiintyjät: Merja Larivaara, Rauno Ahonen, Laura Alajääski, Sari Haapamäki,</p><p> Juha Jokela, Sanna-June Hyde, Jouko Klemettilä, Vappu Nalbantoglu,</p><p> Aino Seppo, Mikko Vihma</p><p> <br> Ovet lämpiöön avataan 45 min. ennen, tarjoilu konsertin jälkeen.</p><p> Tilaisuuden kesto yhteensä n. 1 t 30 min.</p><p> Huom! Lipunmyynti päättyy neljää (4) päivää ennen tapahtumaa tarjoiluvarauksista johtuen.</p><p><a href=\"https://hkt.fi/esitykset/seniorisoppa/\"><strong>Lisätietoa</strong></a><br></p>" }, "name": { "fi": "Seniorisoppa Joulukonsertti" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2706561/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20545942", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956239/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545942/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545942/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/peter-pan-helsingin-kaupunginteatteri-20545942/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1464815, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T21:17:17.973325Z", "last_modified_time": "2025-08-11T21:17:17.973343Z", "url": "https://www.lippu.fi/obj/mam/finland/89/16/hktp-tickets_427280_3487629_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1464815/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T21:17:17.870521Z", "last_modified_time": "2025-12-03T01:14:46.390520Z", "date_published": null, "start_time": "2025-12-02T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "en": "Chickenshed London - J." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/peter-pan-3956239/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Shedin tämän vuoden joulumusikaalissa komisario Tiikerililja on saanut tutkittavakseen Kultasen perheen sisarusten omituisen katoamistapauksen. Peter Pan, joka ei halua kasvaa aikuiseksi, lentää yöllä sisään lastenhuoneen ikkunasta ja hakee lapset mukaansa ihmeelliseen Mikä-Mikä-Maahan, jossa kadonneet lapset ja merirosvot taistelevat taianomaisen satumaan herruudesta. Asioita kuitenkin sotkevat mustasukkainen keiju, kiero ja vaarallinen merirosvokapteeni Koukku, ja yksi krokotiilikin, joka tikityksen sijaan piipittää!</p><p>Chickenshed-teatterin (UK) versiosta muokattu uusi dramatisointi tuo klassikkosadun lähemmäs tätä päivää. Peter Panista tutut teemat ovat kuitenkin vahvasti läsnä: onko aikuiseksi kasvaminen oikeasti ihan niin tarpeellista kuin usein väitetään? Lapsenmielisyydellä ja lasten mielikuvituksella on aivan erityinen voima! Ja jokainen kaipaa kuitenkin henkilöä, joka pitäisi hänestä huolta.</p><p>Peter Pan on koko perheelle tarkoitettu jännittävä seikkailu, jossa koira on palkattu lapsenvahdiksi ja varjo voi vahingossa irrota omistajastaan. Ja toivottavasti esityksen jälkeen kaikki ovat oppineet, että rannalle jätettyjä vihreäsokerisia kakkuja ei kannata syödä.</p><p><br>Rooleissa: Shed-nuoret ja Helena Haaranen</p><p>Tekstin sovitus ja ohjaus: Jyri Numminen</p><p>Kapellimestari ja musiikin sovitus: Tuomas Kesälä<br>Opettajat: Hanna Nuorala, Saija-Reetta Kotirinta, Pauliina Kiuru, Moona Karhu</p><p>Lavastus: William Iles</p><p>Pukusuunnittelu: Laura Dammert</p><p>Valosuunnittelu: Teppo Saarinen</p><p>Äänisuunnittelu: Jaakko Virmavirta</p><p>Naamioinnin suunnittelu: Henri Karjalainen</p><p>Dramaturgi: Sanna Niemeläinen</p>", "en": "<p>Chickenshed London - J. M. Barrie<br><strong>PETER PAN</strong></p>" }, "name": { "fi": "Peter Pan Ensi-Ilta" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20545942/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20545937", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3956234/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545937/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545937/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/project-no-2191-helsingin-kaupunginteatteri-20545937/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1464814, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T21:17:08.652841Z", "last_modified_time": "2025-08-11T21:17:08.652861Z", "url": "https://www.lippu.fi/obj/mam/finland/ee/c7/hkt-tickets_427261_3487596_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1464814/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T21:17:17.509503Z", "last_modified_time": "2025-12-03T01:14:46.253748Z", "date_published": null, "start_time": "2025-12-02T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihm" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/project-no-2191-3956234/?affiliate=ADV&language=en" }, "description": { "fi": "<p><strong>Helsinki Dance Company ja kansainvälisesti arvostettu unkarilainen koreografi Adrienn Hód kutsuvat yleisön ainutlaatuiselle liikkeelliselle tutkimusmatkalle ihmiskehoon ja -mieleen.</strong></p><p>Innovatiivisista teoksissaan tunnettu Hód haastaa kulttuuriset rajat, tavoitteenaan vapauttaa keho tabujen ja ennakkoluulojen otteesta. Näyttämö on Hódille tanssin ja dramaturgisten ratkaisujen leikkikenttä, jossa esiintyjien ja yleisön välille syntyy lukemattomia mahdollisuuksia vuorovaikutukseen sekä yhteyden rakentamiseen.</p><p>Project No. 2191 -teoksen ytimessä on esiintyjien kehoissaan kantama tieto. Pitkien ohjattujen improvisaatioharjoitusten kautta HDC:n valovoimaiset tanssijat tuovat näyttämölle omat ”keholliset arkistonsa”. Yksilölliset esiintymis- ja liikelaadut, historiat, halut ja pelot avautuvat yleisölle kysyen:</p><p>Mitä historiaa kannamme kehoissamme?</p><p>Kuinka yksilöllisiä kokemuksemme todella ovat?</p><p>Miten intohimo syntyy?</p><p>Mikä meitä ajaa eteenpäin?</p><p>Miten voimme antaa tilaa nykyhetkelle?</p><p>Teos näyttäytyy intuition ohjaamana radikaalina leikkinä, joka resonoi myös katsojan kehossa inspiroiden, haastaen ja yllättäen. Tanssijat ja luova työryhmä venyttävät tanssin rajoja ja tutkivat ihmisilmaisun syvyyksiä. Adrienn Hódin sanoin: ”Esityksessä ihmisyys tapahtuu ihmisten edessä.”</p><p>Koreografia: Adrienn Hód<br>Koreografin taiteellinen työpari: Csaba Molnár<br>Sävellys: Áron Porteleki<br>Dramaturgi: Ármin Szabó-Székely<br>Puvut yhdessä työryhmän kanssa: Laura Dammert<br>Äänimestari: Eero Niemi<br>Naamioinnin suunnittelu: Tuula Kuittinen</p>" }, "name": { "fi": "Project No. 2191" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Pieni näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20545937/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999897", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849160/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999897/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999897/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/sutinaa-ja-saatoa-helsingin-kaupunginteatteri-19999897/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360032, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.766941Z", "last_modified_time": "2025-03-17T22:17:20.766955Z", "url": "https://www.lippu.fi/obj/mam/finland/a1/8c/sutinaa222-tickets_369148_3117437_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360032/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:44.276441Z", "last_modified_time": "2025-12-03T01:14:46.108647Z", "date_published": null, "start_time": "2025-12-02T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Sandy Rustin SUTINAA JA SÄÄTÖÄ Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/sutinaa-ja-saeaetoeae-3849160/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Komediakuningatar Sari Siikanderin ohjaama Sutinaa ja säätöä on flirttaileva farssi, jossa avioliiton kulisseista pidetään kiinni kynnet sinisinä, mutta samalla hypätään päätä pahkaa syvään päätyyn niin riemukkaasti, että katsojan onnellinen osa on nauraa vedet silmissä mukana!</p><p>Sylvia (Pihla Penttinen) ja hänen salarakkaansa Beau (Sauli Suonpää) ovat saapuneet jokavuotiselle syntiselle huvilatapaamiselleen. Tällä kertaa Sylvia pudottaa Beaulle todellisen uutispommin, ja kertoo jättäneensä miehensä. Sähkeellä!</p><p>Tämä on vasta alkua, sillä seuraavaksi kaksikon puolisot (Emilia Sinisalo ja Heikki Ranta) pelmahtavat samalle huvilalle! Todellinen salaisuuksien Pandoran lipas revähtää auki ja niin henkilöiden identiteetit kuin avioliittokäsitykset joutuvat kiivaasti kieppuvaan myllyyn.</p><p>Broadwaylla ensi-iltansa vuonna 2023 saanut Sutinaa ja säätöä sijoittuu herkullisesti 1920-luvun Englantiin, mutta sen käänteet ja käänteissä kärvistelevät ihmiset ovat täyttä tätä päivää, tunnistettavia ja samaistuttavia, kaikessa hullunkurisuudessaan rakastettavia ja pakahduttavan hauskoja.</p><p>Sutinaa ja säätöä on uusi ja raikas farssikomedia parisuhteista. Kuumana kuplivaa sutinaa ja sysipimeitä salaisuuksia pulppuava parituntinen, jonka aikana katsoja tulee yllätetyksi monta kertaa – aivan kuten komedian henkilötkin.</p><p>Rooleissa: Pihla Penttinen, Sauli Suonpää, Emilia Sinisalo, Heikki Ranta, Ella Lymi ja Mikko Virtanen</p><p>Suomentaja: Reita Lounatvuori<br>Ohjaus: Sari Siikander<br>Lavastus: Peter Ahlqvist<br>Pukusuunnittelu: Elina Kolehmainen<br>Valosuunnittelu: Petteri Heiskanen<br>Äänisuunnittelu: Eero Niemi<br>Naamioinnin suunnittelu: Jutta Kainulainen<br>Dramaturgi: Ari-Pekka Lahti</p><p>Esitysoikeuksia valvoo: Nordic Drama Corner</p>", "en": "<p>Sandy Rustin<br><strong>SUTINAA JA SÄÄTÖÄ</strong></p>" }, "name": { "fi": "Sutinaa Ja Säätöä" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999897/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:19999861", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p13876/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999861/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999861/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-19999861/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 360031, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T22:17:20.182714Z", "last_modified_time": "2025-03-17T22:17:20.182730Z", "url": "https://www.lippu.fi/obj/mam/finland/be/98/lpb222-tickets_369152_3117477_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/360031/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:44.168542Z", "last_modified_time": "2025-12-03T01:14:45.978830Z", "date_published": null, "start_time": "2025-12-02T16:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Juha Jokela LET´S PLAY BUSINESS Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/lets-play-business-3849158/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Juha Jokela<br><strong>LET´S PLAY BUSINESS</strong></p><p>Juha Jokelan uutuuskomedia Let’s Play Business käsittelee nykyaikaisen työelämän haasteita hykerryttävällä otteella. Se on oivaltava, paikoin täysin päätön komedia, joka yllättää, naurattaa ja osuu aikaan kuin ryhmysauva pahvilaatikkoon – toisin sanoen jättää jäljen.</p><p>Tarinan tapahtumat sijoittuvat HX-nimiseen suomalaiseen projektikonsultointifirmaan, jonka autoritaarinen johtaja Raimo Hemming on hiljattain jäänyt eläkkeelle.</p><p>HX:n työntekijät, jotka itse kutsuvat itseään “höksyiksi”, yrittävät sopeutua karismaattisen, mutta hyvin kiistanalaisen keulakuvan jälkeiseen aikaan. Hemmingin liittolaiset, kuten Hannu (Santeri Kinnunen) ja hänen oikkujensa uhrit, kuten Ressu (Sanna-June Hyde), joutuvat nyt elämään samaa avokonttoritodellisuutta.</p><p>Ex-pomon jättämien arpien käsittely sopii erityisen huonosti uuden toimitusjohtajan Artturin (Martti Manninen) lennokkaisiin työkulttuuri-ideoihin, joissa etsitään liiketoimintaan luovuutta ja tarvittaessa virkistytään tanssimalla.</p><p>Let’s Play Business käsittelee tyylikkäästi ja hienostuneen satiirisesti johtamista, vahvan johtajan kaipuuta sekä työelämän mielekkyyttä.</p><p>Tai siis käsittelisi, mutta…<br>…kyseistä tarinaa on jostain sattuman oikusta palkattu esittämään näyttelijäseurue, jonka taiteellinen johtaja (Wanda Dubiel) ei varsinaisesti pelaa yhteisesti sovitun sääntökirjan mukaan. Hänen vahvuuksiinsa eivät kuulu tasa-arvo, itsetuntemus, kohtuus tai oman toiminnan kriittinen tarkastelu.</p><p>Seurauksena on yritystarinan rinnalla kulkeva hallitsemattomaksi kiihtyvä kaaos, jossa rooleja vaihtuu lennosta ja kulisseja kaatuu, ja joka on ennen kaikkea teatterin talouspäällikön (Jan-Christian Söderholm) pahin painajainen: “Näytti edulliselta. Tulee olemaan kaikkee muuta. Henkinen hinta on mittaamaton.”</p><p>Luvassa on hykerryttävää dialogia, terävää aikalaisanalyysiä ja hulvatonta tilannekomiikkaa.</p><p>Rooleissa: Wanda Dubiel, Tiina Peltoneni, Sanna-June Hyde, Santeri Kinnunen, Aksinja Lommi, Kai Lähdesmäki, Martti Manninen, Unto Nuora, Raili Raitala, Ursula Salo, Jan-Christian Söderholm</p><p>Käsikirjoitus ja ohjaus: Juha Jokela<br>Dramaturgi: Henna Piirto<br>Koreografi: Valtteri Raekallio<br>Ohjaajan assistentti: Johanna Elovaara<br>Lavastus: Antti Mattila<br>Pukusuunnittelu: Sari Suominen<br>Valosuunnittelu: Toni Haaranen<br>Videosuunnittelu: Timo Teräväinen<br>Äänisuunnittelu: Maura Korhonen<br>Naamioinnin suunnittelu: Aino Hyttinen<br>Tarpeiston suunnittelu: Mira Rokkanen</p><p>Esitysoikeuksia valvoo:<br>Nordic Drama Corner<br></p>" }, "name": { "en": "Let'S Play Business" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999861/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20546004", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2706561/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546004/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1468357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T08:34:26.435982Z", "last_modified_time": "2025-08-12T08:34:26.436003Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2022/HKT_Seniorisoppa_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1468357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T08:34:26.873397Z", "last_modified_time": "2025-12-03T01:14:45.844712Z", "date_published": null, "start_time": "2025-12-02T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Merja Larivaara SENIORISOPPA Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Merja Larivaara<br><strong>SENIORISOPPA</strong><p> <strong>Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä. Tervetuloa virittäytymään yhdessä joulutunnelmaan!</strong></p><p> Seniorisoppa® on tapahtuma, johon voi tulla yksin, kaksin tai isommallakin porukalla. Seuraa löytyy, ja aina saa laulaa myös mukana!</p><p> Seniorisoppa®-konsepti on näyttelijä Merja Larivaaran ideoima. Hän on mukana koko tapahtuman ajan paitsi musisoimassa, myös jutustelemassa sekä saattelemassa konserttivieraita kotimatkalle.</p><p>Lipun hintaan sisältyy konsertti (kesto noin 45 minuuttia) suurella näyttämöllä sekä tarjoilu suuren näyttämön lämpiössä.</p><p> Konsertin tarjoilu sisältää kahvin/teen ja pullan.<br></p><p> <br> </p><p> Esiintyjät: Merja Larivaara, Rauno Ahonen, Laura Alajääski, Sari Haapamäki,</p><p> Juha Jokela, Sanna-June Hyde, Jouko Klemettilä, Vappu Nalbantoglu,</p><p> Aino Seppo, Mikko Vihma</p><p> <br> Ovet lämpiöön avataan 45 min. ennen, tarjoilu konsertin jälkeen.</p><p> Tilaisuuden kesto yhteensä n. 1 t 30 min.</p><p> Huom! Lipunmyynti päättyy neljää (4) päivää ennen tapahtumaa tarjoiluvarauksista johtuen.</p><p><a href=\"https://hkt.fi/esitykset/seniorisoppa/\"><strong>Lisätietoa</strong></a><br></p>" }, "name": { "fi": "Seniorisoppa Joulukonsertti" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20546004/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20546003", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2706561/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546003/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546003/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/seniorisoppa-helsinki-helsingin-kaupunginteatteri-20546003/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1468357, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-12T08:34:26.435982Z", "last_modified_time": "2025-08-12T08:34:26.436003Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2022/HKT_Seniorisoppa_222x222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1468357/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-12T08:34:26.309508Z", "last_modified_time": "2025-12-03T01:14:45.665712Z", "date_published": null, "start_time": "2025-12-02T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Merja Larivaara SENIORISOPPA Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/seniorisoppa-helsinki-2706561/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Merja Larivaara<br><strong>SENIORISOPPA</strong><p> <strong>Kauniita joululauluja, yhdessäoloa, tunnelmaa ja tarinoita Helsingin Kaupunginteatterin suurella näyttämöllä. Tervetuloa virittäytymään yhdessä joulutunnelmaan!</strong></p><p> Seniorisoppa® on tapahtuma, johon voi tulla yksin, kaksin tai isommallakin porukalla. Seuraa löytyy, ja aina saa laulaa myös mukana!</p><p> Seniorisoppa®-konsepti on näyttelijä Merja Larivaaran ideoima. Hän on mukana koko tapahtuman ajan paitsi musisoimassa, myös jutustelemassa sekä saattelemassa konserttivieraita kotimatkalle.</p><p>Lipun hintaan sisältyy konsertti (kesto noin 45 minuuttia) suurella näyttämöllä sekä tarjoilu suuren näyttämön lämpiössä.</p><p> Konsertin tarjoilu sisältää kahvin/teen ja pullan.<br></p><p> <br> </p><p> Esiintyjät: Merja Larivaara, Rauno Ahonen, Laura Alajääski, Sari Haapamäki,</p><p> Juha Jokela, Sanna-June Hyde, Jouko Klemettilä, Vappu Nalbantoglu,</p><p> Aino Seppo, Mikko Vihma</p><p> <br> Ovet lämpiöön avataan 45 min. ennen, tarjoilu konsertin jälkeen.</p><p> Tilaisuuden kesto yhteensä n. 1 t 30 min.</p><p> Huom! Lipunmyynti päättyy neljää (4) päivää ennen tapahtumaa tarjoiluvarauksista johtuen.</p><p><a href=\"https://hkt.fi/esitykset/seniorisoppa/\"><strong>Lisätietoa</strong></a><br></p>" }, "name": { "fi": "Seniorisoppa Joulukonsertti" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20546003/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20539239", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9302/?format=api" }, "keywords": [], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2503579/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539239/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539239/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kaksitoista-lahjaa-joulupukille-helsingin-kaupunginteatteri-20539239/?affiliate=ADV&language=en" }, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1461551, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T10:15:48.431415Z", "last_modified_time": "2025-08-11T10:15:48.431434Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/hkt12lahjaa222.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1461551/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-11T10:15:58.225296Z", "last_modified_time": "2025-12-03T01:14:45.527785Z", "date_published": null, "start_time": "2025-12-02T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mauri Kunnas Kaksitoista lahjaa Joulupukille Rakastettu klassikko Pienen näyttämön lämpiö – Eläintarhantie 5 Ensi-ilta 1." }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kaksitoista-lahjaa-joulupukille-2503579/?affiliate=ADV&language=en" }, "description": { "fi": "<p>Mauri Kunnas<br><strong>Kaksitoista lahjaa Joulupukille</strong><br>Rakastettu klassikko</p><p>Pienen näyttämön lämpiö – Eläintarhantie 5<br>Ensi-ilta 1.11.2018<br>Noin 40 min, ei väliaikaa<br>Soveltuu 3-vuotiaasta ylöspäin.<br>10 €</p><p><strong>Mauri Kunnaksen rakastettu klassikkotarina taiotaan joulun aikaan eläväksi pienen näyttämön lämpiöön.Joulupukin kylässä, Korvatunturilla, käy kova vilske ja hyörinä, kun tonttujen suureen joulujuhlaan on enää kaksitoista päivää.<br></strong><br>Ville-tonttu pitää joulusta hurjan paljon ja lahjojen antaminen on parasta mitä hän tietää. Mutta Villellä on pulma. Miten Joulupukkia voisi ilahduttaa? Hän keksii antaa Joulupukille lahjan jokaisena päivänä ennen joulua. Ja hauskaahan siitä tulee, kun kaikki ei sujukaan suunnitelmien mukaan. Tonttupojan tempaukset onnellistuttavat kiireen keskellä ja tuovat hyvän joulumielen. Joulukylässä tapaat Ville-tontun, Joulupukin, Joulumuorin, oikeita ja sulavia poroja, Rekku-koiran, kissan ja tonttuväkeä!</p><p>Rooleissa: Sanna-June Hyde, Kaisa Torkkel ja Juha Jokela</p><p>Esitysoikeuksia valvoo Agency North / Suomen Näytelmäkirjailijat ja Käsikirjoittajat.</p>" }, "name": { "fi": "Kaksitoista Lahjaa Joulupukille" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20539239/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnn65vxz4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1810/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8743/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1493998, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-12-02T13:24:28.877433Z", "last_modified_time": "2025-12-02T13:24:28.877458Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bac39392-34d8-406a-87a2-385359a97b88.png", "name": "", "cropping": "200,0,1000,800", "photographer_name": "", "alt_text": "kansanedustaja Inka Hopsu, aluekoordinaattori Anu Kantola, työllisyysjohtaja Hilla-Maaria Suomi ja yhteiskuntasuhdepäällikkö Riikka Mykkänen. Tilaisuuden juontaa Espoon Vihreiden hallituksen jäsen Marjo Hinkkala.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1493998/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-02T13:37:46.994978Z", "last_modified_time": "2025-12-02T13:37:46.994995Z", "date_published": null, "start_time": "2025-12-09T16:00:00Z", "end_time": "2025-12-09T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Miltä näyttää Espoon työmarkkinatilanne", "sv": "Hur ser arbetsmarknadssituationen ut i Esbo", "en": "What is the labor market situation like in Espoo?" }, "info_url": { "fi": "https://www.espoonvihreat.fi/", "sv": "https://www.espoonvihreat.fi/", "en": "https://www.espoonvihreat.fi/" }, "description": { "fi": "<p><strong>Miltä näyttää Espoon työmarkkinatilanne, erityisesti korkeakoulutettujen näkökulmasta? Miksi nuorten, yli 50 v ja maahanmuuttajien työllistyminen on vaikeaa? Mitä toimia kaupunki tai muut toimijat voisivat tehdä työllisyystilanteen parantamiseksi?</strong></p><p>Tervetuloa keskustelemaan kanssamme Espoon työllisyystilanteesta tiistaina 9.12. kello 18 alkaen Entressen kirjastoon. </p><p>Mukana tapahtumassa ovat kansanedustaja <strong>Inka Hopsu</strong>, aluekoordinaattori <strong>Anu Kantola</strong>, työllisyysjohtaja <strong>Hilla-Maaria Suomi</strong> ja yhteiskuntasuhdepäällikkö <strong>Riikka Mykkänen</strong>. Tilaisuuden juontaa Espoon Vihreiden hallituksen jäsen <strong>Marjo Hinkkala</strong>. Tilaisuudessa on mahdollisuus esittää panelisteille kysymyksiä aiheesta. </p><p><br></p>", "sv": "<p><strong>Hur ser arbetsmarknadssituationen ut i Esbo, särskilt ur högutbildade personers perspektiv? Varför är det svårt för ungdomar, personer över 50 år och invandrare att hitta arbete? Vilka åtgärder kan staden eller andra aktörer vidta för att förbättra sysselsättningssituationen?</strong></p><p>Kom och diskutera sysselsättningssituationen i Esbo med oss tisdagen den 9 december kl. 18.00 på Entresse biblioteket. </p><p>Evenemanget kommer att gästas av riksdagsledamot<strong> Inka Hopsu</strong>, regionkoordinator <strong>Anu Kantola</strong>, sysselsättningsdirektör <strong>Hilla-Maaria Suomi</strong> och samhällskontaktchef <strong>Riikka Mykkänen</strong>. Evenemanget kommer att ledas av <strong>Marjo Hinkkala</strong>, medlem i Espoo De Gröna partiets verkställande utskott. Det kommer att finnas möjlighet att ställa frågor om ämnet till paneldeltagarna.</p>", "en": "<p><strong>What is the labor market situation in Espoo, particularly from the perspective of highly educated people? Why is it difficult for young people, people over 50, and immigrants to find employment? What measures could the city or other organisations take to improve the employment situation?</strong></p><p>Come and discuss the employment situation in Espoo with us on Tuesday, December 9, starting at 6 p.m. at the Entresse Library. </p><p>The event will be attended by Member of Parliament<strong> Inka Hopsu</strong>, Regional Coordinator <strong>Anu Kantola</strong>, Employment Director <strong>Hilla-Maaria Suomi</strong>, and Community Relations Manager <strong>Riikka Mykkänen</strong>. The event will be hosted by<strong> Marjo Hinkkala</strong>, member of the Espoo The Greens executive committee. Attendees will have the opportunity to ask the panelists questions on the topic. </p>" }, "name": { "fi": "Työllisyys Espoossa - keskustelutilaisuus ", "sv": "Sysselsättning i Esbo – diskussionssession ", "en": "Employment in Espoo – discussion event " }, "provider_contact_info": null, "location_extra_info": { "fi": "Estradi", "sv": "Estradi", "en": "Estradi" }, "provider": { "fi": "Espoon Vihreät ", "sv": "Esbå De Gröna", "en": "Espoo The Greens" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnn65vxz4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }