Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. 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=24&weekday=6%2C7
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=25&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=23&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agmncuuvqi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6033/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmncuut7q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmncuuuuu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmncuuvcm/?format=api" } ], "images": [ { "id": 1490499, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-22T10:05:38.137129Z", "last_modified_time": "2025-08-22T10:05:38.137144Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/888386ee-13b9-48a5-a5da-027d9d360253.png", "cropping": "156,0,527,372", "photographer_name": "", "alt_text": "Kuvio kasveista, sienistä, eläimistä, alkueliöistä, arkeoneista ja bakteereista", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490499/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-22T10:09:02.807400Z", "last_modified_time": "2025-08-22T10:09:02.807417Z", "date_published": null, "start_time": "2025-09-11T14:00:00Z", "end_time": "2025-11-06T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Eliökunnista kirjoittaen – kirjoituspiirissä tutustutaan eliökuntiin tekstikatkelmien, inspiraatiokirjojen ja kirjoitusharjoitusten kautta. " }, "description": { "fi": "<p>Eliökunnista kirjoittaen – kirjoituspiirissä tutustutaan eliökuntiin tekstikatkelmien, inspiraatiokirjojen ja kirjoitusharjoitusten kautta. Osallistua voi kuka tahansa, jota kiinnostaa kirjoittaminen ja/tai luonto.</p><p>Tapiolan kirjaston tapahtumatila Heikissä 11.9., 9.10. ja 6.11. klo 17.00-19.00.</p>" }, "provider": null, "name": { "fi": "Eliökunnista kirjoittaen " }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmncuuvqi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmef7fi4", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66qa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490468, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-08-19T11:13:13.579111Z", "last_modified_time": "2025-08-19T11:13:13.579126Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/c2355455-e8d7-4c5b-84c0-87cfc7812da2.jpg", "cropping": "0,70,642,713", "photographer_name": "", "alt_text": "Kuvassa on aivoluennon vetäjä Sari Mäki", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490468/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T11:14:03.831773Z", "last_modified_time": "2025-08-22T09:27:03.607931Z", "date_published": null, "start_time": "2025-10-18T11:00:00Z", "end_time": "2025-10-18T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Salonki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Luento on tarkoitettu kaikille työikäisille, eläkeläisille ja senioreille sekä myös hoiva-alan työntekijöille ja vuorotyöläisille. Tervetuloa!" }, "description": { "fi": "<p>Aivoterveysosaaja Sari Mäki kertoo luennolla aivoterveyttä edistävistä elintavoista.</p><p>Luento on tarkoitettu kaikille työikäisille, eläkeläisille ja senioreille sekä myös hoiva-alan työntekijöille ja vuorotyöläisille.</p><p>Aivoterveyttä edistävillä elintavoilla voi tiputtaa jopa 40 % riskiä sairastua aivosairauteen. Tule kuuntelemaan mistä on kyse. Luennolla voi tehdä muistiinpanoja. Vapaa pääsy.</p>" }, "provider": null, "name": { "fi": "AIVOTERVEYSLUENTO" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmef7fi4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66882", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490494, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T14:13:49.751152Z", "last_modified_time": "2025-08-21T14:13:49.751169Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776472.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490494/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T14:13:49.618320Z", "last_modified_time": "2025-08-22T08:13:52.069266Z", "date_published": null, "start_time": "2025-08-30T12: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, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen", "sv": "http://www.stoa.fi/sv/evenemang/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen", "en": "http://www.stoa.fi/en/events/event/34D290B90025989D1F3731BA96D0A4D5/Metsakonsertissa_Kielo_Karkkainen" }, "provider_contact_info": null, "short_description": { "fi": "Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista." }, "description": { "fi": "<p>Kielo Kärkkäisen elokuinen esitys koostuu musiikista, runoista ja yhteisestä tarinoinnista.</p><p>Laulaja-lauluntekijä esittää folkia suomeksi, espanjaksi ja englanniksi, minkä lisäksi myös yleisö pääsee laulamaan. Tilaisuuden dramaturgia muotoutuu ympäristön, läsnäolijoiden ja sään yhteistyönä. Metsä on salliva konserttisali, jossa voi istua tai kuljeskella, havainnoida, nauttia eväistä sekä tutustua muihin eläviin.</p><p>Katsomona konsertissa on 20 riippumattoa ja kallioinen katsomo. Ota varmuudeksi mukaan oma alusta.</p><p>Huom! Lähdetään yhdessä konserttipaikalle klo 15.15 Karhukallion metsän eteläisestä reunasta (Viilarintien ja Holkkitien risteys)</p><p><b>Näin pääset paikalle:</b> <br>Pääset paikalle esimerkiksi Itäkeskuksesta pikaratikalla 15. Jää pois Kauppamyllyntien pysäkillä. <br> <br>Kävellen tai pyörällä matka on Stoasta n. 1,7 kilometriä. Pyöräparkki Kauppamyllyntien pysäkin kohdalla.<br> <br>Astu metsään sen eteläisestä reunasta, Holkkitien ja Viilarintien risteyksestä. Olemme teitä siellä vastassa ja neuvomme eteenpäin.</p><p>HUOM! Metsäpolku ei ole esteetön. Kulku kivikkoisella ja juurakkoisella polulla.</p><p><b>Muita ohjeita:</b> <br>• Pukeudu säänmukaisesti ja varustaudu hyvillä jalkineilla. <br>• Mukaan voi ottaa myös omaa evästä. Älä jätä metsään mitään roskia.</p><p>Kieli: suomi, englanti ja espanja<br>Ikäsuositus: avoin kaikille, lapset aikuisten seurassa<br>Kesto: 45 min<br>Vapaa pääsy</p><p>Tapahtumalla on säävaraus. Kovalla sateella tai myrskyllä se siirtyy Stoaan, Itäkeskuksen kirjaston tiloihin. Pienellä tihkusateella konsertti pidetään Karhukalliolla.</p>" }, "provider": null, "name": { "fi": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla", "sv": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla", "en": "Metsäkonsertissa Kielo Kärkkäinen – Suomen luonnon päivä Karhukalliolla" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66882/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66694", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:99/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203857, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T14:14:09.078879Z", "last_modified_time": "2025-07-07T14:14:09.078894Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772891.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203857/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T14:14:08.940485Z", "last_modified_time": "2025-08-22T08:13:51.055396Z", "date_published": null, "start_time": "2025-08-29T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/A163107FB3095975F414186C60D33B0F/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis", "sv": "http://www.annantalo.fi/sv/evenemang/event/A163107FB3095975F414186C60D33B0F/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis", "en": "http://www.annantalo.fi/en/events/event/A163107FB3095975F414186C60D33B0F/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_" }, "provider_contact_info": null, "short_description": { "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!", "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD", "en": "A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!" }, "description": { "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>", "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b><br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>", "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>" }, "provider": null, "name": { "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025", "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025", "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66694/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66231", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:99/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?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:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1203856, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-07T14:14:08.554183Z", "last_modified_time": "2025-07-07T14:14:08.554198Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_772890.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1203856/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-07T14:14:08.388237Z", "last_modified_time": "2025-08-22T08:13:50.648901Z", "date_published": null, "start_time": "2025-08-29T06:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9492729087358B0040D2E01399D2F976/Kaunasin_nukketeatteri_LT_Leijona_ja_Lintu_-_Li_tas_ir_pauk_tis", "sv": "http://www.annantalo.fi/sv/evenemang/event/9492729087358B0040D2E01399D2F976/Kaunas_dockteater_LT_Lejonet_och_fageln_Li_tas_ir_pauk_tis", "en": "http://www.annantalo.fi/en/events/event/9492729087358B0040D2E01399D2F976/Kaunas_State_Puppet_Theatre_LT_Lion_and_Bird_Li_tas_ir_pauk_tis_" }, "provider_contact_info": null, "short_description": { "fi": "Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!", "sv": "En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD", "en": "A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!" }, "description": { "fi": "<p>Eräänä päivänä Leijona löytää loukkaantuneen linnun syksyisestä puutarhastaan. Esitys on LOPPUUN VARATTU!!!</p><p>Tämä Leijona on erilainen kuin muut leijonat: se on hyvin herkkä ja empaattinen, joten se kutsuu Linnun asumaan omaan viihtyisään kotiinsa. Näin alkaa odottamaton, mutta todellinen ja syvällinen ystävyys kahden hyvin erilaisen eläimen välillä. Päivät kuluvat, joulu tulee ja menee, Lintu toipuu ja haluaa nousta siivilleen, joten ystävien on väistämättä erottava... Todellinen ystävyys ei kuitenkaan koskaan katoa - lämmin tunne kulkee aina mukana, ja rakas ystävä asuu erityisessä paikassa - sydämessä.<br>Kunnes ystävät tapaavat jälleen...</p><p>Tämä hienovarainen ja inspiroiva tarina ystävyydestä ja sen merkityksestä palkittiin vuonna 2023 Liettuan parhaana nukketeatteri- ja esineteatteriesityksenä \"Näyttämön kultaisella ristillä”.</p><p><b>Esitys on tarkoitettu päiväkotiryhmille, pakollinen ilmoittautuminen osoitteessa kultus.hel.fi</b></p><p>Ohjaaja: Kata Csató<br>Skenografia ja nukeilla näytteleminen – Julija Skuratova <br>Musiikki: Rita Mačiliūnaitė</p><p>Kohderyhmä: koko perhe, 3-103v.<br>Kesto 45min.<br>Kieli: Sanaton</p>", "sv": "<p>En höstdag hittar lejonet en skadad fågel i sin trädgård. Föreställningen är FULLBOKAD</p><p>Lejonet är inte som andra lejon: det är väldigt känsligt och empatiskt, så det bjuder in fågeln till sitt trivsamma hem. Så börjar en oväntad men genuin och djup vänskap mellan två väldigt olika djur. Dagarna flyter förbi, julen kommer och går, fågeln återhämtar sig och vill flyga igen, så vännerna är tvungna att skiljas åt... Men äkta vänskap försvinner aldrig – den varma känslan följer alltid med och en kär vän bor på en särskild plats – i hjärtat.<br>Tills vännerna möts igen...</p><p>Den finstämda och inspirerande berättelsen om vänskap och vad den betyder belönades 2023 med ”Scenens gyllene kors” som Litauens bästa dock- och föremålsteaterföreställning.</p><p><b>Föreställningen är avsedd för daghemsgrupper; anmälan är obligatorisk på kultus.hel.fi.</b><br> <br>Regi: Kata Csató<br>Iscensättning och dockskådespeleri: Julija Skuratova <br>Musik: Rita Mačiliūnaitė</p><p>Åldersrekommendation: För hela familjen 3–103 år <br>Längd 45 min.<br>Språk: ordlöst</p>", "en": "<p>A Puppet Theatre Performance About True and Genuine Friendship. The performance is FULLY BOOKED!</p><p>One day, Lion finds aninjured Bird in his autumnal garden. This Lion is different from other lions: he is very sensitive and caring, so he allows Bird to live in his cozy home. Thus begins an unexpected but true and profound friendship between two very different animals. Days go by, Christmas comes and goes, Bird recovers and wants to leave, so the friends inevitably have to part... However, true friendship never disappears - the warm feeling always travels together, and a dear friend lives in a special place – in the heart.<br>Until the moment when the friends meet again...</p><p>The Performance was awarded with the “Golden Stage Cross” for the best Puppet and Object Theatre Performance in Lithuania in the year 2023.</p><p><b>The performance is intended for daycare groups; registration is mandatory at kultus.hel.fi.</b></p><p>Director: Kata Csató<br>Scenography & acting with puppets– Julija Skuratova <br>Composer – Rita Mačiliūnaitė</p><p>For the whole family 3–103 v. <br>Duration 45min.<br>Language: nonverbal</p>" }, "provider": null, "name": { "fi": "Kaunasin nukketeatteri (LT): Leijona ja Lintu - Liūtas ir paukštis – Sampo Festivaali 2025", "sv": "Kaunas dockteater (LT): Lejonet och fågeln – Liūtas ir paukštis – Sampo-festivalen 2025", "en": "Kaunas State Puppet Theatre (LT):Lion and Bird (Liūtas ir paukštis) – Sampo Festival 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66231/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23al3y", "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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk2277la/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23aasi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23abzi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23adau/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23aeju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23afqy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23agxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23aibi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ajmy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23akva/?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", "name": "Kahvihetki.", "url": "https://tapahtumasyotto.espoo.fi/media/images/Nimet%C3%B6n_malli_5.png", "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": "2025-05-06T12:43:47.583954Z", "last_modified_time": "2025-08-22T05:05:03.769936Z", "date_published": null, "start_time": "2025-08-15T06:00:00Z", "end_time": "2025-12-19T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Sininen huone", "sv": "Sininen huone", "en": "Sininen huone" }, "info_url": null, "provider_contact_info": null, "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>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</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>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</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>15.8.2025</p><p>29.8.2025</p><p>12.9.2025</p><p>26.9.2025</p><p>10.10.2025</p><p>24.10.2025</p><p>7.11.2025</p><p>21.11.2025</p><p>5.12.2025</p><p>19.12.2025</p><p>The event is in Finnish.</p><p>The event is accessible for all.</p><p><br></p><p>#HelloEspoo</p>" }, "provider": null, "name": { "fi": "Perhekahvila", "sv": "Familjekafé", "en": "Family Café" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23al3y/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66887", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,90 € / 20 €", "sv": "24,90 € / 20 €", "en": "24,90 € / 20 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/", "sv": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/", "en": "https://www.lippu.fi/event/jore-marjaranta-olli-ahvenlahti-jore-marjaranta-olli-ahvenisto-joulun-tuoksu-konsertti-vuotalo-20353015/" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490496, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T15:14:22.860196Z", "last_modified_time": "2025-08-21T15:14:22.860214Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_774955.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490496/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T15:14:22.746057Z", "last_modified_time": "2025-08-21T15:14:23.011150Z", "date_published": null, "start_time": "2025-12-13T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu", "sv": "http://www.vuotalo.fi/sv/evenemang/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu", "en": "http://www.vuotalo.fi/en/events/event/BF204621C7451244B3AC740DB75D7AD0/Jore_Marjaranta_Olli_Ahvenlahti_Joulun_tuoksu" }, "provider_contact_info": null, "short_description": { "fi": "Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.", "sv": "Låt oss komma i stämning inför julen! Konserten bjuder på stämningsfulla och rörande julsånger.", "en": "Let us get in the mood for Christmas! The concert will feature atmospheric and touching Christmas songs." }, "description": { "fi": "<p>Virittäydytään jouluun! Konsertissa kuullaan tunnelmallisia ja koskettavia joululauluja.</p><p>Leningrad Cowboys -yhtyeen keulahahmona tutuksi tullut kaunisääninen pop-tenori Jore Marjaranta on tehnyt mittavan soolouran laulaja-lauluntekijänä useiden albumien ja esiintymisten myötä.<br> <br>Pianon ääreen istahtaa Olli Ahvenlahti, tuo television monista musiikkiohjelmista tuttu pianisti, säveltäjä ja kapellimestari, kotimaisen musiikkiviihteen grand old man.<br> <br>Kaksikon Joulun tuoksu -konserttikokonaisuudessa kuullaan tunnelmallisia ja koskettavia joululauluja.<br> <br>Kesto: 1 t 50 min, sis. 20 min väliajan</p>", "sv": "<p>Låt oss komma i stämning inför julen! Konserten bjuder på stämningsfulla och rörande julsånger.</p><p>Den skönsjungande poptenoren Jore Marjaranta är känd som frontfigur i Leningrad Cowboys och har haft en omfattande solokarriär som sångare och låtskrivare med flera album och framträdanden.<br> <br>Vid pianot sitter Olli Ahvenlahti, pianist, kompositör och dirigent, den finska musikunderhållningens grand old man, känd från många musikprogram i TV.<br> <br>Duons Joulun tuoksu-konsert kommer att innehålla stämningsfulla och rörande julsånger.<br> <br>Längd: 1 timmar 50 minuter, inklusive paus 20 minuter</p>", "en": "<p>Let us get in the mood for Christmas! The concert will feature atmospheric and touching Christmas songs.</p><p>Known as the frontman of Leningrad Cowboys, the beautiful-voiced pop tenor Jore Marjaranta has had an extensive solo career as a singer-songwriter through several albums and performances.<br> <br>On piano will be Olli Ahvenlahti, a pianist, composer, conductor and grand old man of Finnish music entertainment, known from many TV music programmes.<br> <br>The duo’s Joulun tuoksu (‘Smell of Christmas’) concert will feature atmospheric and touching Christmas songs.<br> <br>Duration: 1 h 50 min, incl. a 20-min intermission</p>" }, "provider": null, "name": { "fi": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu", "sv": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu", "en": "Jore Marjaranta & Olli Ahvenlahti: Joulun tuoksu" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66887/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66380", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 771040, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-05-15T12:14:22.622643Z", "last_modified_time": "2025-05-15T12:14:22.622665Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761388.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/771040/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-05-15T12:14:22.011823Z", "last_modified_time": "2025-08-21T13:13:43.383984Z", "date_published": null, "start_time": "2025-08-14", "end_time": "2025-08-23", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malmin_tapahtumakesa_2025", "sv": "http://www.malmitalo.fi/sv/evenemang/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malms_evenemangssommar_2025", "en": "http://www.malmitalo.fi/en/events/event/ABD4F17E2E2BBF627AE0B67DBEBD9C63/Malmi_Summer_of_Events_2025" }, "provider_contact_info": null, "short_description": { "fi": "Tapahtumakesän elokuun osuus täyttää puiston konserteilla ja viihtyisillä aktiviteeteilla! Tervetuloa kesän monipuolisiin loppurientoihin.", "sv": "Evenemangssommaren fyller parken med konserter och trivsamma aktiviteter i augusti! Välkommen till sommarens mångsidiga aktiviteter på slutet.", "en": "The August part of the Malmi Summer of Events fills the park with concerts and other activities! Welcome to the wide range of summer activities." }, "description": { "fi": "<p>Tapahtumakesän elokuun osuus täyttää puiston konserteilla ja viihtyisillä aktiviteeteilla! Tervetuloa kesän monipuolisiin loppurientoihin.</p><p>Malmin tapahtumakesän lavalla elokuussa esiintyvät muun muassa <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto ja Poutahaukat, Aliisa Syrjä</b> sekä paljon muita!</p><p>Hyppää mukaan kesätorille, puuhastele työpajoissa, taluta poneja ja tule ulkoilmaleffaan! Elokuussa paikan päältä löydät myös ruokatarjontaa ja teekojun.</p><p><b>Malmin tapahtumakesä 2025 elokuun ohjelma</b></p><p><b>To 14.8. Taiteiden yö: Vilma Jää, Josén pimeä puoli, Höpinätötterö, kesätori ja työpajoja</b><br>13–16 OmaStadi-piste<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja<br>15–18 Iltakorva<br>15–18 Malmin Varustamo esittäytyy<br>15–19 Kesätori<br>15–20 Hennatatuointi<br>16–17 Työväenopisto: Taiteiden yön yhteislaulut<br>16–19.15 Työväenopisto: Paperikoristepaja<br>16–19.15 Työväenopisto: Kierrätyskuvanveistoa<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids-puistomuskari<br>18–19 Vilma Jää<br>20–21 Josén pimeä puoli<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/516E8F1209FD05AA9191F07D875D9BEF/Taiteiden_y___Vilma_J____Jos_n_pime__puoli__H_pin_t_tter___kes_tori_ja_ty_paja\">Katso ohjelma</a></u></p><p><b>Pe 15.8. Erja Lyytinen ja AT’S Roots & Rambling</b><br>18–19 AT’s Roots & Ramblin’ <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">Katso ohjelma</a></u></p><p><b>Lasten la 16.8. Vatsastapuhuja Sari Aalto, Tuubakimalainen, ponitalutusta ja eläinnaamari-työpaja</b><br>11–15 Malmin seurakunta: Liikunnallinen toimintarata<br>12.30–15 Ponihaka: Ponitalutusta<br>13–16 Malmin tuulenkävijät esittelevät toimintaansa<br>13.30, 14.30 ja 15.45 Pienperheyhdistys/Mummila: Puhutaan peikkoa -työpaja <br>14–16.15 Pohjois-Helsingin kuvataidekoulu: Eläinten kesäloma -katuliitutyöpaja<br>14–14.30 Vatsastapuhuja Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Kirjasto: Eläinnaamari-työpaja <br>14–16 Forum Virium: Toislajisten neuvosto <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/46F74373E37ED07C86A72F7784B3995F/Lasten_lauantai__Vatsastapuhuja_Sari_Aalto__Tuubakimalainen__poneja_ja_ty_pajoja\">Katso ohjelma</a></u></p><p><b>Ti 19.8. Sami Saari & Jazzpojat, yhteislaulut, kaupunkitanssit ja kehonhuolto</b><br>15–15.50 Kehonhuolto<br>16–16.45 Kaupunkitanssit <br>16–19.30 Forum Virium Helsinki: Malmin vihreä sydän - Longinojanpuiston kehittämissuunnitelman luonnos <br>17–18 Yhteislaulut: Pauli Kainulainen ja Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat_sek__yhteislaulua__kaupunkitanssit_ja_kehonhuoltoa\">Katso ohjelma</a></u></p><p><b>Ke 20.8. Asa ja Pesso</b><br>18-19 Pesso <br>20-21 Asa <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">Katso ohjelma</a></u></p><p><b>To 21.8. Marko Haavisto & Poutahaukat, ulkoilmaelokuva: Mies vailla menneisyyttä, puistojumppa</b><br>17–17.50 Puistojumppa <br>20–21.15 Marko Haavisto & Poutahaukat <br>21.30–23.00 Ulkoilmaelokuvanäytös: Mies vailla menneisyyttä <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__ulkoilman_yt_s__Mies_vailla_menneisyytt__ja_puistojumppaa\">Katso ohjelma</a></u></p><p><b>Pe 22.8. The Valkyrians ja The Blaster Master</b><br>18–19 Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_ja_Blaster_Master\">Katso ohjelma</a></u></p><p><b> La 23.8. Aliisa Syrjä, Itcevät ja pakohuonepelaamista</b><br>10.30–15.15 Malmin kirjasto: Merirosvolaivan aarre –pakopeli <br>14–16 Pukinmäen Taidekoulut: Savityöpaja <br>16–17 Itcevät <br>15−16 Malmin kirjasto: K-pop tanssityöpaja<br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/emma___matilda__Itcev_t_ja_pakohuonepelailua\">Katso päivän ohjelma</a></u></p><p>Tapahtumiin on vapaa pääsy!<br>Sateen sattuessa tapaht</p>", "sv": "<p>Evenemangssommaren fyller parken med konserter och trivsamma aktiviteter i augusti! Välkommen till sommarens mångsidiga aktiviteter på slutet.</p><p>På estraden för Malms evenemangssommar uppträder bland annat <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, buktalare Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto och Poutahaukat, emma & matilda</b> samt många andra artister.</p><p>Utöver konserterna kan du också ge dig ut på sommartorget, tala bergatroll i verkstäderna, leda ponnyer och rentav titta på bio utomhus.</p><p>Välkommen att dansa, sjunga, leka och inspireras!</p><p><i>Under evenemangsdagarna i augusti finns det matförsäljare på plats: Mikokit och pop up-téståndet Chai Wali.</i></p><p><b>14.8 Konstens natt: Vilma Jää, Josén Pimeä Puoli, Höpinätötterö, sommartorg och verkstäder </b><br>På eftermiddagen arbetarinstitutets verkstäder <br>13–16 VårStad<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll<br>15–18 Malmins Varustamo presenterar sig<br>Verkstadsområdet<br>15–18 Iltakorva<br>15–19 Sommartorg<br>15-20 Hennatatuering<br>16–17 Arbetarinstitutet: Sommarens minnen – Allsång under konstens natt i Malmitalo<br>16–19.15 Arbetarinstitutet: Verkstad för pappersdekorationer<br>16–19.15 Arbetarinstitutet: Skulpturverkstad med återvunnet material<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids musikskolan<br>18–19 Vilma Jää<br>20–21 Josén Pimeä Puoli<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/516E8F1209FD05AA9191F07D875D9BEF/Konstens_natt__Vilma_J____Jos_n_Pime__Puoli__H_pin_t_tter___sommartorg_och_verkst_der\">Se program </a></u></p><p><b>15.8 Erja Lyytinen och AT's Roots & Ramblin'</b><br>18–19 AT's Roots & Ramblin' <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">Se program </a></u></p><p><b>16.8 Buktalare Sari Aalto, Tuubakimalainen, ponnyridning och djurmask-verkstad</b><br>11–15 Malms församling: Motionsbana<br>12.30–15 Ponihaka: Ponnyridning <br>13–16 Malms Tuulenkävijät presenterar sin verksamhet<br>13.30, 14.30 och 15.45 Pienperheyhdistys ry/Mummila: Verkstaden Vi talar troll <br>14–14.30 Buktalare Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Biblioteket: Djurmask-verkstad <br>14–16 Forum Virium: Rådet för sekundära arter<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/46F74373E37ED07C86A72F7784B3995F/Buktalare_Sari_Aalto__Tuubakimalainen__ponnyer_och_verkst_der\">Se program </a></u></p><p><b>19.8 Sami Saari & Jazzpojat, allsång, stadsdans och fitness</b><br>15–15.50 Fitness<br>16–16.45 Stadsdans <br>16–19.30 Forum Virium Helsinki: Malms gröna hjärta – Utkast till skötsel- och utvecklingsplan för Stickelbackaparken <br>17–18 Allsång: Pauli Kainulainen och Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat__alls_ng__stadsdans_och_fitness\">Se program </a></u></p><p><b>20.8 Asa och Pesso</b><br>18–19 Pesso <br>20–21 Asa <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">Se program </a></u></p><p><b>21.8 Marko Haavisto & Poutahaukat, utomhusfilm: Mannen utan minne, parkgympa</b><br>17–17.50 Parkgympa <br>20–21.15 Marko Haavisto & Poutahaukat, utomhusfilm: <br>21.30–23 Utomhusfilmförevisning: Mannen utan minne <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__utomhusfilmf_revisning__Mannen_utan_minne_samt_parkgympa\">Se program </a></u></p><p><b>22.8 The Valkyrians och The Blaster Master</b><br>18–19 Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_och_Blaster_Master\">Se program </a></u></p><p><b>23.8 Aliisa Syrjä, Itcevät och flyktrumsspel</b><br>10.30–15.15 Malms bibliotek: Flyktrumsspelet Piratskeppets skatt <br>14–16 Pukinmäen Taidekoulut: Lerverkstad <br>15−16 Malms bibliotek: K-pop-dansworkshop<br>16–17 Itcevät <br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/sv/evenemangen/event/D913EB131D9999A95A7127A6D4137EA1/emma_matilda_Itcevat_ja_pakohuonepelailua\">Se program</a></u></p>", "en": "<p>The August part of the Malmi Summer of Events fills the park with concerts and other activities! Welcome to the wide range of summer activities.</p><p>In August, the Malmi Summer of Events will feature acts such as <b>Vilma Jää, Josén pimeä puoli, Erja Lyytinen, ventriloquist Sari Aalto, Sami Saari & Jazzpojat, Asa, Pesso, Marko Haavisto ja Poutahaukat, emma & matilda</b> and many other artists.</p><p>In addition to the concerts, you can visit the summer market, participate in activities and workshops or even enjoy an outdoor movie! Come along and participate, dance, sing and play!</p><p>During August, there will be food vendors on site.</p><p><b>14 August The Night of the Arts: Vilma Jää, Josén pimeä puoli, Höpinätötterö, summer market and workshops</b><br>13.30, 14.30 and 15.45 Single Parents’ Association/Mummila: Puhutaan peikkoa workshop<br>15–18 Iltakorva<br>15–18 Malmi's Varustamo introduction<br>15–19 Summer market<br>15–20 Henna tattoo<br>16–17 Adult Education Centre: The Night of the Arts' sing-along<br>16–19.15 Adult Education Centre: Paper decoration workshop<br>16–19.15 Adult Education Centre: Recycled sculpture workshop<br>16.30–17.15 Höpinätötterö<br>17.15–18.00 Jamkids music playschool<br>18–19 Vilma Jää <br>20–21 Josén Pimeä Puoli<br><u><a href=\"https://malmitalo.fi/en/events/event/516E8F1209FD05AA9191F07D875D9BEF/The_Night_of_the_Arts__Vilma_J____Jos_n_pime__puoli__H_pin_t_tter___summer_market_and_workshops\">See the programme</a></u></p><p><b>15 August: Erja Lyytinen and AT’S Roots & Rambling</b><br>18–19 AT’s Roots & Ramblin’ <br>20–21 Erja Lyytinen <br><u><a href=\"https://malmitalo.fi/en/events/event/6CAF9EBC3912C09B9F2EF2E04B5AEAF1/Erja_Lyytinen__AT_s_Roots___Ramblin_\">See the programme</a></u></p><p><b>16 August: Ventriloquist Sari Aalto, Tuubakimalainen, pony walking and workshops</b><br>11–15 Malmi Parish: Physical activity track<br>12.30–15.00 Ponihaka: Pony walking <br>13–16 Malmi's Tuulenkävijät introduction<br>13.30, 14.30 and 15.45 Single Parents’ Association/Mummila: Puhutaan peikkoa workshop <br>14–14.30 Ventriloquist Sari Aalto<br>15–15.45 Tuubakimalainen <br>13–15 Library: Animal mask workshop <br>14–16 Forum Virium: Toislajisten neuvosto<br><u><a href=\"https://malmitalo.fi/en/events/event/46F74373E37ED07C86A72F7784B3995F/Ventriloquist_Sari_Aalto__Tuubakimalainen__ponies_and_workshops\">See the programme</a></u></p><p><b>19 August: Sami Saari & Jazzpojat, singalong, dancing and other activities</b><br>15–15.50 Body maintenance<br>16–16.45 Dancing in the City <br>16–19.30 Forum Virium Helsinki: Malmi’s green heart – Draft Longinoja Park management and development plan <br>17–18 Singalong: Pauli Kainulainen and Jukka Okkonen <br>19–20 Sami Saari & Jazzpojat<br><u><a href=\"https://malmitalo.fi/en/events/event/F7C2531A031609D657AAB46700B25895/Sami_Saari___Jazzpojat_and_a_singalong__Dancing_in_the_City_and_body_maintenance\">See the programme</a></u></p><p><b>20 August: Asa and Pesso</b><br>18–19 Pesso <br>20–21Asa <br><u><a href=\"https://malmitalo.fi/en/events/event/2B025B2F676465476F3AACF694A37B81/Asa__Pesso\">See the programme</a></u></p><p><b>21 August Marko Haavisto & Poutahaukat, outdoor cinema: The Man Without a Past, outdoor fitness class</b><br>17–17.50 Outdoor fitness class <br>20–21 Marko Haavisto & Poutahaukat <br>21–23 Outdoor cinema: The Man Without a Past <br><u><a href=\"https://malmitalo.fi/en/events/event/99EB81E2626B85392DA9CA6896AC3EAB/Marko_Haavisto___Poutahaukat__outdoor_cinema__The_Man_Without_a_Past_and_outdoor_fitness_class\">See the programme</a></u></p><p><b>22 August: The Valkyrians and The Blaster Master</b><br>18–19 The Blaster Master <br>20–21 The Valkyrians <br><u><a href=\"https://malmitalo.fi/en/events/event/7140CEBF9966CB1C257A396D29A3A560/The_Valkyrians_and_The_Blaster_Master\">See the programme</a></u></p><p><b> 23 August: Aliisa Syrjä, Itcevät and escape room activities</b><br>10.30–15.15 Malmi's Library: Merirosvolaivan aarre -pakopeli <br>14–16 Pukinmäen Taidekoulut: Savityöpaja <br>15−16 Malmi's Library: K-pop dance workshop<br>16–17 Itcevät <br>18–19 Aliisa Syrjä<br><u><a href=\"https://malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/emma_matilda_Itcevat_ja_pakohuonepelailua\">See the programme</a></u></p>" }, "provider": null, "name": { "fi": "Malmin tapahtumakesä 2025 – Elokuun ohjelma", "sv": "Malms evenemangssommar 2025 – Augusti 2025", "en": "Malmi Summer of Events 2025 – August 2025" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66380/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65861", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:752/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p28435/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 404561, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-25T16:13:56.613958Z", "last_modified_time": "2025-03-25T16:13:56.613979Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767208.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404561/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-03-25T16:13:56.596321Z", "last_modified_time": "2025-08-21T12:14:49.034366Z", "date_published": null, "start_time": "2025-08-23T07:30:00Z", "end_time": "2025-08-23T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_ja_pakohuonepelailua", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_och_flyktrumsspel", "en": "http://www.malmitalo.fi/en/events/event/D913EB131D9999A95A7127A6D4137EA1/Aliisa_Syrja_Itcevat_and_escape_room_activities" }, "provider_contact_info": null, "short_description": { "fi": "Tule mukaan saattelemaan tämän vuoden tapahtumakesä päätökseensä ihastuttavan päivän myötä.", "sv": "Kom med och avsluta årets evenemangssommar med en underbar dag.", "en": "Come along and say farewell to this year’s Summer of Events by enjoying a lovely day." }, "description": { "fi": "<p>Tule mukaan saattelemaan tämän vuoden tapahtumakesä päätökseensä ihastuttavan päivän myötä.</p><p>Illan esiintyjinä nähdään herkkää kitararockia ja puhuttelevuutta tarjoava <b>Itcevät</b> ja kesän kruunaa laulaja-lauluntekijä <b>Aliisa Syrjä</b>. Päivän aikana voit osallistua myös pakohuonepeliin, tutustua saven kanssa työskentelyyn ja viihtyä kauniissa puistossa!</p><p><b>Aikataulu</b><br>10.30–15.15 Malmin kirjasto: Merirosvolaivan aarre –pakopeli<br>14–16 Pukinmäen Taidekoulut: Savityöpaja<br>15−16 Malmin kirjasto: K-pop tanssityöpaja<br>16–17 Itcevät<br>18–19 Aliisa Syrjä<br> <br><b>klo 10.30–15.15<br>Malmin kirjasto: Merirosvolaivan aarre -pakopeli</b></p><p>Olette uusia tulokkaita merirosvolaivalla. Huomaatte tilaisuuden tunkeutua vihollislaivaan, ja korjata vuosia sitten tapahtunut vääryys. Saako merirosvojoukkonne pelastettua kapteeniltanne varastetun aarteen?</p><p>Pakopelin suositusikäraja on 12+, ja se sopii myös aikuisille. Yhteen peliin mahtuu 5 henkilöä, kesto noin 45 minuuttia. Pakopeli sisältää erilaisia pulmia ja loogista päättelyä. Pakopeli järjestetään Malmin kirjaston monitoimitilassa</p><p><b>Peliajat:</b><br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Ilmoittautumiset 4.8. alkaen numeroon 040 5632 849</p><p><b>klo 16–17<br>Itcevät</b><br>Itcevät yhdistelee musiikissaan tunteikasta lyriikkaa, tarinankerronnallista tulkintaa sekä nostattavaa kitararockia. Yhtyeen tarkoituksena on ajaa herkkyyden ja avoimuuden sanomaa, haastaa sukupuolirooleja sekä tarjota Suomen musiikkikentälle raikasta trans-representaatiota.<br>Itcevien keikoilla kuullaan yhtyeen aikaisempia hittejä sekä tulevan albumin vielä julkaisemattomia singlejä.</p><p><b>klo 18–19<br>Aliisa Syrjä</b><br>Aliisa Syrjä on laulaja-lauluntekijä, jonka sävellykset ja tekstit vievät mukanaan jonnekin sinne, missä surun ja onnen rajat ovat häilyvät ja mannerlaatat jyrisevät jalkojen alla. Platinaa ja kultaa striimanneilla Tää tunne, 2:02 ja Sydämetön singleillään hurmannut Aliisa sanoittaa, säveltää ja on myös mukana biisien tuotannoissa. Artisti valittiin mukaan YleX Läpimurto-listaukseen keväällä 2023, jossa hän sijoittui huikeasti toiseksi. Aliisan platinaa striimannut debyyttialbumi Höyheniä ja saaria julkaistiin lokakuussa 2023. Vuoden 2024 Emma Gaalassa Aliisa oli ehdolla Vuoden tulokas-kategoriassa. Parhaiten artistina Aliisaa kuvaa se, että hänen lauluissaan klassikkokirjojen järkälemäinen ja filosofinen sisältö yhdistyy nuoren ihmisen elämään sekä perinteinen lauluntekijyys nykypäivään.</p><p>*Valitettavasti emma & matilda on peruuntunut, paikkaajaksi saapuu Aliisa Syrjä.</p><p>Tapahtumiin on vapaa pääsy.</p>", "sv": "<p>Kom med och avsluta årets evenemangssommar med en underbar dag.</p><p>Kvällens artister är Itcevät, som bjuder på känslig tilltalande gitarrock, och emma & matilda, som kröner sommaren med sin känsliga folkinspirerade musik som sveper med publiken. Under dagen kan du också delta i ett flyktrumsspel, lära dig att arbeta med lera och njuta av den vackra parken!</p><p><b>Tidtabell</b><br>10.30–15.15 Malms bibliotek: Flyktrumsspelet Piratskeppets skatt<br>14–16 Pukinmäen Taidekoulut: Lerverkstad<br>15−16 Malms bibliotek: K-pop-dansworkshop<br>16–17 Itcevät<br>18–19 Aliisa Syrjä</p><p><b>kl. 10.30–15.15<br>Malms bibliotek: Flyktrumsspelet Piratskeppets skatt</b></p><p>Ni är nyanlända på ett piratskepp. Ni upptäcker en möjlighet att bryta er in i fiendens skepp och rätta till ett fel som begicks för flera år sedan. Får er piratbesättning tillbaka skatten som stulits från kaptenen?</p><p>Den rekommenderade åldersgränsen för flyktspelet är 12+, och det passar även för vuxna. Fem personer kan delta i ett (1) spel, längden är cirka 45 minuter. Flyktspelet omfattar olika problem och logiska slutledningar. Flyktspelet ordas i allaktivitetslokalen i Malms bibliotek.</p><p>Speltider:<br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Anmälningar från och med den 4 augusti till numret 040 5632 849.</p><p><b>kl. 16–17<br>Itcevät</b><br>I deras musik kombinerar Itcevät känslomässig lyrik, berättande tolkningar och upplyftande gitarrock. Bandets syfte är att främja budskapet om känslighet och öppenhet, utmana könsroller och erbjuda fräsch trans-representation till den finländska musikscenen.<br>På Itceväts spelningar hör vi bandets tidigare hittar och ännu outgivna singlar från deras kommande album.</p><p><b>kl. 18–19<br>Aliisa Syrjä</b><br>Tyvärr har emma & matilda ställt in, och Aliisa Syrjä kommer som ersättare.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>Come along and say farewell to this year’s Summer of Events by enjoying a lovely day.</p><p>The evening will be crowned by Itcevät, who serve up sensitive, thought-provoking guitar rock, and emma & matilda, who wrap the audience up in their delicate folk tunes. During the day you can also take part in an escape room game, learn how to work with clay and enjoy the beautiful park!</p><p><b>Programme</b><br>10.30–15.15 Malmi Library: ‘Merirosvolaivan aarre’ (pirate ship treasure) escape room game<br>14.00–16.00 Pukinmäen Taidekoulut: Clay workshop<br>15−16 Malmi Library: K-pop dance workshop<br>16.00–17.00 Itcevät<br>18.00–19.00 Aliisa Syrjä</p><p><b>10.30–15.15<br>Malmi Library: ‘Merirosvolaivan aarre’ (pirate ship treasure) escape room game</b></p><p>You are newcomers to the pirate ship. You spot an opportunity to infiltrate the enemy ship, and put a past wrong right. Can your pirate crew recover the treasure stolen from your captain?</p><p>The recommended age for the escape room is 12 and upwards, and it is also suitable for adults. Five people can play at a time, duration approx. 45 minutes. The escape room game contains various problems and logical reasoning. The game is held in the multi-purpose facility of the Malmi Library.</p><p>Games start at:<br>10.30<br>11.30<br>12.30<br>13.30<br>14.30</p><p>Sign up from 4 August by calling +358 (0)40 563 2849</p><p><b>16.00–17.00<br>Itcevät</b><br>In their music, Itcevät combine emotional lyrics, narrative interpretation and energetic guitar rock. The band are advocates for sensitivity and openness, challenging gender roles and providing fresh trans representation on the Finnish music scene.<br>Their shows include earlier hits by the group as well as unreleased singles from their upcoming album.</p><p><b>18.00–19.00<br>Aliisa Syrjä</b><br>Aliisa Syrjä is a singer-songwriter whose compositions and lyrics carry the listener to a place where the boundaries between sorrow and joy blur, and the tectonic plates rumble beneath one’s feet. With platinum- and gold-streaming singles such as Tää tunne, 2:02, and Sydämetön, Aliisa writes lyrics, composes, and also takes part in the production of her songs. She was chosen for the YleX Breakthrough list in spring 2023, where she impressively placed second. Aliisa’s platinum-streaming debut album Höyheniä ja saaria was released in October 2023. At the 2024 Emma Gala, she was nominated in the Newcomer of the Year category. As an artist, Aliisa is best described by the way her songs bring together the weighty, philosophical essence of classic literature with the life of a young person, blending traditional songwriting with a contemporary approach.</p><p>Unfortunately emma & matilda have cancelled, and Aliisa Syrjä will be stepping in as a replacement</p><p>Entry to the events is free of charge.</p>" }, "provider": null, "name": { "fi": "Aliisa Syrjä, Itcevät ja pakohuonepelailua – Malmin tapahtumakesä", "sv": "Aliisa Syrjä, Itcevät och flyktrumsspel – Malms evenemangssommar", "en": "Aliisa Syrjä, Itcevät and escape room activities – Malmi Summer of Events" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65861/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66871", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1490467, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-19T11:14:04.757053Z", "last_modified_time": "2025-08-19T11:14:04.757073Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_776256.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490467/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T11:14:04.545323Z", "last_modified_time": "2025-08-21T11:14:51.497213Z", "date_published": null, "start_time": "2025-09-06", "end_time": "2025-09-07", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5C3DAAF828B604A40383DD6C12C8F446/Stoan_monikieliset_kirjallisuuspaivat_", "sv": "http://www.stoa.fi/sv/evenemang/event/5C3DAAF828B604A40383DD6C12C8F446/Stoas_flersprakiga_litteraturdagar", "en": "http://www.stoa.fi/en/events/event/5C3DAAF828B604A40383DD6C12C8F446/Stoa_s_Multilingual_Literature_Days" }, "provider_contact_info": null, "short_description": { "fi": "Syyskuussa Stoassa järjestettävä kansainvälinen kirjallisuustapahtuma tuo yhteen kansainvälisesti palkittuja kirjailijoita ja elokuvantekijän.", "sv": "Det litterära evenemanget som inspirerats av den flerspråkiga vardagen i Östra Helsingfors lyfter fram internationella författare med olika språkliga bakgrunder.", "en": "Inspired by the multilingual day-to-day life of East Helsinki, this literary event brings together international writers from different language backgrounds." }, "description": { "fi": "<p>Syyskuussa Stoassa järjestettävä kansainvälinen kirjallisuustapahtuma tuo yhteen kansainvälisesti palkittuja kirjailijoita ja elokuvantekijän.</p><p>Tapahtuma tarjoaa kirjallisia kohtaamisia, joissa yleisö voi kohdata teoksia omilla äidinkielillään ja osallistua vuoropuheluun kulttuurien välillä.</p><p><b>Lauantai 6.9.2025 klo 12–16 | Stoan aula</b></p><p><b>12:00–13:30 | Kirjailijakeskustelu: Ali Badr</b><br>Irakilainen kirjailija ja esseisti Ali Badr on yksi sukupolvensa merkittävimmistä arabiankielisistä romaanikirjailijoista. Hänen teoksensa tutkivat sodan, vallan ja kulttuurin risteyksiä sekä yksilön haavoittuvuutta. Badr tunnetaan myös esseistinä ja näytelmäkirjailijana, jonka ääni on vaikuttanut arabiankielisen nykykirjallisuuden keskusteluun.</p><p>Kieli: arabia</p><p><b>14:00–15:30 | Kirjailijakeskustelu: Mariwan Kanie</b><br>Kurdikirjailija ja Amsterdamin yliopiston professori Mariwan Kanie kuuluu kurdien keskeisiin ajattelijoihin ja nykykirjallisuuden ääniin. Hänen työnsä pureutuu nationalismin, uskonnon ja identiteetin kysymyksiin, mutta myös filosofian ja kirjallisuuden välisiin siltoihin. Kanie tunnetaan kyvystään yhdistää länsimaisen ja islamilaisen ajattelun perinteitä nykypäivän keskusteluihin.</p><p>Kieli: kurdi</p><p><b>Sunnuntai 7.9.2025 klo 15–17 | Stoan teatterisali</b></p><p><b>15:00–17:00 | Elokuvanäytös ja keskustelu: Khadar Ayderus Ahmed</b><br>Somalialaissyntyinen, Suomessa varttunut ohjaaja Khadar Ayderus Ahmed sai kansainvälisen läpimurtonsa Cannesissa elokuvalla The Gravedigger’s Wife (2021). Stoassa esitetään hänen uusin lyhytelokuvansa The Earth Has Ears (Dhulku Dhago Leh) (Somalia, 2025, 13 min), joka kertoo tarinan kylästä, jossa miesten poissaolo muuttaa koko yhteisön elämän. Näytöksen jälkeen keskustelu ohjaajan kanssa. Tule ajoissa ja varmista paikkasi, saliin mahtuu noin 200 henkilöä.</p><p>Kieli: somali</p><p>Koko tapahtuma on maksuton.</p><p>Tapahtuma järjestetään yhteistyössä Itäkeskuksen kirjaston kanssa.</p>", "sv": "<p>Det litterära evenemanget som inspirerats av den flerspråkiga vardagen i Östra Helsingfors lyfter fram internationella författare med olika språkliga bakgrunder.</p><p>Programmet:<br>Lö kl. 12–13.30 Författarsamtal: Ali Badr. Samtalet på arabiska<br>Lö kl. 14–15.30 Författarsamtal: Mariwan Kanie. Samtalet på kurdiska<br>Sö kl. 15–17 Filmvisning och samtal: Khadar Ayderus Ahmed. Film och samtal på somaliska</p><p>Evenemanget ordnas i samarbete med Östra centrums bibliotek.</p>", "en": "<p>Inspired by the multilingual day-to-day life of East Helsinki, this literary event brings together international writers from different language backgrounds.</p><p>Programme:<br>Sat 12:00–13:30 Author talk: Ali Badr. Discussion in Arabic<br>Sat 14:00–15:30 Author talk: Mariwan Kanie. Discussion in Kurdish<br>Sun 15:00–17:00 Film screening and discussion: Khadar Ayderus Ahmed. Film and discussion in Somali</p><p>The event is organised in cooperation with the Itäkeskus Library.</p>" }, "provider": null, "name": { "fi": "Stoan monikieliset kirjallisuuspäivät", "sv": "Stoas flerspråkiga litteraturdagar", "en": "Stoa’s Multilingual Literature Days" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66871/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmyzbtnq", "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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490491, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T10:43:49.714756Z", "last_modified_time": "2025-08-21T10:43:49.714771Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/4e5cfcfd-aa8c-4876-84f1-1b347833e735.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Nocturnes teksti", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490491/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T10:45:49.708292Z", "last_modified_time": "2025-08-21T10:45:49.708308Z", "date_published": null, "start_time": "2025-11-08T14:30:00Z", "end_time": "2025-11-08T15:15:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Akseli", "sv": "Akseli", "en": "Akseli" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Konsertissa kuullaan kahdeksastatoista notturnosta kymmenen. Robert Tobin ja Jonne Grans ovat esittäneet sovitustaan huilulle ja kitaralle säännöllisesti.", "sv": "Tio av de arton nocturnerna kommer att framföras på konserten. Robert Tobin och Jonne Grans har framfört sitt arrangemang för flöjt och gitarr regelbundet.", "en": "Ten of the eighteen nocturnes will be performed at the concert. Robert Tobin and Jonne Grans have been performing their arrangement for flute and guitar." }, "description": { "fi": "<p>Irlannin merkittävintä säveltäjää luetellessa yksi nimi nousee ylitse muiden. John Field (1782-1839) kehitti nykykäsityksen mukaan notturnon (yöllinen sävellys, it. notte) teostyyppinä. Notturno ei nivoudu tiukkaan sävellysmuotoon vaan sille on tunnusomaista tietyn tunnelman luominen ilman tekstiä tai määrättyä ohjelmallista sisältöä. Kyseinen Fieldin kokoelma on yksi musiikin historian unohdetuista ja väheksytyistä teoskokonaisuuksista, joka kätkee sisälleen loputtomien musiikillisten arvoitusten lisäksi myös ajalleen hyvin edistyksellistä musiikillista ajattelua.</p><p>Konsertissa kuullaan kahdeksastatoista notturnosta kymmenen. Robert Tobin ja Jonne Grans ovat esittäneet sovitustaan huilulle ja kitaralle säännöllisesti jo vuodesta 2019.</p><p>Konserttia on tukenut Sparbanksstiftelsen Esbo-Grankulla</p>", "sv": "<p>När man räknar upp Irlands mest betydande kompositörer sticker ett namn ut framför alla andra. John Field (1782–1839) utvecklade nocturne (nattkomposition, italienska: notte) som genre, så som vi förstår den idag.</p><p><br></p><p>Tio av de arton nocturnerna kommer att framföras på konserten. Robert Tobin och Jonne Grans har framfört sitt arrangemang för flöjt och gitarr regelbundet sedan 2019.</p>", "en": "<p>When listing Ireland's most significant composers, one name stands out above all others. John Field (1782-1839) developed the nocturne (nighttime composition, Italian: notte) as a genre, as we understand it today.</p><p><br></p><p>Ten of the eighteen nocturnes will be performed at the concert. Robert Tobin and Jonne Grans have been performing their arrangement for flute and guitar regularly since 2019.</p>" }, "provider": null, "name": { "fi": "Konsertti John Fieldin Nocturnes", "sv": "Concert Nocturnes", "en": "Concert Nocturnes" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyzbtnq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmyk6ifu", "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:p556/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6apq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6bgy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6bvy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6cey/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6ct4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6dci/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6drm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6d7y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6eoa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6e4y/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6fla/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6f4q/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6gkm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6gyu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6hhm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6hwa/?format=api" } ], "images": [ { "id": 1490487, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-08-21T09:57:14.277931Z", "last_modified_time": "2025-08-21T09:57:14.277948Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/f086980f-012b-4f6f-83bb-6538dee774b6.png", "cropping": "490,0,2410,1920", "photographer_name": "Espoon aineistopankki", "alt_text": "Piirroskuva aikuinen lukee lapsille", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490487/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-21T09:57:26.155690Z", "last_modified_time": "2025-08-21T09:57:26.155707Z", "date_published": null, "start_time": "2025-09-04T07:00:00Z", "end_time": "2025-12-18T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Elina tai Mauri", "sv": "Elina eller Mauri", "en": "Elina or Mauri" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa oppimaan suomen kielen alkeita Espoon monikulttuuriset lapset ja nuoret ry: n kanssa", "sv": "Välkommen att lära dig grunderna i finska tillsammans med Espoon monikulttuuriset lapset ja nuoret ry ", "en": "Welcome to learn the basics of Finnish with Espoo monikulttuuriset lapset ja nuoret ry" }, "description": { "fi": "<p>Tervetuloa oppimaan suomen kielen alkeita</p><p>Espoon monikulttuuriset lapset ja nuoret ry: n kanssa</p><p> </p><p>TOISTO-menetelmällä </p><p>Torstaisin kl. 10, Sellon kirjastoon. </p><p>Tila: Elina (paitsi 18.9. ja 25.9. Mauri)</p><p> </p><p>Ryhmä ei edellytä pohjataitoja. Se on avoin kaikille! </p><p>Kysymykset: 0453436727. </p>", "sv": "<p>Välkommen att lära dig grunderna i finska tillsammans med Espoon monikulttuuriset lapset ja nuoret ry </p>", "en": "<p>Welcome to learn the basics of Finnish with Espoo monikulttuuriset lapset ja nuoret ry</p>" }, "provider": null, "name": { "fi": "Tervetuloa oppimaan suomen kielen alkeita Espoon monikulttuuriset lapset ja nuoret ry: n kanssa", "sv": "Välkommen att lära dig grunderna i finska tillsammans med Espoon monikulttuuriset lapset ja nuoret ry ", "en": "Welcome to learn the basics of Finnish with Espoo monikulttuuriset lapset ja nuoret ry" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmyk6ifu/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22nira", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15417/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5121/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [ { "id": 1490204, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-07-10T08:42:41.102506Z", "last_modified_time": "2025-07-10T08:42:41.102522Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/1a72fc0a-ca54-4084-84c8-d926157533bf.jpg", "cropping": "68,0,632,564", "photographer_name": "", "alt_text": "Aino-Maija Laaksonen", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490204/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-07-10T09:06:22.784324Z", "last_modified_time": "2025-08-21T06:55:01.496367Z", "date_published": "2025-07-10T09:03:00Z", "start_time": "2025-08-03T07:00:00Z", "end_time": "2025-08-29T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Galleria Anna", "sv": "Galleri Anna", "en": "Gallery Anna" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Maalauksia", "sv": "Måleri och konst", "en": "Paintings" }, "description": { "fi": "<p>\"Suurin intohimoni ja harrastukseni on maalata rohkealla otteella suurille kankaille ja erilaisille pinnoille. Maalaan akryyleillä ja käytän töissäni usein myös hiiltä ja öljypastelleja. Pohjana käytän pellava- tai puuvillakankaita. Joskus maalaan myös paperille. Sävyjentäyteiset teokset, mehukkaat värien rinnastukset ja persoonallinen maalausote viehättävät minua eniten taiteessani.</p><p>Tyylisuunnassani on tuulahduksia romantiikasta. Luonnon elementit ja värit viehättävät: kukat ja metsät, niityt ja kalliot, meret ja tuhannet järvemme. Inspiroidun voimakkaasti vuodenaikojen tarjoamasta väripaletista ja työni aiheet ja sävymaailma kulkevat usein käsi kädessä sen kanssa. Minulla on myös oma rikas sisäinen maailmani, jota yritän tuoda taiteessani esille kuten sen itse koen ja tunnen.</p><p>Taide on minulle ennen kaikkea voimakas itseilmaisun muoto, tunteiden avaaja ja terapeuttinen väylä itsetutkiskeluun. Taide on myös hauskaa, vapauttavaa, iloista -ja kokeilevaa, joka voimaannuttaa ja nostaa mielialaa.</p><p>Arki ja siinä tapahtuvat pienet nyanssit ovat usein lähtökohtinani taiteelleni ja uusien ajatusten ja aiheiden syntymiselle. Kahden pienen lapsen äitinä löydän jokaisesta päivästä jotain hauskaa ja positiivista ja koen olevani täynnä elämän säteilevää energiaa. Kuitenkin vastapainona kaikelle hyvälle olen joutunut näkemään elämän tummempiakin sävyjä, jotka ovat kasvattaneet minua luoden tietoisuutta elämän herkkyydestä ja voimavarojen rajallisuudesta. Olen päässyt kasvamaan ja kehittymään, ja oppinut myös tasapainottamaan omia halujani ja tarpeitani muiden tarpeiden taakse. Taiteeni auttaa minua jaksamaan arkea, sen iloja ja suruja. Se antaa minun käsitellä elämäni hetkiä vapauttaen minussa sen salaisen osan, jota en sanoin aina osaisi kertoa.\" </p><p><strong>Aino-Maija Laaksonen</strong></p><p><a href=\"www.ainomaijalaaksonen.com\"><em>www.ainomaijalaaksonen.com</em></a><em> </em></p><p><a href=\"https://instagram.com/ainomaijaemilia_art\"><em>@ainomaijaemilia_art</em></a><em> </em></p><p><a href=\"mailto:artdesign.laaksonen@gmail.com\"><em>artdesign.laaksonen@gmail.com</em></a> </p>", "sv": "<p>Välkommen att besöka utställningen.</p><p>Utställningen kan ses under bibliotekets öpettider.</p><p><br></p><p>För mer information om konstnären: <a href=\"www.ainomaijalaaksonen.com\">www.ainomaijalaaksonen.com</a> </p>", "en": "<p>Welcome to visit the art exhibition.</p><p>Exhibition can be seen during the library opening hours.</p><p><br></p><p>For more information about the artist: <a href=\"www.ainomaijalaaksonen.com\">www.ainomaijalaaksonen.com</a> </p>" }, "provider": null, "name": { "fi": "Aino-Maija Laaksonen: Making Lemonade (näyttely)", "sv": "Aino-Maija Laaksonen: Making Lemonade (utställning)", "en": "Aino-Maija Laaksonen: Making Lemonade (exhibition)" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22nira/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "lippupiste:serie-3849165", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:9340/?format=api" }, "keywords": [], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "description": { "fi": "Tarkista hinta lippupalvelusta" }, "info_url": { "fi": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/event/little-star95-ooksae-online-helsingin-kaupunginteatteri-20000361/?affiliate=ADV&language=en" } } ], "data_source": "lippupiste", "publisher": "ytj:1789232-4", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000355/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000357/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000358/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000362/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000363/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000359/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:20000361/?format=api" } ], "images": [ { "id": 408450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T08:16:01.191774Z", "last_modified_time": "2025-03-26T08:16:01.191790Z", "name": "", "url": "https://www.lippu.fi/obj/mam/finland/9a/14/star222uusi-tickets_373231_3144943_222x222.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "lippupiste", "publisher": "ytj:1789232-4", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T22:17:19.675518Z", "last_modified_time": "2025-08-20T20:19:09.943283Z", "date_published": null, "start_time": "2025-08-07T15:30:00Z", "end_time": "2025-08-20", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Studio Pasila" }, "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=fi", "sv": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=sv", "en": "https://www.lippu.fi/artist/helsingin-kaupunginteatteri/little-star95-ooksae-online-3849165/?affiliate=ADV&language=en" }, "provider_contact_info": null, "short_description": { "fi": "Sara Koiranen, Iida Hägglund & työryhmä LITTLE_STAR95 – OOKSÄ ONLINE? little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneese" }, "description": { "fi": "<p>Sara Koiranen, Iida Hägglund & työryhmä<br><strong>LITTLE_STAR95 – OOKSÄ ONLINE?</strong></p><p>little_star95 – ooksä online? on nostalgiatrippi, joka kutsuu matkalle teinitytön huoneeseen ja illanviettoon 2000-luvun alun internetissä. Offline- ja online-maailmojen välillä seikkaileva esitys kysyy, millaisia minäkuvia ja ihmissuhteita internet on synnyttänyt.<br>Teinidraama löytää tiensä koulusta nettiin, meseen ja galtsuun. Kuka omistaa kenelle ja mitä, kuka on online ja kuka ihan vaan out? Tyttöjen väliset kipeät hierarkiat piirtyvät esiin herkkyydellä ja tarkkuudella tietokoneen näytölle. Elokuussa 2025 uuden sukupolven teatterintekijöistä koostuva työryhmä vie katsojat aikaan, jolloin internetissä ei oltu, vaan sinne piti mennä. Irc-galleria, MSN Messenger sekä demi.fi toimivat tämän esityksen ympäristöinä ja materiaaleina. Mitä 2000-luvun sosiaalinen media teki nollarinuorille – erityisesti tytöille ja naisille? Se selviää kirjautumalla sisään.</p><p>Esiintyjä: Hilma Kotkaniemi</p><p>Esityskonsepti: Sara Koiranen, Iida Hägglund & työryhmä<br>Dramaturgi: Sara Koiranen<br>Lukeva dramaturgi: Mimmi Ahonen<br>Skenografi, puvustus ja naamiointi: Vera Kotkaniemi<br>Valo- ja videosuunnittelu: Elli Maria Kujansuu<br>Äänisuunnittelu ja sävellys: Iida Hägglund</p>" }, "provider": { "fi": "Helsingin Kaupunginteatteri" }, "name": { "fi": "Little_Star95 - Ooksä Online?" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/lippupiste:serie-3849165/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk22s2hi", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67zy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7acu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7ane/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [ { "name": "extlink_instagram", "link": "http://www.instagram.com/tapiolankirjasto", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22syx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szdq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22szpy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22sz3m/?format=api" } ], "images": [ { "id": 1490255, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-06-16T08:48:48.109280Z", "last_modified_time": "2025-06-16T08:48:48.109294Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/36b381d6-d08e-493e-8924-579bc40511c3.jpg", "cropping": "420,0,1500,1080", "photographer_name": "Taru Mäkelä", "alt_text": "Kuvassa kuvaelementteinä neulontaa, pienoismallin rakentamista ja piirtämistä, keskellä kuva miehestä, joka pitää käsissään kirjaa ja katsoo kameraan hymyillen.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490255/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-06-16T09:00:19.849830Z", "last_modified_time": "2025-08-20T10:14:07.956414Z", "date_published": null, "start_time": "2025-09-09T09:00:00Z", "end_time": "2025-12-09T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Tapiolan kirjaston tapahtumatila Heikki", "sv": "Hagalunds bibliotek, Evenemangslokalen Heikki", "en": "Tapiola Library, event space Heikki" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä.", "sv": "Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.", "en": "Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories." }, "description": { "fi": "<p>Tervetuloa inspiroitumaan kirjallisuudesta ja löytämään uutta luettavaa, jutustelemaan, tai ihan vain nauttimaan omasta hiljaisesta ajastasi tarinoiden äärellä. Tule kuuntelemaan ääneen luettuja katkelmia valituista teoksista vapaalla tyylillä - jos kaipaat käsillesi tekemistä, pakkaa piirustusvälineet tai neuletyö mukaasi, tai vaikkapa Warcraft-projektisi. Piirustusvälineitä saat käyttöösi myös kirjastolta.</p><p>Tarinoimassa mukana pitkän linjan kirjastopedagogimme Mikko Airaksinen</p><p>Kuva: Taru Mäkelä</p>", "sv": "<p>Välkommen att inspireras av litteraturen och hitta ny läsning, småprata eller bara njuta av din egen lugna stund i sällskap av berättelser.</p><p>En bibliotekarie läser högt. Du kan samtidigt handarbeta</p><p>Evenemanget är på finska.</p>", "en": "<p>Welcome to be inspired by literature and discover new reading, have a chat, or simply enjoy a quiet moment with stories.</p><p>A librarian reads aloud. You can do handicrafts at the same time.</p><p>The event is in Finnish.</p>" }, "provider": null, "name": { "fi": "Tarinatapaaminen", "sv": "Berättelseträff", "en": "Story gathering" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk22s2hi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmnttgjq", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?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/helmet:11733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnts75a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttare/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntta5e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttbjy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttbx4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttcfy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttcse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttc5u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttdi4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttdu4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmntteb4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttenm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttez4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttfgi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttfse/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttf6a/?format=api" } ], "images": [ { "id": 1490478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-20T11:38:13.223220Z", "last_modified_time": "2024-12-20T11:38:13.223250Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/fcad98d6-da1e-4812-a023-fdf6d059bb10.jpg", "cropping": "169,0,769,600", "photographer_name": "", "alt_text": "Tytöt hyppäävät ilmaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-08-20T08:48:24.778847Z", "last_modified_time": "2025-08-20T08:48:24.778863Z", "date_published": null, "start_time": "2025-09-02T11:30:00Z", "end_time": "2025-12-16T16:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Vox", "sv": "Vox", "en": "Vox" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Ryhmä yli 10-vuotiaille tytöille sukupuolen moninaisuus huomioiden. Ryhmä toteutetaan yhteistyössä Espoon Tyttöjen Talon kanssa.", "sv": "Grupp för flickor över 10 år med hänsyn till könsmångfald. Gruppen genomförs i samarbete med Espoon Tyttöjen Talo.", "en": "A group for girls over 10 years old, taking gender diversity into account. The group is carried out in collaboration with Espoon Tyttöjen Talo." }, "description": { "fi": "<p>Tytöille tarjotaan oma tila, jossa voi tehdä itselle mieluisia asioita ja keskustella turvallisten aikuisten kanssa itseä pohdituttavista asioista. Rento ja hauska ryhmä, jonka ohjelma perustuu osallisuuteen. Myös palveluohjausta tarvittaessa.</p>", "sv": "<p>Flickorna får ett eget utrymme där de kan göra saker de tycker om och prata med trygga vuxna om saker som de funderar på. En avslappnad och rolig grupp där programmet baseras på delaktighet. Även servicevägledning erbjuds vid behov.</p>", "en": "<p>Girls are provided with their own space where they can do activities they enjoy and talk with trusted adults about things they are thinking about. A relaxed and fun group, with a program based on participation. Service guidance is also available if needed.</p>" }, "provider": { "fi": "Espoon Tyttöjen Talo ja Espoon Kaupunginkirjasto", "sv": "Espoon Tyttöjen Talo ja Esbo Stads Bibliotek", "en": "Espoon Tyttöjen Talo ja Espoo City Library" }, "name": { "fi": "Girls Time", "sv": "Girls Time", "en": "Girls Time" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnttgjq/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmnf45mi", "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/espoo_le:agggfz65nu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66dy/?format=api" }, { "@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:agggfz66i4/?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:agggfz66oi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz673u/?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:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1947/?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:p2762/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8630/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4wfe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4wye/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4xeq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4xqi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4x4e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4yiu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4yvi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4zce/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4zoi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf4z3m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf42hy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf42ua/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf43au/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf43ne/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf432e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf44gu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf44ti/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf45ai/?format=api" } ], "images": [ { "id": 1490478, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-12-20T11:38:13.223220Z", "last_modified_time": "2024-12-20T11:38:13.223250Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/fcad98d6-da1e-4812-a023-fdf6d059bb10.jpg", "cropping": "169,0,769,600", "photographer_name": "", "alt_text": "Tytöt hyppäävät ilmaan.", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490478/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-08-20T07:59:37.047450Z", "last_modified_time": "2025-08-20T07:59:37.047467Z", "date_published": null, "start_time": "2025-08-20T12:00:00Z", "end_time": "2025-12-17T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jukeboksi", "sv": "Jukeboksi", "en": "Jukeboksi" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Ryhmä yli 14-vuotiaille tytöille sukupuolen moninaisuus huomioiden. Ryhmä toteutetaan yhteistyössä Espoon Tyttöjen Talon kanssa.", "sv": "Grupp för flickor över 14 år med hänsyn till könsmångfald. Gruppen genomförs i samarbete med Espoon Tyttöjen Talo.", "en": "A group for girls over 14 years old, taking gender diversity into account. The group is carried out in collaboration with Espoon Tyttöjen Talo." }, "description": { "fi": "<p>Tytöille tarjotaan oma tila, jossa voi tehdä itselle mieluisia asioita ja keskustella turvallisten aikuisten kanssa itseä pohdituttavista asioista. Rento ja hauska ryhmä, jonka ohjelma perustuu osallisuuteen. Myös palveluohjausta tarvittaessa.</p>", "sv": "<p>Flickorna får ett eget utrymme där de kan göra saker de tycker om och prata med trygga vuxna om saker som de funderar på. En avslappnad och rolig grupp där programmet baseras på delaktighet. Även servicevägledning erbjuds vid behov.</p>", "en": "<p>Girls are provided with their own space where they can do activities they enjoy and talk with trusted adults about things they are thinking about. A relaxed and fun group, with a program based on participation. Service guidance is also available if needed.</p>" }, "provider": { "fi": "Espoon Tyttöjen Talo ja Espoon Kaupunginkirjasto", "sv": "Espoon Tyttöjen Talo ja Esbo Stads Bibliotek", "en": "Espoon Tyttöjen Talo ja Espoo City Library" }, "name": { "fi": "Girls Only", "sv": "Girls Only", "en": "Girls Only" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmnf45mi/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmc47aw4", "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": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47lfu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47ltu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47mbi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47mpi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47m5a/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47nku/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47ny4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47oie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47owq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47pge/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47puy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47qdq/?format=api" } ], "images": [ { "id": 1490457, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2024-03-07T09:18:46.437247Z", "last_modified_time": "2024-03-07T09:18:46.437268Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/ukulelen_alkeet.jpg", "cropping": "149,0,531,382", "photographer_name": "", "alt_text": "Ukulelen alkeet", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490457/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-08-19T07:41:15.190687Z", "last_modified_time": "2025-08-20T07:18:31.707075Z", "date_published": null, "start_time": "2025-09-11T14:00:00Z", "end_time": "2025-11-27T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Kokoustila Ilmari", "en": "Meeting Room Ilmari" }, "info_url": null, "provider_contact_info": null, "short_description": { "fi": "Ukulelen alkeet Sellon kirjastossa torstaisin klo 17.00-18.00", "en": "Ukulele beginner class on Thursdays 5-6 pm in Sello Library" }, "description": { "fi": "<p>Paljon toivotut ukulelen alkeet Sellon kirjastossa! Kurssi on suunnattu aikuisille ja nuorille 12 vuodesta ylöspäin. Tunneilla käymme läpi soittamisen perusteet. Tähän kuuluu soittoasento, soinnut ja komppaaminen. Tunneilla soitamme suomen- ja englanninkielisiä lauluja. Ryhmässä on rento ja kannustava ilmapiiri. Aikaisempaa musiikillista osaamista tai taustaa ei tarvitse olla. Kirjastolla on lainasoittimia tunnin ajaksi. Tule mukaan!</p><p>Ryhmä kokoontuu torstaisin 11.9.- 27.11. klo 17-18 HUOM! Ei tuntia 16.10. (Syysloma)</p><p>#musiikki #ukulele #alkeet #sello</p><p>Ei ennakkoilmoittautumista ja osallistuminen on maksutonta.</p><p>Ryhmää ohjaa musiikkipedagogi Sakari Heikka</p><p>sakari.heikka@espoo.fi</p>", "en": "<p>Ukulele class for beginners in Tapiola Library. Class is for adults and youth 12 years or older. No previous musical experience required. The group has a relaxing and supportive atmosphere. The library has ukuleles which you can borrow for the lesson. Participation is free of charge and no pre-registration is needed.</p><p>Class is organized from 11th of Sep to 27th of Nov.</p><p>PLEASE NOTE! No class on 16th of Oct. (Fall vacation)</p><p>#music #ukulele #tapiola</p><p>The group is taught by Music Pedagogue Sakari Heikka.</p><p>sakari.heikka@espoo.fi</p>" }, "provider": null, "name": { "fi": "Ukulelen alkeet", "en": "Ukulele for beginners" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmc47aw4/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:66305", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 1163427, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-07-02T11:12:24.371184Z", "last_modified_time": "2025-07-02T11:12:24.371196Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_773310.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1163427/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2025-07-02T11:12:24.308844Z", "last_modified_time": "2025-08-20T07:13:44.207456Z", "date_published": null, "start_time": "2025-09-27T08:00:00Z", "end_time": "2025-09-27T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri_Festivaalin_loppuhuipennus", "sv": "http://www.annantalo.fi/sv/evenemang/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri-festivalen_kulminerar", "en": "http://www.annantalo.fi/en/events/event/CBE0E843FA12554621C2FCE5A301F09E/Kolibri_Festival_Finale_" }, "provider_contact_info": null, "short_description": { "fi": "Kolibri Festivaali palaa Annantalolle juhlimaan 10-vuotista taivaltaan hauskan tapahtumapäivän merkeissä! Päivä on täynnä mieleenpainuvaa tekemistä jokaiselle perheelle!", "sv": "Kolibri-festivalen återvänder till Annegården för sitt 10-årsjubileum! Evenemangsdagen är fylld av roliga aktiviteter för hela familjen.", "en": "Kolibri Festival returns to Annantalo to celebrate its 10th anniversary with a fun-filled event day! The day will be packed with exciting activities for the whole family!" }, "description": { "fi": "<p>Kolibri Festivaali palaa Annantalolle juhlimaan 10-vuotista taivaltaan hauskan tapahtumapäivän merkeissä! Päivä on täynnä mieleenpainuvaa tekemistä jokaiselle perheelle!</p><p>Luvassa on monipuolista ohjelmaa koko perheelle: monikielisiä satuhetkiä, esityksiä, taidetyöpajoja, tanssia ja lastenkirjallisuuteen tutustumista.</p><p>Juhlavuoden teemana on toiveet. Niiden siivittämänä Kolibrí juhlistaa monikulttuurista, monikielistä ja kaikille avointa ohjelmaa, josta perheet ovat saaneet nauttia jo kymmenen vuoden ajan.</p><p>Ympäri pääkaupunkiseutua järjestettävä festivaali huipentuu Annantalolle, jossa pääset oppimaan kieliä, tutustumaan uusiin kulttuureihin ja tapaamaan ihmisiä eri puolilta maailmaa.</p><p>Tapahtuma on maksuton ja kaikki ovat tervetulleita.</p><p>Tule mukaan puhaltamaan juhlakynttilät ja tekemään yhteinen toive!</p><p>Koko ohjelma julkaistaan 13.8.2025 osoitteessa: www.kolibrifestivaali.org</p><p>Tapahtuman tuottavat yhteistyössä Kulttuurikeskus Ninho ry ja Annantalo.</p>", "sv": "<p>Kolibri-festivalen återvänder till Annegården för sitt 10-årsjubileum! Evenemangsdagen är fylld av roliga aktiviteter för hela familjen.</p><p>Dagen bjuder på mångsidigt program för hela familjen: flerspråkiga sagostunder, föreställningar, konstworkshoppar, dans och barnlitteratur.</p><p>Jubileumsårets tema är önskningar – och med dem firar Kolibrí tio år av mångkulturellt och flerspråkigt program som är öppet för alla, och som familjer har fått njuta av i ett decennium.</p><p>Festivalen, som ordnas runtom i stadsregionen, kulminerar på Annegården, där du får lära dig språk, lära känna nya kulturer och träffa människor från olika delar av världen.</p><p>Evenemanget är avgiftsfritt och alla är välkomna.</p><p>Kom med och blås ut festljusen och gör en gemensam önskning!</p><p>Hela programmet publiceras den 13 augusti 2025 på: www.kolibrifestivaali.org</p><p>Evenemanget produceras som ett samarbete mellan Kulttuurikeskus Ninho ry och Annegården.</p>", "en": "<p>Kolibri Festival returns to Annantalo to celebrate its 10th anniversary with a fun-filled event day! The day will be packed with exciting activities for the whole family!</p><p>The children’s festival returns to Annantalo to celebrate its 10th anniversary! The event will feature performances, multilingual storytelling, art workshops, music, dance, a children’s book fair, and plenty of fun for all children and their families!</p><p>Under the theme ‘Wishes’, Kolibrí Festivaali celebrates ten years of offering free, multicultural, multilingual, and diverse programming that thousands of children have enjoyed with their families.</p><p>Happening all around the capital region, the festival wraps up at Annantalo — come learn new languages, explore different cultures, and make new friends from near and far!</p><p>The event is free of charge and everyone is welcome!</p><p>Come blow out the candles at this unique birthday party and let’s make a wish together!</p><p>The full program will be published from 13.8.2025 at https://www.kolibrifestivaali.org/</p><p>The event is produced in collaboration with Kulttuurikeskus Ninho ry and Annantalo.</p>" }, "provider": null, "name": { "fi": "Kolibri Festivaalin loppuhuipennus – Monikulttuurinen tapahtumapäivä kaikille", "sv": "Kolibri-festivalen kulminerar – Den mångkulturella evenemangsdagen", "en": "Kolibri Festival Finale – A multicultural event day" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:66305/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmmmyjsay", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjk5m/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjlsa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjl6u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjmle/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjmxu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjnei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjnrm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjn54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjolu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjozi/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjpf4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjptm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjqaq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjqny/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjq2u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjrhe/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjrtm/?format=api" } ], "images": [ { "id": 1490477, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2025-01-09T09:24:36.937708Z", "last_modified_time": "2025-01-09T09:24:36.937737Z", "name": "", "url": "https://tapahtumasyotto.espoo.fi/media/images/a7182e5c-6cf7-46de-8640-6cc66b279d47.png", "cropping": "76,0,864,788", "photographer_name": "", "alt_text": "nuoret metroasemalla istumassa penkillä sylikkäin, heillä on hymy herkässä!", "data_source": "espoo_le", "publisher": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/image/1490477/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-08-20T06:55:31.390498Z", "last_modified_time": "2025-08-20T06:55:31.390515Z", "date_published": null, "start_time": "2025-08-26T13:00:00Z", "end_time": "2025-12-16T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "location_extra_info": { "fi": "Jukeboksi" }, "info_url": { "fi": "https://helmet.finna.fi/" }, "provider_contact_info": null, "short_description": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00." }, "description": { "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.</p><p>Alkaen tiistaina 12.8. klo 16.00!</p><p><br></p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p><p><br></p><p>Järjestäjänä Entressen kirjasto</p>" }, "provider": { "fi": "Entressen kirjasto" }, "name": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmmmyjsay/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 4977, "next": "