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=100®istration__remaining_attendee_capacity__isnull=true
{ "meta": { "count": 33108, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=101®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=99®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "espoo_le:agn4bryh4i", "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:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4brykly/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 153076, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T10:57:29.523947Z", "last_modified_time": "2024-03-15T10:57:29.523981Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/pexels-porapak-apichodilok-346709.jpg", "name": "", "cropping": "501,0,2499,1998", "photographer_name": "", "alt_text": "ihminen soittaa ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153076/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T07:30:47.327137Z", "last_modified_time": "2026-03-05T09:57:08.985175Z", "date_published": null, "start_time": "2026-03-05T14:30:00Z", "end_time": "2026-03-05T15: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, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Intermediate Ukulele Group. We play popular Finnish and English tunes. Participation is free of charge and no pre-registration" }, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston ukulelen jatkoryhmään. Soitamme tuttuja, lähinnä suomen-, englanninkielisiä lauluja. Välillä haastamme myös itseämme soittamalla melodioita ja opettamalla uusia sointuja ja komppeja. Ryhmässä rentous, välitön tunnelma ja yhteisöllisyys ovat tärkeitä asioita. Olet aina tervetullut mukaan! Kirjastolla on myös ukuleleja joita voit lainata tunnin ajaksi.</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta</p><p><br></p><p>Ryhmä kokoontuu torstaisin klo 16.30-17.30 Sellon kirjaston Jaminurkassa. Ensimmäinen tunti on torstaina 29.1.2026</p><p>Huom. ei tuntia viikolla 19.2 ja 30.4 </p><p><br></p><p>#musiikki #ukulele #sello #ryhmä #kirjasto</p>", "en": "<p>Thursday at 16.30-17.30 in Sello Library Jaminurkka.</p><p> </p><p>Welcome to the Espoo City Library intermediate ukulele group. We play popular Finnish and English songs. From time to time we challenge ourselves by learning new chords, melodies and strums. Relaxing atmosphere and community are important values of the group. There are ukuleles in the library that you can borrow for the lesson.</p><p><br></p><p>Participation is free and no pre-registration is required.</p><p><br></p><p>First lesson is Thrusday 29.1.2026</p><p>No class 19th of February and 30th of April</p><p>#music #ukulele #sello #library</p>" }, "info_url": null, "name": { "fi": "PERUTTU Ukulelen jatkoryhmä", "en": "CANCELLED Ukulele, Intermediate Group" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4bryh4i/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn4di3fta", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4di3ide/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:KOTO", "sub_events": [], "images": [ { "id": 150432, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-15T12:23:54.433662Z", "last_modified_time": "2024-03-15T12:23:54.433684Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulele-2205860_1920.jpg", "name": "", "cropping": "518,0,1402,885", "photographer_name": "", "alt_text": "kolme ukulelea", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150432/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-01-15T11:21:34.210850Z", "last_modified_time": "2026-03-05T09:55:40.945017Z", "date_published": null, "start_time": "2026-03-05T15:45:00Z", "end_time": "2026-03-05T16: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, "provider": null, "short_description": { "fi": "Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Kirjastolla on 15 lainasoitinta tunnin ajaksi. Osallistuminen on maksutonta.", "en": "Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. There are 15 ukuleles that can be borrowed for the class. Participation is free of charge." }, "description": { "fi": "<p>Tervetuloa mukaan Espoon kaupunginkirjaston 7–12-vuotiaiden ukuleleryhmään. Tunneilla on tarkoitus tutustua musiikkiin monipuolisesti. Harjoittelemme sointujen, sekä melodian soittamista kappaleiden avulla. Lisäksi teemme musiikin hahmottamista ja ryhmäytymistä tukevia harjoituksia leikkimällä ja piirtämällä. Opetus on oppilaslähtöistä. Kirjastolla on 15 ukulelea, joita voi lainata tunnin ajaksi.</p><p>Ensimmäinen tunti on 29.1.2026</p><p><strong>Tunnille mahtuu 15 lasta. Osallistuminen on maksutonta.</strong></p><p><strong>Ei tuntia </strong>\t19.2, 30.4 ja 14.5</p><p><br></p><p>Ennakkoilmoittautuminen: https://link.webropol.com/s/ukuleletunti</p><p>Ryhmää vetää Lauri Iljin</p><p>lauri.iljin(at)espoo.fi</p><p>#musiikki #ukulele #sello #lapset #nuoret</p>", "en": "<p>Welcome to the Espoo City Library Ukulele Group 7- to 12-year-old. In the Ukulele Group we learn basic of the music theory and playing an ukulele. We practice how to play melody and harmony with well-known songs. Teaching is student-centered. The Library has 15 ukuleles that can be borrowed for the lesson.</p><p><br></p><p>Pre-registration: https://link.webropol.com/s/ukuleletunti</p><p>First class is 29.1.2026</p><p><br></p><p><strong>15 children can attend the class. Participation is free of charge.</strong></p><p><strong>No class 19.2, 30.4 and 14.5</strong></p><p><br></p><p><br></p><p>Lauri Iljin teaches the group</p><p>lauri.iljin(at)espoo.fi</p>" }, "info_url": null, "name": { "fi": "PERUTTU Ukulele 7-12-vuotiaiden ryhmätunti", "en": "CANCELLED Ukulele - 7- to 12-year-old" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka", "en": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn4di3fta/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwqye", "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: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": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1824196, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2026-03-05T09:12:04.683790Z", "last_modified_time": "2026-03-05T09:12:04.683807Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/1251b4ab-89bc-435d-8dea-7601127bd2cc.jpg", "name": "", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Tapahtuman mainos, jossa puhujien kuvat", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1824196/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-03-05T09:12:48.139754Z", "last_modified_time": "2026-03-05T09:12:48.139773Z", "date_published": null, "start_time": "2026-03-07T12:00:00Z", "end_time": "2026-03-07T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": null, "short_description": { "fi": "Yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää teemalla ”Anna saadaksesi”. Tapahtuman tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.", "en": "An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired." }, "description": { "fi": "<p>Avoin yhteisötapahtuma, jossa juhlitaan kansainvälistä naistenpäivää 2026 teemalla ”Anna saadaksesi”. Tapahtuma on avoin kaikille, ja sen tarkoituksena on luoda yhteyksiä, oppia ja inspiroida.</p>", "en": "<p>An open community event celebrating International Women’s Day 2026 under the theme ‘Give to Gain,’ welcoming all to connect, learn, and be inspired.</p>" }, "info_url": null, "name": { "fi": "Women’s Day 2026 ", "en": "Women’s Day 2026 " }, "provider_contact_info": null, "location_extra_info": { "fi": "Lava", "en": "Stage" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwqye/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20843258", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p9244/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-2039568/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843258/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843258/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/club-actone-helsingin-kaupunginteatteri-studio-pasila-20843258/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235438, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:43.926542Z", "last_modified_time": "2025-02-17T11:16:43.926559Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2023/clubactone222.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/235438/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-20T07:15:53.357422Z", "last_modified_time": "2026-03-04T23:14:31.362904Z", "date_published": null, "start_time": "2026-03-04T17: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "CLUB ACT!ONE Studio Pasila on Suomen johtava stand up -komiikan estradi." }, "description": { "fi": "<p>Studio Pasila on Suomen johtava stand up -komiikan estradi. Lavalle nousevat maan eturivin stand up -koomikot. Stand up on irrottelua, vedätystä, itsensä alttiiksi panemista ja uuden esitystilanteen nopeaa oivaltamista.</p><p>Esitykset kestävät noin 2 tuntia, sisältäen lyhyen väliajan. Esitykset K-18.</p><p>Yhteistyössä W&T Comedyn kanssa.</p>", "en": "<p><strong>CLUB ACT!ONE</strong></p>" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/eventseries/club-actone-2039568/?affiliate=ADV&language=en" }, "name": { "en": "Club Act!One K-18" }, "provider_contact_info": null, "location_extra_info": { "fi": "Studio Pasila" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20843258/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21377143", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:46367/?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-967155/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-21377143/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-21377143/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/kivia-taskussa-helsinki-helsingin-kaupunginteatteri-arena-nayttamo-21377143/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 152460, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-18T10:16:44.815531Z", "last_modified_time": "2024-09-18T10:16:44.815551Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2017/hkt_kiviataskussa_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/152460/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2026-02-27T15:15:24.053709Z", "last_modified_time": "2026-03-04T23:14:31.230772Z", "date_published": null, "start_time": "2026-03-04T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Marie Jones KIVIÄ TASKUSSA Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän." }, "description": { "fi": "<p>Marie Jones<br><strong>KIVIÄ TASKUSSA</strong></p><p>Charlie ja Jake, Martti Suosalo ja Mika Nuojua, kulkevat Kiviä taskussa -näytelmässä läpi monen miehen elämän. Pentti Kotkaniemen ohjauksessa ihmiskohtaloihin ja kokemuksiin limittyy myös Irlannin historia. Kiviä taskussa on ilmiö Suomen teatterikentällä – sitä on esitetty loppuunmyytynä jo vuodesta 2002.</p><p>Ohjaaja kehuu näytelmän ideaa: “Ihmettelen sitä, että vasta nyt joku nykykirjailija on käyttänyt keskiajalta tunnettua mysteerio buffo-menetelmää eli näyttelijä siirtyy toiseen rooliin vain rytmiä ja painotusta vaihtamalla.” Tähän hatunvaihtotekniikkaan yltävät nimenomaan Suosalo ja Nuojua. He tekevät yhteensä 15 roolia. “Vaihdot ovat salamannopeita ja roolihahmojen skaala ulottuu hemaisevasta amerikkalaiskaunottaresta 75-vuotiaaseen maalaisukkeliin”, Kotkaniemi kertoo.</p><p>Tarina ei ole silti mikään kahden miehen vitsi-ilta. “Ei, Kiviä taskussa on traaginen komedia ja haastava kahden miehen näytelmä”, Mika Nuojua sanoo. Tarina alkaa siitä, kun 35-vuotiaat luuserit Charlie ja Jake menevät avustajiksi amerikkalaisen elokuvan kuvauksiin ja joutuvatkin tekemään aivan muuta kuin ennakkoon aavistavat.</p><p>Ohjaaja Kotkaniemi sanoo, että näytelmä on tyypillistä näyttelijöiden teatteria. “Siksi molempien herrojen pitää olla virtuooseja. Onneksi he ovat, ja se on ohjaajan lottovoitto.”</p><p>Esitysoikeus: Suomen Teatteritoimisto Teateragenturen i Finland Ab <a href=\"http://www.teatteritoimisto.fi.\">http://www.teatteritoimisto.fi./</a></p><p>Rooleissa:<br>Martti Suosalo ja Mika Nuojua</p><p>Suomentaja: Henri Kapulainen<br>Ohjaaja: Pentti Kotkaniemi<br>Koreografia: Tuovi Rantanen<br>Lavastus ja puvut: Jyrki Seppä<br>Valot: Teppo Saarinen<br>Ääni: Ari-Pekka Saarikko</p><p><a href=\"https://hkt.fi/esitykset/kivia-taskussa\"><strong>Lisätietoa</strong></a></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/kiviae-taskussa-helsinki-967155/?affiliate=ADV&language=en" }, "name": { "fi": "Kiviä Taskussa" }, "provider_contact_info": null, "location_extra_info": { "fi": "Arena-näyttämö, Hämeentie 2" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21377143/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20843391", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9353/?format=api" }, "keywords": [ { "@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-3956237/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/vaaldets-historia-helsingin-kaupunginteatteri-lilla-teatern-20843391/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/vaaldets-historia-helsingin-kaupunginteatteri-lilla-teatern-20843391/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/vaaldets-historia-helsingin-kaupunginteatteri-lilla-teatern-20843391/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 1464813, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-11T21:17:07.744760Z", "last_modified_time": "2025-08-11T21:17:07.744780Z", "url": "https://www.lippu.fi/obj/mam/finland/ca/a4/hkt-tickets_427263_3487579_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/1464813/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-20T07:15:53.099247Z", "last_modified_time": "2026-03-04T23:14:31.092488Z", "date_published": null, "start_time": "2026-03-04T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "sv": "Édouard Louis VÅLDETS HISTORIA Våldets historia är en gripande berättelse om klasskillnader, våld och den snäva mansrollen." }, "description": { "fi": "<p>Édouard Louis<br><strong>VÅLDETS HISTORIA</strong></p><p><br>Våldets historia on koskettava kertomus luokasta, väkivallasta ja kapeasta miehen mallista. Näytelmä perustuu ranskalaisen kirjailijan Édouard Louis’n menestysromaaneihin En finir avec Eddy Bellegueule ja Histoire de la violence.</p><p>Näytelmän ensimmäinen osa on Eddy-pojan kasvukertomus pikkukaupungissa Pohjois-Ranskassa. Eddyn elämää varjostavat oman perheen köyhyys ja julma koulukiusaaminen. Näytelmän toinen osa käsittelee aikuiseksi kasvaneen kirjailijan kohtaamaa seksuaalista väkivaltaa ja siitä toipumista.</p><p>Vaikka Louis’n romaanien lähtökohdat ovat hurjat, esityksen pyrkimyksenä on käsitellä vaikeita aiheita lempeästi ja monipuolisesti teatterin keinoin. Ohjaaja Jakob Höglund on tunnettu koreografisesta ja musiikillisesta näyttämökielestään, jota hän haluaa kehittää myös tässä teoksessa. Esityksen musiikin säveltää Elia Lombardini.</p><p>Édouard Louis kirjoitti esikoisteoksensa vain 21-vuotiaana, ja romaanista tuli heti julkaisun jälkeen sekä kriitikoiden että yleisön rakastama Ranskassa. Louis’n teoksia on käännetty kymmenille kielille ja niiden pohjalta on tehty teatteriesityksiä ympäri maailmaa. Lilla Teaternin Våldets historia on ensimmäinen kerta, kun Louis’n teoksia nähdään Suomessa näyttämöllä.</p><p>Maskdesign: Jaana Nykänen</p><p>Dramaturg: Henna Piirto</p>", "sv": "<p><br>Våldets historia är en gripande berättelse om klasskillnader, våld och den snäva mansrollen. Pjäsen bygger på den franska författaren Édouard Louis’ hyllade romaner En finir avec Eddy Bellegueule och Histoire de la violence.</p><p>Den första akten skildrar Eddys uppväxt i en småstad i norra Frankrike, där hans liv präglas av familjens fattigdom och grym mobbning. Den andra akten behandlar det sexuella våld som den vuxna författaren utsätts för och återhämtningen därefter.</p><p>Trots de brutala utgångspunkterna i Louis’ romaner vill föreställningen med teaterns medel skildra den svåra tematiken på ett inkännande och nyanserat sätt. Regissören Jakob Höglund är känd för sitt koreografiska och musikaliska scenspråk, vilket han vill vidareutveckla även i detta verk. Den nyskrivna musiken komponeras av Elia Lombardini.</p><p>Édouard Louis skrev sin debutroman som 21-åring, och den blev snabbt en publik- och kritikerfavorit i Frankrike. Hans verk har översatts till tiotals språk och teateruppsättningar baserade på dem har spelats världen över. Nu sätts Louis första gången upp på scen i Finland.</p><p>***</p><p><br>På scen: Andreas Kvisgaard, Salomon Z. Patrick, Pia Runnakko, Maria Lura Skrudland, Patrik Kumpulainen och Joachim Wigelius</p><p>Författare: Édouard Louis</p><p>Dramatisering: Rasmus Arikka</p><p>Översättning: Kasimir Koski</p><p>Regi: Jakob Höglund</p><p>Scenografi och kostym: Sven Haraldsson</p><p>Ljusdesign: Ville Aaltonen</p><p>Ljuddesign: Jaakko Virmavirta</p><p>Komponist: Elia Lombardini</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/valdets-historia-3956237/?affiliate=ADV&language=en" }, "name": { "sv": "Våldets Historia" }, "provider_contact_info": null, "location_extra_info": { "fi": "Lilla Teatern" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20843391/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3849158", "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": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999843/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999844/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999866/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999867/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999845/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999868/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999846/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999847/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999848/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999849/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999869/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999870/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999850/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999851/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999852/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999871/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999853/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999872/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999854/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999855/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999856/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999857/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999873/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999858/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999859/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999860/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999861/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999862/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999864/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:19999865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20309159/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776475/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776477/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776478/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776476/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776481/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776482/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776479/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776480/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776483/?format=api" } ], "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:47.305219Z", "last_modified_time": "2026-03-04T21:16:32.908756Z", "date_published": null, "start_time": "2025-08-28T15:30:00Z", "end_time": "2026-03-04", "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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "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." }, "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>" }, "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" }, "name": { "fi": "Let'S Play Business En", "en": "Let'S Play Business" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849158/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20776483", "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": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/lets-play-business-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20776483/?affiliate=ADV&language=en" }, "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-10-08T15:15:05.404837Z", "last_modified_time": "2026-03-04T21:15:44.577507Z", "date_published": null, "start_time": "2026-03-04T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "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." }, "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>" }, "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" }, "name": { "en": "Let'S Play Business" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20776483/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agn3el5q2y", "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: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" }, { "@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:agmk23al3y/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5cjm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5eae/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5fmu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5gza/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5ici/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5jn4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5k5q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5mjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5nyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5pf4/?format=api" } ], "images": [ { "id": 150743, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-04-23T12:43:34.341615Z", "last_modified_time": "2024-05-17T10:30:18.739899Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png", "name": "Kahvihetki.", "cropping": "293,0,1707,1414", "photographer_name": "Pixabay", "alt_text": "Kolme kahvikuppia.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150743/?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": "2026-01-12T11:48:40.296817Z", "last_modified_time": "2026-03-04T12:24:35.443396Z", "date_published": null, "start_time": "2026-01-16T07:00:00Z", "end_time": "2026-05-22T08:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Elinvoima" }, "short_description": { "fi": "Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.", "sv": "Familjekafé, som riktar sig till familjer med barn under skolåldern.", "en": "Family Café is an event for families with children under school age, which will start in the Entresse library." }, "description": { "fi": "<p>Alle kouluikäisille lapsiperheille suunnattu Perhekahvila käynnistyy Entressen kirjastossa.</p><p>Tervetuloa laulamaan, loruttelemaan, kuuntelemaan satuja ja viettämään aikaa alueen muiden vanhempien kanssa kahvikupin äärellä.</p><p>Järjestetään joka toinen perjantai klo 9-11 Entressen kirjaston Sinisessä huoneessa.</p><p>Järjestetään:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>Tapahtumaan on esteetön pääsy.</p><p><br></p><p>#HelloEspoo</p>", "sv": "<p>Familjekafé, som riktar sig till familjer med barn under skolåldern, kommer att starta i Entresse biblioteket.</p><p>Välkommen att sjunga, rimma, lyssna på sagor och umgås med andra föräldrar i området över fika.</p><p>Händer varje fredag från 9 till 11 i Sininen huone på Entresse biblioteket.</p><p>Händer:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>Evenemanget är på finska.</p><p><br></p><p>#HelloEspoo</p><p>Evenemanget är tillgängligt för rörelsehindrade.</p>", "en": "<p>Family Café is an event for families with children under school age, which will start in the Entresse library.</p><p>Welcome to sing, rhyme, listen to fairy tales and spend time with other parents in the area over a cup of coffee.</p><p>Organized on every Friday from 9 to 11 in the Sininen huone at Entresse library.</p><p>Event is organized on:</p><p>16.1.2026</p><p>30.1.2026</p><p>13.2.2026</p><p>27.1.2026</p><p>13.3.2026</p><p>27.3.2026</p><p>24.4.2026</p><p>8.5.2026</p><p>22.5.2026</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p><p><br></p><p>#HelloEspoo</p>" }, "info_url": null, "name": { "fi": "Perhekahvila", "sv": "Familjekafé", "en": "Family Café" }, "provider_contact_info": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agn3el5q2y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agnidmck5q", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7aqq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmcoga/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490245, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T11:37:19.542981Z", "last_modified_time": "2025-03-17T11:37:19.543003Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/bdb02369-37a7-4f2a-8066-d6a0186343a9.png", "name": "", "cropping": "132,0,653,522", "photographer_name": "", "alt_text": "Kuvassa popcornia ja klaffi.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490245/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-11-14T08:28:52.942709Z", "last_modified_time": "2026-03-04T11:44:58.278468Z", "date_published": null, "start_time": "2026-03-06T09:00:00Z", "end_time": "2026-03-06T11: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, "provider": null, "short_description": { "fi": "Aikuisille suunnatussa leffahetkessä katsotaan ennakkoon valittu elokuva vaihtelevista genreistä.", "sv": "Detta är ett tillfälle för vuxna att se en på förhand utvald film från olika genrer.", "en": "Aimed at adults, this is a time to watch a pre-selected film from a variety of genres." }, "description": { "fi": "<p>Tervetuloa Kino Lippulaivaan! Muutaman kerran kuukaudessa Lippulaivan kirjaston Salonki muotoutuu leffateatteriksi.</p><p>Elokuvahetki on tarkoitettu aikuisille. Elokuvien ikärajat on merkitty jokaisen elokuvan nimen perään.</p><p>Elokuvat:</p><p>9.1 Spencer (K-12, draama, elämäkerta)</p><p>23.1. Asteroid City (K-7, draama, komedia)</p><p>6.2. Rinnakkaiset äidit (K-12, draama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, draama, elämäkerta)</p><p>6.3. Kärsimys a kunnia (K-16, draama)</p><p>20.3. Judy (K-12, draama)</p><p>3.4. Rocketman (K-12, draama, elämäkerta, musikaali)</p><p>17.4. Black swan (K-16, draama, kauhu, trilleri)</p><p>15.5. Erämaan armoille (K-12, draama, seikkailu)</p><p>29.5. Kesäkirja (S, draama)</p><p><br></p><p>Ilmoitamme elokuvat noin kuukautta ennen.</p><p>#helloespoo</p>", "sv": "<p>Välkommen till Kino Lippulaiva! Några gånger i månaden förvandlas salongen i Lippulaiva bibliotek till en biograf. </p><p><br></p><p>Filmkvällarna är endast för vuxna. Åldersgränsen för varje film anges efter titeln. </p><p><br></p><p>Filmerna:</p><p>9.1 Spencer (K-12, drama, biografi)</p><p>23.1. Asteroid City (K-7, drama, komedi)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biografi)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4. Rocketman (K-12, drama, biografi, musikal)</p><p>17.4. Black swan (K-16, drama, skräck, triller)</p><p>15.5. Erämaan armoille (K-12, drama, äventyr)</p><p>29.5. Kesäkirja (S, drama)</p><p>Vi annonserar filmerna ungefär en månad i förväg. </p><p>#helloespoo</p>", "en": "<p>Welcome to Kino Lippulaiva! A few times a month, the Salonki in the Lippulaiva Library is transformed into a cinema. </p><p><br></p><p>Movie nights are for adults only. The age limit for each film is indicated after the title. </p><p><br></p><p><br></p><p>Films:</p><p>9.1 Spencer (K-12, drama, biography)</p><p>23.1. Asteroid City (K-7, drama, comedy)</p><p>6.2. Rinnakkaiset äidit (K-12, drama)</p><p>20.2. Van Gogh – Ikuisuuden porteilla (K-12, drama, biography)</p><p>6.3. Kärsimys a kunnia (K-16, drama)</p><p>20.3. Judy (K-12, drama)</p><p>3.4. Rocketman (K-12, drama, biography, musical)</p><p>17.4. Black swan (K-16, drama, horror, triller)</p><p>15.5. Erämaan armoille (K-12, drama, adventure)</p><p>29.5. Kesäkirja (S, drama)</p><p><br></p><p>We announce the films about a month in advance. </p><p>#helloespoo</p>" }, "info_url": null, "name": { "fi": "Aikuisten päiväleffa", "sv": "Film för vuxna på dagtid", "en": "Daytime movie for adults" }, "provider_contact_info": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agnidmck5q/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwrma", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1494900, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2026-02-19T07:52:12.728630Z", "last_modified_time": "2026-02-19T07:52:12.728648Z", "url": "https://tapahtumasyotto.espoo.fi/media/images/0ba4a0a5-003e-48c4-ab74-4e939d865d31.jpg", "name": "", "cropping": "448,0,1600,1152", "photographer_name": "", "alt_text": "Sienikuva", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1494900/?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": "2026-03-04T11:36:39.272608Z", "last_modified_time": "2026-03-04T11:36:39.272625Z", "date_published": "2026-03-04T12:25:40.209000Z", "start_time": "2026-03-28T12:00:00Z", "end_time": "2026-03-28T14: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, "provider": null, "short_description": { "fi": "Musiikkia, rooliasuja ja maagista tunnelmaa!" }, "description": { "fi": "<p>Maaginen viikko valtaa kirjaston! Tervetuloa tanssimaan maagiseen tunnelmaan hyvän musiikin tahdissa! Saat vapaasti pukeutua teeman mukaisesti tai tulla testaamaan kirjastolta löytyviä rooliasuja. Tapahtuma on lapsille ja perheille suunnattu.</p>" }, "info_url": null, "name": { "fi": "Lasten fantastinen disko" }, "provider_contact_info": null, "location_extra_info": { "fi": "Jaminurkka" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwrma/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwrxu", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventCancelled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:13.129882Z", "last_modified_time": "2026-03-04T09:20:17.127584Z", "date_published": null, "start_time": "2026-03-04T13:00:00Z", "end_time": "2026-03-04T14: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "PERUTTU: Taide pop-up työpajat - kevät", "en": "CANCELLED: Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwrxu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:20841350", "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-3613405/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841350/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841350/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/veljeni-leijonamieli-helsinki-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-20841350/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:41.062378Z", "last_modified_time": "2025-02-17T11:16:41.062398Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/veljeni-leijonamieli-222.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/235429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-10-20T07:15:52.765982Z", "last_modified_time": "2026-03-03T23:14:32.982925Z", "date_published": null, "start_time": "2026-03-03T16: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Astrid Lindgren VELJENI LEIJONAMIELI ”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä." }, "description": { "fi": "<p>”Nyt me kerromme tarinan veljeksistä, Kaarle ja Joonatan Leijonasta, ja siitä kuinka heistä tuli Leijonamieliä. Tämä tarina on niin kuin satu, ja vähän myös kummitusjuttu, mutta kaikki on kuitenkin totta.” Astrid Lindgrenin Veljeni Leijonamieli on rakastettu klassikkosatu, maaginen fantasia veljeksistä, jotka kantavat toisiaan vaikeuksien yli. Se on tarina rohkeudesta, veljeydestä ja rakkaudesta. Se on huikea seikkailu, jossa jokainen löytää rohkeutensa.</p><p>Veljeni Leijonamieli kertoo kahdesta veljeksestä, Korpusta (Alexander Wendelin) ja Joonatanista (Mikko Kauppila). Isoveli Joonatan kuolee pelastaessaan sairasta veljeään Korppua tulipalolta, ja pian menehtyy myös Korppu. Veljekset matkaavat lyhyen maanpäällisen elämänsä jälkeen kauniiseen maahan, Nangijalaan, jossa he taistelevat yhdessä pahan voimia vastaan. Matkasta tulee huima ja jännittävä seikkailu, jonka aikana pelokkaasta Korpusta kasvaa rohkea Leijonamieli.</p><p>Veljeni Leijonamieli kertoo surusta kauniisti ja kasvaa maagiseksi fantasiaseikkailuksi, joka on täynnä rohkeutta ja toivoa. Se kertoo valtavasta rakkaudesta, joka voittaa pelot ja jopa kuoleman.</p><p>Astrid Lindgrenin Veljeni Leijonamielen suurelle näyttämölle ohjaa Jakob Höglund. Esitys yhdistelee musiikkiteatteria, nukketeatteria ja koreografiaa fantastiseksi, visuaalisesti henkeäsalpaavaksi kokonaisuudeksi.</p><p>Rooleissa: Mikko Kauppila, Alexander Wendelin, Laura Alajääski, Sofia Hilli, Tuukka Leppänen, Lasse Lipponen, Pekka Louhio, Kai Lähdesmäki, Sanna Majuri, Kari Mattila, Reetta Moilanen, Unto Nuora, Samuli Pajunen, Mikko Paloniemi, Tiina Peltonen, Elena Rekola, Inka Tiitinen, Riina Tikkanen, Risto Kaskilahti, Kalle Lähde</p><p>Muusikko: Senni Valtonen<br>Dramatisointi: Alexander Mørk-Eidem<br>Ohjaus: Jakob Höglund<br>Koreografia: Jakob Höglund & työryhmä<br>Ohjaajan ja koreografin assistentti: Johanna Elovaara<br>Tekstin sovitus, käännös ja laulutekstit: Rasmus Arikka<br>Sävellys ja äänisuunnittelu: Stefan Johansson<br>Lavastus: Vilma Mattila<br>Pukusuunnittelu: Heidi Wikar<br>Valo- ja videosuunnittelu: Toni Haaranen ja William Iles<br>Naamioinnin suunnittelu: Milja Mensonen<br>Nukkien suunnittelu: Heini Maaranen<br>Dramaturgi: Ari-Pekka Lahti<br>Lauluvalmennus: Jukka Nylund<br>Apulaislavastaja: Riku Suvitie</p>", "sv": "<p>Astrid Lindgren<br><strong>VELJENI LEIJONAMIELI</strong></p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/veljeni-leijonamieli-helsinki-3613405/?affiliate=ADV&language=en" }, "name": { "fi": "Veljeni Leijonamieli" }, "provider_contact_info": null, "location_extra_info": { "fi": "Helsingin Kaupunginteatteri, Suuri näyttämö" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20841350/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21033057", "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-3594382/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033057/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033057/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033057/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:44.559638Z", "last_modified_time": "2025-02-17T11:16:44.559655Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.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/235439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-02T17:14:17.229904Z", "last_modified_time": "2026-03-03T23:14:32.860871Z", "date_published": null, "start_time": "2026-03-03T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta." }, "description": { "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Vappu Nalbantoglu, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en" }, "name": { "fi": "Mollin Iltahepuli" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033057/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:21033056", "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-3594382/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033056/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033056/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/mollin-iltahepuli-helsingin-kaupunginteatteri-suuri-nayttamo-ja-pieni-nayttamo-21033056/?affiliate=ADV&language=en" }, "price": null } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [], "images": [ { "id": 235439, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-17T11:16:44.559638Z", "last_modified_time": "2025-02-17T11:16:44.559655Z", "url": "https://www.lippu.fi/obj/media/FI-eventim/teaser/222x222/2024/hkt_mollin_iltahepuli_222.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/235439/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-12-02T17:14:17.092278Z", "last_modified_time": "2026-03-03T23:14:32.730472Z", "date_published": null, "start_time": "2026-03-03T14: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, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "short_description": { "fi": "Katri Kirkkopelto MOLLIN ILTAHEPULI Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta." }, "description": { "fi": "<p>Katri Kirkkopelto<br><strong>MOLLIN ILTAHEPULI</strong></p><p>Mollin iltahepuli on hauska ja katsojaa osallistava esitys lapsiperheille erittäin tutusta aiheesta - nukkumisesta. Mitä tapahtuu, kun Mollille ja hänen parhaalle ystävälleen Sisulle iskee iltaväsymyksen sijasta iltahepuli? Esityksessä tarvitaan katsojien apua, jotta päähenkilöt Molli ja Sisu saadaan unten maille. Esitys pohjautuu Katri Kirkkopellon samannimiseen suosittuun lastenkirjaan.</p><p>Rooleissa: Vappu Nalbantoglu, Helena Haaranen ja Sari Haapamäki</p><p>Dramatisointi ja ohjaus: Jenny Jumppanen<br>Valosuunnittelu: Milla Veirto<br>Puvustus ja lavastus: Aija Nurminen<br>Naamiointi: Tuula Kuittinen<br>Äänisuunnittelu ja sävellys: Eero Niemi</p>" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/mollin-iltahepuli-3594382/?affiliate=ADV&language=en" }, "name": { "fi": "Mollin Iltahepuli" }, "provider_contact_info": null, "location_extra_info": { "fi": "Pieni Näyttämö LÄMPIÖ" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:21033056/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwsfy", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:13.485875Z", "last_modified_time": "2026-03-03T13:25:40.715508Z", "date_published": null, "start_time": "2026-04-01T12:00:00Z", "end_time": "2026-04-01T13: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "Taide pop-up työpajat - kevät", "en": "Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwsfy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwsui", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:13.989907Z", "last_modified_time": "2026-03-03T13:25:40.682319Z", "date_published": null, "start_time": "2026-04-15T12:00:00Z", "end_time": "2026-04-15T13: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "Taide pop-up työpajat - kevät", "en": "Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwsui/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwta4", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:14.481900Z", "last_modified_time": "2026-03-03T13:25:40.649408Z", "date_published": null, "start_time": "2026-04-29T12:00:00Z", "end_time": "2026-04-29T13: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "Taide pop-up työpajat - kevät", "en": "Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwta4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwtnm", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:14.805706Z", "last_modified_time": "2026-03-03T13:25:40.607631Z", "date_published": null, "start_time": "2026-05-13T12:00:00Z", "end_time": "2026-05-13T13: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "Taide pop-up työpajat - kevät", "en": "Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwtnm/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agozxhwt2e", "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: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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhvzna/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "info_url": null, "price": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api" } ], "created_time": "2026-03-03T13:24:14.946284Z", "last_modified_time": "2026-03-03T13:25:40.567626Z", "date_published": null, "start_time": "2026-05-27T12:00:00Z", "end_time": "2026-05-27T13: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, "provider": { "fi": "Familia ry ", "en": "Familia ry " }, "short_description": { "fi": "Familia ry ohjaa taidepajoja lapsille kirjastolla englanniksi", "en": "Familia ry runs art workshops for children at the library in English" }, "description": { "fi": "<p><strong>(EN/FI)</strong></p><p><br></p>\nFamilia ry runs art workshops for children at the library in English<p><br></p><p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p><p>----</p><p><br></p>\nFamilia ry ohjaa taidepajoja lapsille kirjastolla englanniksi<p>Tarjoamme iloisia ja inspiroivia taidetyöpajoja lapsille ja perheille, jotka on suunniteltu herättämään mielikuvitusta ja luovuutta lämpimässä ja vieraanvaraisessa tilassa.</p><p>Jokaisessa työpajassa osallistujat sukeltavat käytännön käsityö- ja taideaktiviteetteihin – värikkäiden toukkien ja leikkisien tunnehirviöiden tekemisestä monien muiden hauskojen ja mielikuvituksellisten luomusten tutkimiseen. Jokainen työpaja kannustaa itsensä ilmaisemiseen, luovuuteen ja yhteiseen laatuaikaan.</p><p><strong>Milloin? Joka toinen keskiviikko 4.3. alkaen.</strong></p><p>Tule luomaan, tutkimaan ja tekemään jotain upeaa yhdessä!</p>", "en": "<p>We offer joyful and inspiring art workshops for children and families, designed to spark imagination and creativity in a warm, welcoming space.</p><p>During each session, participants dive into hands-on crafting and art activities — from making colorful caterpillars and playful emotion monsters to exploring many other fun and imaginative creations. Every workshop encourages self-expression, creativity, and quality time together.</p><p><strong>When? Every second Wednesday (4.3.-->)</strong></p><p>Come create, explore, and make something wonderful together!</p>" }, "info_url": { "fi": "https://www.familiary.fi/", "en": "https://www.familiary.fi/en.html" }, "name": { "fi": "Taide pop-up työpajat - kevät", "en": "Art pop-up workshops - Spring series" }, "provider_contact_info": null, "location_extra_info": { "fi": "Paja", "en": "Maker Space" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agozxhwt2e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }